* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    font-family: "Codec Pro Regular";
}
@font-face {
    font-family: "Codec Pro Regular";
    font-style: normal;
    font-weight: normal;
    src: url("/static/fonts/CodecPro-Regular.woff") format("woff");
}
header {
    background: #fff;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.08);
    padding: 37px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}
header img {
    width: 137px;
}
.information {
    margin-top: 130px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.information .box li a {
    color: #1056df;
    word-break: break-all;
    line-height: 20px;
}
.information span {
    font-weight: lighter;
    font-size: 16px;
}
.container {
    width: 1300px;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 16px;
}
.information .box {
    background: #fcfcfc;
    border: 1px solid #a8a8a8;
    border-radius: 3px;
    padding: 35px;
    color: #454545;
}
.information .box ul {
    margin-top: 10px;
}
.information .box li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    gap: 16px;
}
.information .box li:last-of-type {
    margin-bottom: 0;
}
a {
    color: inherit;
}
.information .box:last-of-type {
    padding-left: 70px;
}
.information label {
    font-size: 16px;
}
.information input {
    display: block;
    height: 50px;
    width: 442px;
    background: #f8f8f8;
    border: 2px solid #b3b3b3;
    border-radius: 6px;
    outline: 0;
    font-size: 16px;
    margin-top: 10px;
    padding: 0 5px;
}
.row {
    margin-bottom: 10px;
}
.days > h4 {
    font-weight: lighter;
    text-align: center;
    font-size: 20px;
    width: 70%;
    margin: 0 auto;
    line-height: 24px;
}
.days {
    margin-top: 30px;
    background: #fcfcfc;
    border: 1px solid #a8a8a8;
    border-radius: 3px;
    padding: 44px 100px;
}
.days ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}
.days ul li label {
    border: 1px solid #a8a8a8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    cursor: pointer;
    position: relative;
    z-index: 0;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    transition: 0.4s;
    border: 2px solid transparent;
}
input:checked + .overlay {
    border-color: #1056df;
}
.days ul li .date_info {
    display: flex;
    align-items: center;
    text-align: center;
    color: #454545;
}
.days ul li .date_info .day b {
    font-size: 30px;
    margin: 5px 0;
    display: inline-block;
}
.days ul li .date_info .day {
    margin-right: 24px;
}
.days ul li .date_info p {
    font-size: 14px;
}
.days .empty {
    display: flex;
    align-items: center;
    gap: 16px;
}
.days .empty p {
    color: #1056df;
    font-size: 14px;
    font-weight: bold;
}
.days .empty input {
    width: 25px;
    height: 25px;
}
.submit {
    display: block;
    margin-left: auto;
    margin-top: 40px;
    background: #1056df;
    border-radius: 3px;
    padding: 12px 16px;
    font-size: 24px;
    border: 0;
    color: #fff;
    cursor: pointer;
}
.submit:disabled {
    background: #b8b8b8;
    cursor: not-allowed;
    color: #5a5a5a;
}
footer {
    background: #262626;
    padding: 50px 0;
    margin-top: 40px;
}

footer ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__inner ul:first-of-type img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(952%)
        hue-rotate(239deg) brightness(117%) contrast(100%);
}

.powered {
    color: #fff;
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .information .box {
        padding: 25px !important;
    }
    .information input {
        width: 100%;
    }
    .days {
        padding: 20px 50px;
    }
    .days ul li label {
        padding: 16px;
    }
    .days ul li .date_info .day {
        margin-right: 10px;
    }
}
@media screen and (max-width: 768px) {
    .hour b {
        font-size: 14px;
    }
    .information {
        margin-top: 70px;
    }
    .information input {
        height: 36px;
        margin-top: 5px;
    }
    .footer__inner {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .footer__inner ul {
        padding-bottom: 30px;
        gap: 10px;
    }

    .information,
    .days ul {
        grid-template-columns: 1fr;
    }
    header {
        background: #f5f7ff;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }
    .information .box,
    .days {
        background-color: transparent;
        border: 0;
        padding: 0;
    }
    .information .box:last-of-type {
        border-top: 1px solid #b3b3b3;
        padding-top: 24px !important;
    }
    .information input {
        background: #f5f7ff;
    }
    .row {
        margin-bottom: 16px;
    }
    .days > h4 {
        width: 100%;
        font-size: 18px;
        line-height: 18px;
        padding: 0 16px;
    }
    .days ul li label {
        border-left: 0;
        border-right: 0;
    }
    .days ul li:nth-of-type(even) label {
        background: #f4f4f4;
    }
    .submit {
        margin-right: 17px;
    }
    .powered {
        text-align: center;
    }
    .container {
        padding: 0;
    }
    .days ul li .date_info .day b {
        font-size: 22px;
    }
    header {
        padding: 22px 0;
    }
    .information .box:last-of-type {
        padding-top: 35px !important;
    }
    .days {
        margin-top: 10px;
        border-top: 1px solid #454545;
        padding-top: 22px;
    }
    .days ul {
        margin-top: 22px;
    }
    .submit {
        padding: 8px 12px;
        font-size: 20px;
    }
    .days ul li .date_info .day {
        margin-right: 26px;
    }
    .days ul li .date_info p {
        font-size: 12px;
    }
    .days ul li .date_info p {
        font-size: 14px;
    }
}

.modal-success-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
.modal-success-container.active_modal {
    opacity: 1;
    visibility: visible;
}
.modal-success {
    width: 700px;
    max-width: 95%;
    background-color: #fff;
    text-align: center;
    padding: 70px;
    position: relative;
    border: 3px solid #4895ef;
    border-radius: 5px;
}
.modal-success #close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.modal-success h1 {
    font-weight: 400;
    font-size: 36px;
    line-height: 44px;
}
.modal-success p {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
}
