/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 01-Apr-2022, 10:19:56
    Author     : darius
*/
h1{
    text-transform: none;
    font-weight: bold;
    line-height: 1.1em;
    letter-spacing: -0.12px;
    font-size: 32px;
}
h2{
    text-transform: none;
    font-weight: bold;
    line-height: 1.1em;
    letter-spacing: -0.12px;
    font-size: 24px;
}
h3{
    text-transform: none;
    font-weight: bold;
    line-height: 1.1em;
    letter-spacing: -0.12px;
    font-size: 16px;
}
h4{
    text-transform: none;
    font-weight: bold;
    line-height: 1.1em;
    letter-spacing: -0.12px;
    font-size: 14px;
}

.hide{
    display: none;
}

.line{
    border-top: 1px solid;
    width: 100%;
}
.block {
    display: block;
}
.line.gray{
    border-color: #ddd;
}

.opacity-50{
    opacity: 0.5;
}

.opacity-33{
    opacity: 0.33;
}

.opacity-66{
    opacity: 0.66;
}

.bold{
    font-weight: bold;
}

.extra-bold{
    font-weight: 800;
}
.uppercase{
    text-transform: uppercase;
}

ul {
    list-style-type: none;
}

.flex{
    display: flex;
}
.gap-16{
    gap:16px;
}

.flex.columns{
    flex-direction: column;
}
.flex.centered{
    justify-content: center;
    align-items: center;
}
.flex.spread{
    justify-content: space-between;
}

.flex.wrap{
    flex-wrap: wrap;
}

.flex.right {
    justify-content: flex-end;
}

.flex.left {
    justify-content: flex-start;
}

.flex-gap-12 {
    gap: 12px;
}

.flex-gap-16 {
    gap: 16px;
}

.padding-all-1x{
    padding: 16px;
}

.padding-all-2x{
    padding:32px;
}

.padding-all-3x{
    padding:48px;
}
.padding-all-4x{
    padding:64px;
}
.padding-all-5x{
    padding:80px;
}
.padding-all-6x{
    padding:96px;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}

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

.zindex-0{
    z-index: 0;
}
.zindex-1{
    z-index: 1;
}
.zindex-2{
    z-index: 2;
}
.width-60{
    width: 60px;
}
.width-90{
    width:90px;
}
.height-90{
    height: 90px;
}
.width-110{
    width:110px;
}
.width-full{
    width: 100%;
}
.height-full{
    height: 100%;
}

.height-350{
    height: 350px;
}

.full{
    height: 100%;
    width: 100%;
}

.width-33per{
    width: 33.3333%;
}
.width-66per{
    width: 66.6666%;
}
.width-50per{
    width: 50%;
}
.width-240{
    width:240px;
}
.width-160{
    width:160px;
}
.width-300{
    width:300px;
}
.width-450{
    width:450px;
}
.width-820{
    width:820px;
    max-width: 100%;
}

.max-width-80{
    max-width: 80%;
}

.max-width-100{
    max-width: 100%;
}

.columns-3{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.columns-3 > *{
    width: calc(33.334% - 12px);
}

.bg-color-pink{
    background-color: #ffc0cb;
}

.bg-color-white{
    background-color: #fff;
}
.border-bottom{
    border-bottom: 1px solid rgb(233, 233, 233);
}
.font-porte-sans{
    font-family: 'porter-sans', 'sans-serif' !important;
}

.margin-top-24{
    margin-top: 24px;
}

.margin-top-16{
    margin-top: 16px;
}
.margin-top-8{
    margin-top: 8px;
}
.margin-bottom-16{
    margin-bottom: 16px;
}

.margin-left-8{
    margin-left: 8px;
}
.margin-left-16{
    margin-left: 16px;
}

.margin-bottom-8{
    margin-bottom: 8px;
}

.margin-bottom-32{
    margin-bottom: 32px;
}

.margin-bottom-48{
    margin-bottom: 48px;
}

.margin-top-32{
    margin-top: 32px;
}

.margin-right-8{
    margin-right: 8px;
}
.margin-right-16{
    margin-right: 16px;
}
.margin-right-32{
    margin-right: 32px;
}
.padding-bottom-32{
    padding-bottom: 32px;
}

.padding-bottom-16{
    padding-bottom: 16px;
}

.padding-bottom-8{
    padding-bottom: 8px;
}

.padding-bottom-48{
    padding-bottom: 48px;
}

.text-center{
    text-align: center;
}
.padding-0{
    padding:0;
}
.text-60px{
    font-size: 60px;
}

.text-72px{
    font-size: 72px;
}
.text-32px{
    font-size: 32px;
}
.text-22px{
    font-size: 22px;
}
.text-24px{
    font-size: 24px;
}

.text-14px{
    font-size: 14px;
}

.text-12px{
    font-size: 12px;
}
.text-10px{
    font-size: 10px;
}
.bg-color-lightgray{
    background-color: #d9d9d9;
}

.color-gray{
    color: #666666;
}

.color-lightgray{
    color: #ddd;
}

.color-black{
    color: #000000;
}
.color-purple{
    color:#A976FF;
}

.circle {
    border-radius: 50%;
    overflow: hidden;
}
.size-24.circle{
    width:24px;
    height: 24px;
}
.size-48.circle{
    width:48px;
    height: 48px;
}

.color-white{
    color:#fff;
}

.bg-color-dark{
    background-color: #2A2A2A;
}
.bg-color-black{
    background-color: #000;
}

.overflow-hidden{
    overflow: hidden;
}
.no-word-wrap{
    white-space: nowrap;
}
.cover-image{
    object-fit:cover;
}

.border-radius-15{
    border-radius: 15px;
}

.border-radius-4{
    border-radius: 4px;
}

.no-margin{
    margin:0 !important;
}