html body {
    background-color: #fff;
}

.nav-header, .custom-button {
    background-color: rgb(125, 152, 170);
    color: white;
}


.custom-button {
}

.custom-button:hover {
    color: white;
    background-color: rgb(95, 122, 140);
}

.bigger-icon {
    font-size: 1.5em;
}

.slightly-bigger-icon {
    font-size: 1.3em;
}

.text-icon {
    position: relative;
    bottom: 2.5px;
}

.p-icon {
    position: relative;
    top: 5px;
}

.font-weight-bold {
    font-weight: bold;
}

.card {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, .125);
}

.card h4 {
    color: #7d98aa;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.clickable-button:hover {
    cursor: pointer;
    color: #bd4e4e !important;
}

.clickable {
    cursor: pointer;
}

@keyframes fadeOutTop {
    from {
        opacity: 1;
        position: relative;
        top: 100px;
    }
    to {
        opacity: 0;
        position: relative;
        top: 200px;
    }
}

.fade-out-top {
    animation-name: fadeOutTop;
    animation-duration: 0.5s;
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        position: relative;
        top: 0;
    }
    to {
        opacity: 1;
        position: relative;
        top: 100px;
    }
}

.fade-in-top {
    animation-name: fadeInTop;
    animation-duration: 0.5s;
}

/*Messes up postal_code and house_number labels otherwise*/
.row {
    --bs-gutter-x: 0;
}

.no-opacity {
    opacity: 0;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fade-out {
    animation-name: fadeOut;
    animation-duration: 2.5s;
}


/*Start styling modal*/
.modal {
    display: flex;
    justify-content: center;
    align-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    animation-name: modalPopup;
    animation-duration: 0.3s;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 20%;
    height: 25%;
}

.modal-checkbox {
    font-size: 2em;
}

@keyframes modalPopup {
    0% {
        transform: scale(0.9)
    }
    25% {
        transform: scale(1.1)
    }
    80% {
        transform: scale(0.9)
    }
    100% {
        transform: scale(1)
    }
}

.giftcard-container {
    background-color: red;
    background-image: radial-gradient(#fdfdfd, #f0efee, #e7e6e5);
    width: 700px;
    height: 400px;
    border-radius: 7%;
}

.giftcard-vertical-line, .giftcard-horizontal-line {
    background-color: lightgray;
    background-image: radial-gradient(#ff3131, #ff0000);
    position: relative;
}

.giftcard-horizontal-line {
    width: 100%;
    height: 11%;
    bottom: 75%;
}

.giftcard-vertical-line {
    width: 7%;
    height: 100%;
    left: 18%;
}

.paymentMethodOuter {
    padding:0px 10px;
}
.paymentMethodInner {
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 7px;
}
/*Start responsive*/
@media screen and (max-width: 1200px) {
    .modal-content {
        height: 25%;
        width: 30%;
    }

    .content-container {
        flex-direction: column-reverse !important;
    }

    .ticket-info-container {
        margin-top: 10px;
        width: 100% !important;
    }

    .page-button-container {
        height: 50px;
        position: fixed;
        width: 100vw;
        bottom: 0px;
        z-index: 1;
    }

    #ticket-info-container {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 826px) {
    .footer {
        bottom: auto !important;
    }

    .modal-content {
        width: 60%;
        height: 25%;
    }

    .reservation-container {
        padding-left: 5px;
        padding-right: 0px;
    }

    #ticket-info-container {
        margin-bottom: 100px;
    }

    .nav-container {
        flex-direction: column;
        height: auto !important;
    }

    .nav-container > .navbar {
        width: 100% !important;
    }

    .page-content {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
        margin-top: 0px !important;
    }

    #steps {
        display: none;
    }

    .page-button-container {
        height: 100px !important;
        bottom: -60px;
        margin-bottom: 10px;
    }

    .add-product-button, .add-product-select {
        width: 100% !important;
    }

    .page-button {
        width: 50% !important;
    }

    .form-responsive {
        width: 100% !important;
    }

    #calendar-container {
        width: 100% !important;
    }

    .calendar-table {
        width: 100% !important;
        column-width: 10px !important;
    }

    .calendar-week {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 540px) {
    .modal-content {
        width: 80%;
        height: 25%;
    }

    .responsive-date {
        width: 30% !important;
    }
}

@media screen and (max-width: 412px) {
    /*    TODO make calendar smaller*/
}

/*End responsive*/
