:root {
    --bs-primary: #56a6ac;
    --bg-soft: #eef7f7;
    --primary-text-color: #636669;
}
body {
    font-family: Nunito Sans,sans-serif;
    font-weight: 400;
    font-style: 400;
    font-size: 16px;
    color: var(--primary-text-color);
}
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.no-scrollbar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
header .logo {
    width: 120px;
    height: auto;
}
.form-control:focus {
    box-shadow: none;
}
.fs-7 {
    font-size: .8rem;
}
.bg-soft {
    background-color: var(--bg-soft);
}
footer {
    font-size: .8rem;
    background-color: #2a2c2e;
    color: #d2dbe5;
}
footer p, footer a {
    color: #d2dbe5;
    text-decoration: none;
}
#verticalBanner{
    position: absolute;
    top: 0;
    right: 0;
}
.card-title {
    /* white-space: nowrap; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
fieldset{
    min-width: 0;
    padding: 0rem .25rem .25rem;
    margin: 0;
    border: 1px solid var(--bs-primary);
    border-radius: .5rem;
}
fieldset legend{
    width: auto;
    float: none;
    font-size: 1rem;
    color: var(--bs-primary);
    line-height: 1;
    padding: 0 0.5rem;
    margin-bottom: .25rem;
}
.widget {
    position: fixed;
    z-index: 8;
    right: 8px;
    bottom: 8px;
}
.widget-ig, .widget-wa {
    display: inline-block;
    text-align: center;
    padding: 10px;
    font-size: 1.8rem;
    min-width: 50px;
    line-height: 1;
    border-radius: 50%;
    color: #FFF;
}
.widget-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);;
}
.widget-wa {
    background: #3AC371;
}
@media (max-width:767px){
    body{
        font-size: 12px;
    }
    header .logo {
        width: 80px;
    }
    fieldset legend{
        font-size: .9rem;
    }
    .card-title {
        -webkit-line-clamp: 2;
    }
    .widget {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        /* bottom: 30px; */
    }
}