
.container_12 {
    width: 1200px;
    margin: 0 auto;
}
.console_container_12{
    width: 1200px;
}
.sticky {
    position: sticky;
}
.top-0 {
    top: 0px;
}
.z-10 {
    z-index: 10;
}

.drop-shadow-lg {
    box-shadow: -1px 7px 20px 0px rgb(187 182 182 / 55%);
}
.secondary-bg {
    background-color: #F8F7FA;
}

a {
    color: inherit;
    text-decoration: inherit;
}
.leading-none {
    line-height: 1;
}

.relative{
    position: relative;
}

/* margins */
.mr-8 {
    margin-right: 2rem;
}
.mr-4{
    margin-right: 1rem;;
}
.mr-6 {
    margin-right: 1.5rem;
}
.mt-4{
    margin-top: 1.5rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mb-10{
    margin-bottom: 20px;
}
.my-10{
    margin: 16px 0;
}
.my-20{
    margin-top: 2.5rem;
    margin-bottom: 1em;
}


/* paddings */
.p-10 {
    padding: 1rem;
}
.p-20{
    padding: 2rem;
}


/* alignments */
.text-right{
    display: block;
    text-align: right;
}

/* flex */
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}

/* fonts */
.font-bold{
    font-weight: 500;
}
.fs-36{
    font-size: 36px;
}
.fs-30{
    font-size: 30px;
}

.text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem; 
}
.block {
    display: block;
}
.text-center {
    text-align: center;
}
.pb-0 {
    padding-bottom: 0;
}
fieldset {
    position: relative;
    margin: 0;
    padding: 0;
}
.p-12{
    padding: 3rem;
}
.cursor{
    cursor: pointer;
}
ul{
    list-style: none;
}
.btn-primary{
    cursor: pointer;
    display: inline-block;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    min-width: 144px;
    text-align: center;
    font-size: 14px;
    border:1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}
.btn-secondary{
    display: inline-block;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    min-width: 144px;
    text-align: center;
    font-size: 14px;
    background-color: #fff;
    border:1px solid var(--primary-color);
    color:var(--primary-color);
}
.box-shadow{
    box-shadow: 1px 1px 4px 1px #cbc1c1;
    border-radius: 8px;
}
.w-800{
    width: 800px;
    margin: 0 auto;
}
.w-1200{
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.w-600{
    width: 600px;
    margin: 0 auto;
}

.w-bg-main{
    /* background: rgba(12, 140, 233, 0.20); */
    background: rgb(185 163 207 / 37%);
    padding: 20px !important;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}
.grid_12{
    padding: 0 1rem;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    border-left: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: none;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 6px;
}

.dropdown {
    /* color: #383838; */
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.0075);
    cursor: pointer;
    vertical-align: middle;
    padding-right: 16px;
    position: relative;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: auto;
    display: inline-block;
}
.current {
    font-weight: 500;
}
.dropdown .list {
    box-sizing: border-box;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transform: scale(0.75);
    transform-origin: 50% 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .09);
    background-color: #fff;
    border-radius: 3px;
    margin-top: 4px;
    padding: 3px 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
}
.list ul {
    margin: 0;
}
.dropdown .option.selected {
    font-weight: 600;
}
.dropdown .option {
    cursor: default;
    font-weight: 400;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 20px;
    text-align: left;
    transition: all 0.2s;
}
.w-80 {
    width: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.console-w800{
    width: 800px;
}

@media (max-width: 768px){
    .mr-6{
        margin-right: 0;
    }
    .container_12{
        width: -webkit-fill-available;
        margin: initial;
    }
    .p-12{
        padding: 1em;
    }
    .w-800,.w-600{
        margin: 0 16px;
        width: -webkit-fill-available;
    }
    .w-1200,.w-80,.console_container_12{
        width: -webkit-fill-available;
    }
    .mt-10{
        margin-top: 0px;
    }
    .my-20{
        margin-top: 0;
        margin-bottom: 16px;
    }
    
    .navbar_container{
        background-color: #fff;
    }
}