/*
Color palletes
#31516d => Blumine,
#e2c9ab => Sapling,
#d8e6ec => light
*/


.flex {
    display: flex;
    align-items: center;
}

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

.center {
    display: flex;
    justify-content: center;
}

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

.between {
    display: flex;
    justify-content: space-between;
}

.around {
    display: flex;
    justify-content: space-around;
}

.text-justify {
    text-align: justify;
}

.pointer {
    cursor: pointer;
}

.text-shadow {
    text-shadow: 0 0 15px white;
}

.ff-bold {
    font-family: "IranSansWeb-Black";
}

.ff-extra-bold {
    font-family: "IranSansWeb-Black";
}

.p-sticky {
    position: sticky;
    top: 0;
}

.h-100vh {
    height: 100vh;
}


.absolute-button {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 25px 0 0 25px;
}



/* Colors */
.bg-blumine {
    background-color: #31516d;
}

.text-blumine {
    color: #31516d;
}

.btn-blumine {
    background-color: #31516d;
    color: #fff !important;
    transition: all .3s ease-in-out;
}

.btn-blumine:hover {
    background-color: #20374b;
}

.btn-outline-blumine {
    border: 1px solid #31516d;
    transition: all .3s ease-in-out;
}

.btn-outline-blumine:hover {
    color: #fff !important;
    background-color: #20374b;
}

.bg-sapling {
    background-color: #e2c9ab;
}

.text-sapling {
    color: #663f30;
}

.btn-sapling {
    background-color: #e2c9ab;
    color: #fff !important;
    transition: all .3s ease-in-out;
}

.btn-sapling:hover {
    background-color: #cfb391;
}

.btn-outline-sapling {
    border: 1px solid #e2c9ab;
    transition: all .3s ease-in-out;
}

.btn-outline-sapling:hover {
    color: #fff !important;
    background-color: #cfb391;
}

.bg-light {
    background-color: #d8e6ec !important;
}

.text-light {
    color: #d8e6ec;
}

.btn-light {
    background-color: #d8e6ec;
    color: #fff !important;
    transition: all .3s ease-in-out;
}

.btn-light:hover {
    background-color: #cbdce4;
}

.btn-outline-light {
    border: 1px solid #d8e6ec;
    transition: all .3s ease-in-out;
}

.btn-outline-light:hover {
    color: #fff !important;
    background-color: #cbdce4;
}


.bg-section {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: url('/assets/images/121.png');
    background-size: 100px;
    filter: blur(1px);
}


/* Breadcrumb */
.breadcrumb {
    font-size: 15px;
}



/* Pagination */
.pagination a {
    color: #31516d !important;
}

.pagination li.active a {
    color: #fff !important;
    background-color: #31516d !important;
    border: none !important;
}





/* Animate-box */
.animate-box {
    opacity: 0;
    transition: opacity 1s ease;
}






/* Full page */
.fp-watermark {
    display: none;
}


#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: #686868 !important;
}

#fp-nav ul li .fp-tooltip {
    color: #686868;
    font-family: 'Iran-Sans';
}

.fp-controlArrow.fp-prev {
    width: 50px;
    height: 50px;
    color: #fff;
}

.fp-controlArrow.fp-next {
    width: 50px;
    height: 50px;
    color: #fff;
}








#updating .modal-dialog .modal-content {
    color: #31516d;
    background: #ffffffa1;
    backdrop-filter: blur(5px);
    filter: drop-shadow(0 0 0.75rem #d8e6ec65);
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 250px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-conic-gradient(#31516db7 0 90deg, #d8e6ecb7 0 180deg);
    animation: l21 1s infinite linear;
}

@keyframes l21 {
    100% {
        transform: rotate(.5turn)
    }
}










/* iFrame */
iframe {
    width: 100%;
    height: 100%;
}


/* Lightbox */
.lb-outerContainer,
.lb-container,
.lb-image {
    border-radius: 10px 50px 10px 50px !important;
    overflow: hidden;
}

.article-page .lb-outerContainer,
.article-page .lb-container,
.article-page .lb-image {
    border-radius: 70px 10px 70px 10px !important;
    overflow: hidden;
}

.lb-prev,
.lb-next {
    opacity: 1 !important;
}
