﻿/*Új Webshop által használt gomb-stílus*/
.btn-ws {
    border: 1px solid #b7b7b7;
    border-radius: 6px;
    background: linear-gradient(to top, #ffffff 0%, #ffffff 57%, #e5e5e5 100%);
    width: auto;
    padding: 4px 10px;
    text-decoration: none;
    color: #a9a9a9;
    font-weight: normal;
    font-size: 14px;
    cursor: pointer;
}

    .btn-ws:hover {
        color: #6e96e0;
        background: linear-gradient(to top, #a9d1fd 0%, #eaf4ff 50%, #eaf4ff 100%);
        border-color: #6e96e0;
    }

/*Új Webshop által használt táblázat stílus*/
.table-ws,
.table-ws-mobile {
    border-style: none;
    width: 100%;
    border-collapse: collapse;
}

    .table-ws tr,
    .table-ws-mobile tr {
        border: none;
        background-color: transparent;
    }

        .table-ws tr:nth-child(even),
        .table-ws-mobile tr:nth-child(even) {
            background-color: #f7f7f7;
        }

        .table-ws tr td,
        .table-ws-mobile tr td {
            padding: 0px 6px;
            text-align: center;
            border: 1px solid #dadada;
            font-size: 16px;
            vertical-align: middle;
            width: 40%;
        }

            .table-ws tr td:first-child {
                width: 20%;
            }

        .table-ws-mobile tr td:first-child {
            width: 35%;
        }

        .table-ws tr td:nth-child(2) {
            text-align: right;
        }

        .table-ws tr td:nth-child(3) {
            text-align: left;
        }

/*Popup megjelenítéséhez overlay*/
.overlay {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.8);
    z-index: 2;
}

/*Popup*/
.popup-placeholder {
    z-index: 3;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.popup-container {
    width: auto;
    height: auto;
    border: 1px solid #b7b7b7;
    border-radius: 6px;
    background: linear-gradient(to top, #ffffff 0%, #ffffff 57%, #e5e5e5 100%);
}

    .popup-container > .div,
    .popup-container .cimkeInfo_adat,
    .popup-container .cimkeInfo_ertek {
        background-color: transparent;
    }

.btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .btn-row .btn-ws {
        margin-left: 10px;
        margin-right: 10px;
    }

.display-none {
    display: none;
}

@media (min-width: 501px) {
    .table-ws-container {
        display: block;
    }

    .table-ws-mobile-container {
        display: none;
    }
}

@media (max-width: 500px) {
    .table-ws-container {
        display: none;
    }

    .table-ws-mobile-container {
        display: block;
    }
}
