﻿/*Új Webshop által használt gomb-stílus*/
.btn-ws {
    border: 0;
    background-color: #dc0008;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    border-radius: 3px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease all;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}


a.btn-ws {
    border: 0;
    background-color: #dc0008;
    color: #fff !important;
    font-weight: 700;
    font-size: 12px;
    border-radius: 3px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease all;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}

    .btn-ws:hover {
        box-shadow: 0px 0px 5px 2px white;
    }

/*Ú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 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;
    color: white;
    background: url('/Assets/Images/strepped-bg.jpg');
    border: none;
    outline: none;
    box-shadow: 0px 0px 10px 5px white;
    border-radius: 5px;
}

    .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;
}

.margin_left_20 {
    margin-left: 20px;
}

.margin_bottom_10 {
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}

@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;
    }
}

.nyeremenyjatek-text-container {
    color: white;
    text-align: justify;
}

.nyeremenyjatek-button {
    display: flex !important;
}