@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,400;6..12,500;6..12,700;6..12,800&display=swap');

:root{
    --primary-color: #282828;
    /* --secondary-color: #21d375; */
    --secondary-color: #d2fa39;
}

/*--------------------- Custom reset ----------------*/
body{   
    /* min-height: 100vh; */
    background: rgba(237, 237, 240, 0.4);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;

    /* background: rgb(237,237,240);
    background: linear-gradient(131deg, rgba(237,237,240,1) 0%, rgba(255,255,255,1) 41%, rgba(237,237,240,1) 100%); */
}
h1 {
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    color: var(--primary-color);
    padding-top: .625rem;
    padding-bottom: .625rem;

}
a, button, .smooth {
    transition: all .3s ease;
}
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
::-webkit-scrollbar-track {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.03);

}
::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.7);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
	border-radius: 10px;
} 
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    transition: background-color 50000s !important;
    -webkit-text-fill-color: var(--primary-color) !important;
}
.no-focus:focus {
    outline: none !important;
    box-shadow: none !important;
}
button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/*--------------------------------------------------*/
.fcc {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fcs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.fcb {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.invert {
    filter: invert(1);
}
.nunito-extralight {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 200;
}
.nunito-regular {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}
.nunito-medium {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}
.nunito-semibold {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}
.nunito-bold {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
}
.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    padding: .625rem 16px .625rem 16px;
    transition: all .3s ease;
}
.c-btn-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.5rem;
    padding: .625rem 16px .625rem 16px;
    transition: all .3s ease;
}
.c-btn-small-square {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 0.375rem;
    transition: all .3s ease;
}
.c-btn-small-rounded {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 99999px;
    transition: all .3s ease;
}
.c-btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    padding: .375rem 11px .375rem 11px;
    transition: all .3s ease;
}
.c-btn-xs {
    border-radius: 0.375rem ;
    padding: 6px 10px;
    transition: all .3s ease;
}
.c-btn-blue {
    background: #3b82f6 !important;
    color: #ffffff !important;
}
.c-btn-blue:hover {
    background: #2563eb !important;
}
.c-btn-blue-light {
    background: #dbeafe !important;
    color: #3b82f6 !important;
}
.c-btn-blue-light:hover {
    background: #bfdbfe !important;
}
.c-btn-gray {
    background: #f3f4f6 !important;
    color: #111827 !important;
}
.c-btn-gray:hover {
    background: #e5e7eb !important;
}
.c-btn-emerald {
    background: #34d399 !important;
    color: #ffffff !important;
}
.c-btn-emerald:hover {
    background: #10b981 !important;
}
.c-btn-green-light {
    background: #dcfce7 !important;
    color: #16a34a !important;
}
.c-btn-green-light:hover {
    background: #bbf7d0 !important;
}
.c-btn-red {
    background: #ef4444 !important;
    color: #ffffff !important;
}
.c-btn-red:hover {
    background: #dc2626 !important;
}
.c-btn-red-light {
    background: #fee2e2 !important;
    color: #ef4444 !important;
}
.c-btn-red-light:hover {
    background: #fecaca !important;
}
.c-btn-indigo {
    background: #6366f1 !important;
    color: #ffffff !important;
}
.c-btn-indigo:hover {
    background: #4f46e5 !important;
}
.c-btn-indigo-light {
    background: #e0e7ff !important;
    color: #6366f1 !important;
}
.c-btn-indigo-light:hover {
    background: #c7d2fe !important;
}
.c-btn-amber-light {
    background: #fef3c7 !important;
    color: #f59e0b !important;
}
.c-btn-amber-light:hover {
    background: #fde68a !important;
}

.left-menu::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}
.active-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
}
.text-primary {
    color: var(--primary-color);
}
.accordion {
    cursor: pointer;
    width: 100%;
    transition: 0.4s;
}
.sub-area:has(.active_sub) .accordion {
    background: var(--primary-color);
    color: var(--secondary-color);
}
.sub-area:has(.active_sub) .accordion:hover {
    background: var(--primary-color);
}
.sub-area .accoActive,
.sub-area .accordion:hover {
    background-color: rgba(255, 255, 255, 0.6);
}
.panel {
    background-color: rgba(255, 255, 255, 0.6);
    display: none;
    overflow: hidden;
}
.sub_angle {
    transition: all .2s ease;
}
.accordion.accoActive .sub_angle {
    transform: rotate(90deg);
}
.mirror {
	transform: scaleX(-1);
}
.grad_background {
    /* background: rgb(237,237,240);
    background: linear-gradient(131deg, rgba(237,237,240,1) 0%, rgba(255,255,255,1) 41%, rgba(237,237,240,1) 100%); */
}
.auth-input {
    outline: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: 0px 1px rgba(0, 0, 0, 0.15) !important;
}
.auth-input:focus {
    outline: none;
    border: none;
    box-shadow: 0px 2px var(--primary-color) !important;
}
.btn-primary {
    background: var(--primary-color) !important;
    color: var(--secondary-color);
}
.bg-primary {
    background: var(--primary-color);
}
.btn-primary:hover {
    opacity: 0.8;
    color: #ffffff;
}
.link-primary {
    color: var(--primary-color);
}
.link-primary:hover {
    opacity: 0.8;
}
/*---------------------------- Custom switch Checkbox -------------------------------*/
.switch {
    display: inline-block;
    height: 20px;
    position: relative;
    width: 48px;
  }
  
  .switch input {
    display:none;
  }
  
  .slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
  }
  
  .slider:before {
    background-color: #fff;
    /* bottom: 2px; */
    content: "";
    left: 3px;
    position: absolute;
    transition: .4s;
    width: 15px;
    height: 15px;
  }
  .switch input:checked + .slider {
    background-color: #22c55e;
  }
  .switch-area:has(.switch input:checked ) .switch-label {
    color: var(--primary-color);
  }  
  .switch-area .switch-label {
    transition: all .3s ease;
    color: rgba(156, 163, 175, 0.8);
  }

  .switch input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  .slider.round {
    display: flex;
    align-items: center;
    border-radius: 24px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  .attr span {
    color: rgba(156, 163, 175, 0.8);
  }  
  .attr:has(input:checked) span {
    color: var(--primary-color);
  }
/*---------------------------- Custom Checkbox -------------------------------*/
.c-checkbox label {
	display: flex; 
    align-items: center; 
	position: relative;
}

.c-checkbox input {
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
}

.c-checkbox label > span {
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	border: 2px solid #9e9e9e;
	border-radius: 3px;
	transition: all .3s;
}

.c-checkbox input:checked + label > span {
	border: 10px solid var(--primary-color);
	animation: bounce 250ms;
}

.c-checkbox input:checked + label > span::before {
	content: '';
	position: absolute;
	left: 5px;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	transform: rotate(45deg);
	transform-origin: 0% 100%;
	animation: checked-box 125ms 250ms forwards;
}

@keyframes checked-box {
	0% {
		width: 0;
		height: 0;
		border-color: var(--secondary-color);
		transform: translate(0,0) rotate(45deg);
	}
	33% {
		width: 4px;
		height: 0;
		border-color: var(--secondary-color);
		transform: translate(0,0) rotate(45deg);
	}
	100% {
		width: 4px;
		height: 8px;
		border-color: var(--secondary-color);
		transform: translate(0,-8px) rotate(45deg);
	}
}

@keyframes bounce {
	0% {
		transform: scale(1);
	}
	33% {
		transform: scale(.7);
	}
	100% {
		transform: scale(1);
	}
}
  /*-------------------------- Custom Tom Select ----------------------------*/
.ts-control {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem !important;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: none;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
}
.ts-padd {
    padding-top: 0.5rem;
    padding-right: 0.75rem;
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
}
/*----------------------------------------------------------------------------*/
.auth-area .bg-gray-100 {
    background: none !important;
}
.teams-list a {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6b7280;
    border: none !important;
    padding-left: 2.5rem;
    font-size: 0.875rem;
}
.teams-list a:hover {
    background: none; 
    color: #000000;
    border: none !important;
}
.teams-list a:has(svg) {
    color: #000000;
    font-weight: 600;
    padding-left: 0.75rem;
}
.team-set h3 {
    font-size: 1rem;
}
.team-set p {
    margin-top: 0;
}
/*----------------------------------------------------------------------------*/
.grid-cols-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
}
.lang-active {
    right: 0;
    opacity: 1;
    z-index: 1;
}
.lang-btn {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    transition: all .3s ease;
    z-index: -1;
    opacity: 0;
    right: 4px;
}
.lang-btn.active {
    right: 3px;
    z-index: 1;
    opacity: 1;
}
.lang-btn.show {
    right: 38px;
    z-index: 1;
    opacity: 1;
}
@media screen and (max-width: 767px) {
    .lang-btn {
        width: 19px;
        height: 19px;
        right: 4px;
    }
    .lang-btn.active {
        right: 3px;
    }
    .lang-btn.show {
        right: 32px;
    }
}
/*----------------------------- Modal ------------------------------*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal ::-webkit-scrollbar {
	width: 3px;
	height: 5px;
}
.modal-open {
    overflow: hidden;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 90vh;
    width: 85vw;
    max-width: 350px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.is-required:after {
    content:" *";
    color: red;
  }
  nav[role="navigation"] span[aria-current="page"] span {
    background: #6366f1 !important;
    color: #ffffff !important;
    border: 1px solid #6366f1 !important;
    font-weight: bold !important;
  }