/* Підключення шрифтів */
@font-face {
    font-family: "Fixel Text";
    src: url('/fonts/FixelText-Regular.woff2') format('woff2'),
        url('/fonts/FixelText-Regular.woff') format('woff'),
        url('/fonts/FixelText-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Fixel Text";
    src: url('/fonts/FixelText-Bold.woff2') format('woff2'),
        url('/fonts/FixelText-Bold.woff') format('woff'),
        url('/fonts/FixelText-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'FixelVariable';
    src: url('/fonts/FixelVariable.ttf') format('truetype');
    font-weight: 100 900;
    /* This supports weights from 100 to 900 */
    font-style: normal;
}


button#openModalButton {
    border: none;
    background: none;
    width: 30px !important;
}

#modal-unique {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;

    border-radius: 0px;
    width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #888;
}


.button-open-modal {
    display: inline-block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.button-open-modal img {
    width: 30px;
    height: auto;
}

.button-open-modal:hover {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, .2), 0 2px 0 rgba(255, 255, 255, .4), inset 0 2px 0 rgba(0, 0, 0, .1);
    border-radius: 50px;
}

@media (max-width: 620px) {

    .modal-body iframe {
        max-width: 90vw;
        margin: auto;
    }

    .modal-body {
        margin: auto;
        display: flex;
    }

    .code-input input {

        width: 45px !important;
        height: 45px !important;

    }
}