.custom_vertical_line {
    width: 2px;
    height: auto;
    background: #000;
}
.custom-max-w15 {
    max-width: 15%;
}
.custom-max-w15 {
    max-width: 10%;
}
.custom-button-cancel {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: black;
    background: #ededee;
    padding: 15px 32px;
    border-radius: 12px;
    display: inline-block;
    cursor: pointer;
    transition: all ease 0.4s;
}
.custom-button-cancel:hover {
    color: rgb(255, 255, 255);
    background-color: red;
}
.custom-w50 {
    width: 50px;
}
.custom-w85 {
    width: 85%;
}
.custom-h45 {
    height: 45%;
}

.custom-transition {
    transition-behavior: normal;
    transition-delay: 0s;
    transition-duration: 0.4s;
    transition-property: all;
    transition-timing-function: ease;
}
.custom-heading6 {
    font-size: 14px;
    line-height: 24px;
}
@media (max-width: 1023.99px) {
    .custom-button-cancel {
        padding: 12px 24px;
        border-radius: 10px;
    }
}

@media (max-width: 767.98px) {
    .custom-w50 {
        width: 36px;
    }
    .custom-button-cancel {
        font-size: 12px;
        line-height: 16px;
        padding: 10px 16px;
        border-radius: 8px;
    }
    .custom-search-icon {
        display: none;
    }
}

.custom-bg-box1 {
    background: #a78e11;
}
.custom-bg-box2 {
    background: #082f49;
}
.custom-bg-box3 {
    background: #774848;
}
.custom-border-box3 {
    border: 2px solid #774848;
}
.custom-bg-box4 {
    background: #3b2e96;
}
.custom-border-box4 {
    border: 2px solid #3b2e96;
}
.custom-bg-box5 {
    background: #8f6939;
}
.custom-border-box5 {
    border: 2px solid #8f6939;
}
.custom-box-hover:hover {
    transition: 0.7s;
    color: rgb(240, 200, 41);
}
.modal {
    pointer-events: none;
    position: fixed;
    inset: 0px;
    margin: 0px;
    display: grid;
    height: 100%;
    max-height: none;
    width: 100%;
    max-width: none;
    justify-items: center;
    padding: 0px;
    opacity: 0;
    overscroll-behavior: contain;
    z-index: 999;
    background-color: transparent;
    color: inherit;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-property: transform, opacity, visibility;
    overflow-y: hidden;
}
.modal-backdrop {
    z-index: -1;
    grid-column-start: 1;
    grid-row-start: 1;
    display: grid;
    align-self: stretch;
    justify-self: stretch;
    color: transparent;
}
