@font-face {
    font-family: 'AlexBrush-Regular';
    src: url('../assets/fonts/otherFonts/AlexBrush-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'AnandaPersonalUse';
    src: url('../assets/fonts/otherFonts/AnandaPersonalUse.ttf') format('truetype');
}

@font-face {
    font-family: 'EmbassyBT';
    src: url('../assets/fonts/otherFonts/EmbassyBT.ttf') format('truetype');
}

@font-face {
    font-family: 'great-vibes_regular';
    src: url('../assets/fonts/otherFonts/great-vibes_regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Italianno-Regular';
    src: url('../assets/fonts/otherFonts/Italianno-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'MarriageMomentPersonalUse';
    src: url('../assets/fonts/otherFonts/MarriageMomentPersonalUse.ttf') format('truetype');
}

@font-face {
    font-family: 'Miama';
    src: url('../assets/fonts/otherFonts/Miama.ttf') format('truetype');
}

@font-face {
    font-family: 'Rumburak';
    src: url('../assets/fonts/otherFonts/Rumburak.ttf') format('truetype');
}

@font-face {
    font-family: 'IRANSansXMedium';
    src: url('../assets/fonts/otherFonts/IRANSansXMedium.ttf') format('truetype');
}

@font-face {
    font-family: 'Good_Unicorn_TTF';
    src: url('../assets/fonts/otherFonts/Good_Unicorn_TTF.ttf') format('truetype');
}

@font-face {
    font-family: 'IRANYekanMedium';
    src: url('../assets/fonts/otherFonts/IRANYekanMedium.ttf') format('truetype');
}

.pagination {
    height: 50px;
}

.neonRed {
    color: #000000; /* Set the base text color to red */
    text-shadow: 0 0 5px #ff0000, /* Inner glow */ 0 0 10px #ff0000, /* Slightly larger glow */ 0 0 15px #ff0000, /* Even larger glow */ 0 0 20px #ff0000; /* Outermost glow */
}

.arial {
    font-family: "Arial" !important;
}

.select2-selection__choice__remove {
    left: 5px !important;
}

.select-wrapper select {
    border-radius: 0.1rem; /* Adjust the radius as needed */
    overflow: hidden; /* This hides the default square corners of the select element */
}

.area {
    background: #4e54c8;
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}


@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(241, 241, 241, 0.5); /* Background color with 50% opacity */
    z-index: 9999;
}

.loader:after {
    content: '';
    border: 16px solid #f3f3f3; /* Light gray */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.on-hold-term {
    color: blue;
}

.archive-term {
    color: red;
}

.current-term {
    color: green;
}

.insta {
    background-image: linear-gradient(-225deg, #A445B2 0%, #D41872 52%, #FF0066 100%);
}

.gradient1 {
    background-image: linear-gradient(to left, #fc6076 0%, #ff9a44 100%);
}

.gradient1_1 {
    background-image: linear-gradient(to left, #fa90a0 0%, #ffd7b2 100%);
}

.gradient2 {
    background-image: linear-gradient(to right, #d4fc79 0%, #96e6a1 100%);
}

.gradient3 {
    background-image: linear-gradient(to left, #a1c4fd 0%, #c2e9fb 100%);
}

.gradient4 {
    background-image: linear-gradient(to left, #4facfe 0%, #00f2fe 100%);
}

.gradient5 {
    background-image: linear-gradient(to right, #f5f7fa 0%, #c3cfe2 100%);
}

.gradient6 {
    background-image: linear-gradient(to right, #fdfcfb 0%, #e2d1c3 100%);
}

.gradient7 {
    background-image: linear-gradient(to left, #c1dfc4 0%, #deecdd 100%);
}

.gradient8 {
    background-image: linear-gradient(to left, #cd9cf2 0%, #f6f3ff 100%);
}

.gradient9 {
    background-image: linear-gradient(to right, #00cdac 0%, #8ddad5 100%);
}

.gradient10 {
    background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
}

.gradient11 {
    background-color: #E4E4E1;
    background-image: radial-gradient(at top center, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.03) 100%), linear-gradient(to top, rgba(255, 255, 255, 0.1) 0%, rgba(143, 152, 157, 0.60) 100%);
    background-blend-mode: normal, multiply;
}

.gradient12 {
    background: #16A085; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #F4D03F, #16A085); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #F4D03F, #16A085); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.gradient13 {
    background: #603813; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #b29f94, #603813); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #b29f94, #603813); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.gradient14 {
    background: #CAC531; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #F3F9A7, #CAC531); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #F3F9A7, #CAC531); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.gradient15 {
    background: #ECE9E6; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.bgGradientBlue1 {
    background-image: linear-gradient(to right, #c5ddfa 0%, #e7f0fd 100%);
}

.gradient16 {
    background-image: linear-gradient(to left, #cd9cf2 0%, #f6f3ff 100%);
}

/*card-1*/
.card-zoom {
    display: block;
    overflow: hidden;
    transition: all 0.3s;
}

.card-zoom:hover {
    cursor: pointer;
    transform: scale(1.02);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.19);
    transition: all 0.3s;
}

.card-zoom2 {
    display: block;
    overflow: hidden;
    transition: all;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.19);
}

.card-zoom2:hover {
    transform: scale(1.005);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.19);
    transition: all;
}

.card.h-100.bg-light-info {
    transition: all 0.3s;
}

.card.h-100.bg-light-info:hover {
    border-radius: 30px;
}


.iconCardTicket:before {
    content: "\f590 ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardMessage:before {
    content: "\f27a ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardGraduation-cap:before {
    content: "\f19d ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardScreen-users:before {
    content: "\f63d ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardShapes:before {
    content: "\f61f ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardBookOpenCover:before {
    content: "\f5da ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardGlassesRound:before {
    content: "\f5f5 ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardBooks:before {
    content: "\f5db ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardBirthday:before {
    content: "\f1fd ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardHomeWorks:before {
    content: "\f5da ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardHandShake:before {
    content: "\f2b5 ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardCommentPending:before {
    content: "\f4ae ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardBan:before {
    content: "\f05e ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.iconCardMoneyBill:before {
    content: "\f0d6 ";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 3.5rem;
    line-height: 1;
    left: 10px;
    bottom: 5px;
    transform: rotate(15deg);
    opacity: .1;
}

.classRoomBg1 {
    background: #7F2797;
    background: linear-gradient(135deg, #7F2797, #BD3245);
}

.classRoomBg2 {

    background: #6C3106;
    background: linear-gradient(135deg, #6C3106, #8BBA25);
}

.classRoomBg3 {
    background: #275726;
    background: linear-gradient(135deg, #275726, #1B9646);
}

.classRoomBg4 {
    background: #E2410D;
    background: linear-gradient(135deg, #E2410D, #8C18ED);
}

.classRoomBg5 {
    background: #58B8E5;
    background: linear-gradient(135deg, #58B8E5, #2E8A5F);
}

.classRoomBg6 {
    background: #400532;
    background: linear-gradient(135deg, #400532, #29F4C4);
}

.classRoomBg7 {
    background: #DF8C9F;
    background: linear-gradient(135deg, #DF8C9F, #8E3075);
}

.classRoomBg8 {
    background: #9C1EFD;
    background: linear-gradient(135deg, #9C1EFD, #3A5BA2);
}

.classRoomBg9 {
    background: #F565F7;
    background: linear-gradient(135deg, #F565F7, #3CE3F9);
}

.classRoomBg10 {
    background: #6F5817;
    background: linear-gradient(135deg, #6F5817, #AFE21F);
}

.select2-selection__choice {
    float: none !important;
    display: block !important;
    margin: 5px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

select::-moz-placeholder { /* Firefox specific */
    border-radius: 20px;
}

select:-ms-input-placeholder { /* Internet Explorer specific */
    border-radius: 20px;
}

select:not([multiple]) option:last-child {
    border-radius: 20px;
}


/*table responsive */


@media screen and (max-width: 600px) {
    table {
        border: 1px;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border: 3px solid #2f2f2f;
        display: block;
        margin-bottom: 2em;
    }

    table td {
        border: 1px solid #2f2f2f;
        border-bottom: 1px solid #2f2f2f !important;
        display: block;
        text-align: left; /* Changed to left alignment */
    }

    table td::before {
        content: attr(data-label);
        float: right; /* Changed to right float */
        font-weight: bold;
    }

    table td:last-child {
        border-bottom: 0 !important;
    }
}

