@import url('https://fonts.googleapis.com/css2?family=Athiti:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Athiti", sans-serif;
    font-weight: 400;
}

p,
small,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 !important;
}

.main-shadow {
    box-shadow: 0px 0px 4px 0px #4C8BFF82;
}

.border-main {
    border: 3px solid #D2DCEF31;
}

.border-gray {
    border: 0.8px solid #D2DCEF !important;
}

.text-main {
    color: #141C53;
}

.df-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.text-gray {
    color: #a6a8af;
}

::-webkit-scrollbar {
    max-width: 5px;
    max-height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cccccc50;
    border-radius: 5vh;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #a7a7a7;
}

.btn.choice_line>div {
    border-width: 2px !important;
}

.btn.choice_line:focus {
    outline: none !important;
    box-shadow: none;
    border-color: #2538B4 !important;

    &>div>p {
        color: #2538B4 !important;
    }
}

.btn.choice_line.active {
    border-color: #2538B4 !important;

    &>div>p {
        color: #2538B4 !important;
    }
}

.content_area {
    max-height: 0px;
    transition: max-height 0.3s ease-out;
    overflow: hidden;

    &.active {
        max-height: 200px;
        overflow: scroll;
        transition: max-height 0.3s ease-in;
    }
}

#search-results {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    border-top: none;
    background-color: #fff;
}

.dropdown-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-wrapper {
    position: relative;
}