
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Inter:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*
HEDEKO
*/

/* --------------------------------------------
------------------ INIT ---------------------
--------------------------------------------- */

.box-shadow {
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.radio-select {
	width: 20px;
    height: 20px;
    border-width: 1px;
    border-color: black;
}


/*       accoridon      */

.accordion-wrapper .accordion {
    background-color: #fafafa;
    color: #004bee;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.4s;
  }
  
.accordion-wrapper  .active, .accrules:hover {
    background-color: #e6e6ff; 
  }
  


  .panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }




h2 {
    font-size: 19px;
    font-weight: 700;
    color: #313131 !important;
}

.card-user-1 {
    color: #1a1a1a;
    font-size: 15px;
    background-color: #ecebf3;
}

.card-user-2 {
    color: #ffffff;
    font-size: 15px;
    background-color: #0300ad;
}

.header-top {
    background-image: url("../../assets/images/ning-bg.png");
}

.header-area .header-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .header-area .header-bottom {
        padding: 0px 80px;
        padding-right: 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area .header-bottom {
        padding: 0px 15px;
        padding-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area .header-bottom {
        padding: 22px 50px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area .header-bottom {
        padding: 22px 20px;
    }
}
@media (max-width: 575px) {
    .header-area .header-bottom {
        padding: 10px 5px;
    }
}

.header-bottom a {
    text-decoration: none;
}

.header-bottom h3 {
    color:black;
    text-decoration: none;
    font-size: 20px;
}

.btn-login-header-login {
    background-color: #083846 !important;
    border-radius: 50%;
}
.btn-login-header-login i {
    color:  white !important;

}

.btn-login-header-log-out {
    border-radius: 50%;
}
.btn-login-header-log-out i {
    color:  #083846 !important;
}

.bg-dark-img {
    background-image: url("assets/images/dark-bg2.png");
}

/*
FOOTER
*/

.li-ning-footer {
    background-image: url("../../assets/images/footer-bg-ning.png");
    background-repeat: no-repeat;
    background-size: cover;
}


/*

 GLOBLA


*/

.overlayer-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f352;
}

.error {
    color:red;
    font-weight: 600;
    font-size: 13px;
}


/*
MENU ANIMATION 
*/
.hamburger-menu  {
   min-width: 32px;
    --s: 32px;
    --c: #252525;
    height: var(--s);
    aspect-ratio: 1;
    border: none;
    padding: 0;
    border-inline: calc(var(--s) / 2) solid #0000;
    box-sizing: content-box;
    --_g1: linear-gradient(var(--c) 20%,#0000 0 80%,var(--c) 0) no-repeat content-box border-box;
    --_g2: radial-gradient(circle closest-side at 50% 12.5%,var(--c) 95%,#0000) repeat-y content-box border-box;
    background: var(--_g2) left var(--_p, 0px) top, var(--_g1) left calc(var(--s) / 10 + var(--_p, 0px)) top, var(--_g2) right var(--_p, 0px) top, var(--_g1) right calc(var(--s) / 10 + var(--_p, 0px)) top;
    background-size: 20% 80%, 40% 100%;
    position: relative;
    clip-path: inset(0 25%);
    -webkit-mask: linear-gradient(90deg, #0000, #000 25% 75%, #0000);
    cursor: pointer;
    transition: background-position .3s var(--_s, .3s), clip-path 0s var(--_s, .6s);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .hamburger-menu:before,
  .hamburger-menu:after {
    content:"";
    position: absolute;
    border-radius: var(--s);
    inset: 40% 0;
    background: var(--c);
    transition: transform .3s calc(.3s - var(--_s,.3s));
  }
  
  .hamburger-menu:checked {
    clip-path: inset(0);
    --_p: calc(-1*var(--s));
    --_s: 0s;
  }
  .hamburger-menu:checked:before {
    transform: rotate(45deg);
  }
  .hamburger-menu:checked:after {
    transform: rotate(-45deg);
  }
  .hamburger-menu:focus-visible {
    clip-path: none;
    -webkit-mask: none;
    border: none;
    outline: 2px solid var(--c);
    outline-offset: 5px;
  }

  .expandable {
    background: #fff;
    overflow: hidden;
    color: #000;   
    line-height: 50px;
    transition: all .5s ease-in-out;
    transform-origin: left top;
    transform: scaleY(0);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 1;
   }
   
   .expandable.active {
    transform: scaleY(1);
  }

  .mobile-user-menu {
    height: 30px;
    width: 30px;

  }

.ada-color {
    color: #083846;
}
.ada-color-light {
    color: #0C3257;
}

.btn-ada-primary {
    background-color: #083846 !important;
    color: white !important;
    border: none;
    border-radius: 3px;
    padding-left: 26px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px !important; 
    font-weight: 500;
}

.btn-ada-secondary {
    background-color: #1479ec !important;
    color: #ffffff  !important; 
    border:none;
    border-radius: 3px;
    padding-left: 26px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px !important; 
    font-weight: 500;
    line-height:normal;
}

.btn-edit {  
    background-color: #eeeeff !important;
    color: #0037ce!important;
    border: solid 1px;
   
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 18px !important;
    font-weight: 500;
}

.btn-edit:hover {
    border: solid 1px white; 
}

.btn-delete-img {  
    background-color: #ffeeee !important;
    color: #ce0000!important;
    border: solid 1px;
    border-radius: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 18px !important;
    font-weight: 500;
}
 
.btn-delete-img:hover {
    border: solid 1px white !important; 
}


.btn-ada-secondary:hover {
    background-color: #0753aa   !important; 
}

.login-button {
    padding-top: 2px;
    background-color: #083846;
    border-color: #c7ff6c00;
    border-style: solid;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 100% !important;
    height: 50px;
    border-width: 3px;
    text-align: center;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 600;
}

.ada-secondary {
    color: #0075F1;
}

.padding-left-none {
    padding-left: 0% !important;
}

.padding-right-none {
    padding-right: 0% !important;
}

.color-w {
    color: white !important;
}


.bg-blue-grad {
    background-color: #0C3257;
    /* background: rgb(114,0,175);
    background: linear-gradient(170deg, rgba(114,0,175,1) 0%, rgba(0,1,161,1) 100%);  */
}

.box-category {
    /* background: rgb(114,0,175);
    background: linear-gradient(170deg, rgba(114,0,175,1) 0%, rgba(0,1,161,1) 100%);  */
    background-color: #0C3257;
    padding: 20px;
    font-size: 44px;
    color: white;
    width: 100px;
    height: 100px;
}

.box-bg { 
    max-width: 650px !important;
    padding: 30px; 
    border-color: #d7d5ec;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    margin-top: 30px;
}


.box-bg-page { 
    max-width: 850px !important;
    padding: 30px; 
    border-color: #d7d5ec;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
     
}



@media (max-width: 992px) { 
    .box-bg  {
        border:none
    }
}

.password-help-text {
    font-size: 14px;
    color: #4e4e4e;
    font-weight: 400;
}

.gray-card-border {
    border: 1px solid rgb(202, 202, 202);
}

.pad-right-10 {
    padding-right: 10px;
}

.pad-left-10 {
    padding-left: 10px;
}

.ada-primary {
    color: #083846 !important;
}

.btn-ada-primary a:hover { 
    color: white !important;
}

.btn-ada-primary:hover {
    background-color: #084b5f !important; 
    color: white !important;
}

.login-button:hover {
    background-color: #084b5f!important; 
    color: white !important;
}

.stats-t{
    background-color: #f8f8f8 !important;
}

.padd-none {
    padding: 0% !important;
}

.btn-translate {
    background-color: #20202000 !important;
    color: rgb(58, 58, 58) !important;
    border: 1px solid #979797;
    border-radius: 3px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 18px !important; 
    font-weight: 600; 
}

.nav-pills .nav-link {
    border-radius: 0;
}

.input-group-text {
    padding: 10px;
    display: flex;
    align-items: center;
    
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-tertiary-bg);
    border: none;
    border-radius: var(--bs-border-radius);
}


tr {
    border-bottom-color: #e2e2e2;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-top-color: #e2e2e2;
    border-top-width: 1px;
    border-top-style: solid;
    font-size: 14px;
}

td {
    padding: 8px;
}

.work-sans-500 {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.img-fit { 
    position: relative;
    bottom: 0;
}

.img-li-index {
    z-index: -1;
}
 

.bg-ning {
    background-image: url('/assets/images/ning-bg' ) !important;
}

.border-gray-b {
    border-bottom: 1px  solid #E0E0E0 !important;
} 

.border-blue-b {
    border-bottom: 2px  solid #0C3257 !important;
} 

.con-center {
    justify-content: center;
}



.space-between {
    padding-top: 40px;
    padding-bottom: 50px;
}

.flex-calendar {
    flex-direction: column;
    display: flex;
    gap: 10px; /* Adjust this value to change the gutter */
}

.zo-product-box  {

    max-width: fit-content;
    padding: 0px;
    justify-content: center; 
    border-color: #d7d5ec;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    margin: 5px;
    background-color: rgb(255, 255, 255);
}

.date-font {
    font-weight: 700;
    color: #161616; 
}

.ranking-font {
    font-weight: 600;
    color: #161616; 
}


.loc-font {
    font-weight: 500;
    color: #781bcf !important;
    font-size: 17px;
}

.box-flex-s {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    align-content: center;
}

.box-flex-wrap {
    display: flex; 
    flex-wrap: nowrap;
    align-items: center;
}
 

@media (max-width: 720px) { 

    .ada-liga {
        padding-top: 30px !important;
        font-size: 75px !important;
    }
	.image-container img {
		all: unset;
	
	}
	
	.image-container {
		all: unset;
		max-width:100%;
	}
	.img-container-cover {
		/*all: unset;*/
		max-width:100%;
	}
}


@media (max-width: 500px) { 

    .flex-container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        /* flex-wrap: nowrap; */
    }

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

    .btn-a-2 {
        width: 65px !important;
    }
 

    .ada-liga {
        padding-top: 30px !important;
        font-size: 45px !important;
    }

    .shuterimg {
        width: 180px !important;
    }

    .btn-a { 
        width: 80px !important;
    }

}



.cal-font {
    font-weight: 700;
    font-size: 25px;
    color: rgb(22, 22, 22); 
}

.cal-font-w {
    font-weight: 600;
    font-size: 22px;
    color: rgb(255, 255, 255); 
}


.box-c-w{ 
    background-color: rgb(255, 255, 255);
    border-radius: 1px;
    border-style: solid;
    border-width: 1px;
    border-color: #b1bad4;
}

 
table {
    --bs-table-striped-bg: rgb(184 184 184 / 5%) !important;
}

.box-c-g{ 
/*background-color: rgb(243, 243, 247);
    background-color: rgb(248, 248, 248);
*/
    border: none;
    /* border-color: #A7BCC7; */
    background-color: rgb(248, 248, 248);
    border-radius: 5px; 
}






.t-active-town{
    color: #131313;
    font-weight: 400;
    font-size: 18px;
}


.t-active {
    color: #242424;
    font-weight: 700;
    font-size: 18px;
}



@media (min-width: 576px) { 
   .d-flex-mid {
    display: flex;
   }
    
    
}

@media (max-width: 500px) { 
    .t-active {
        color: #131313;
        font-weight: 600;
        font-size: 17px;
    }
    .t-active-town{
        color: #131313;
        font-weight: 400;
        font-size: 17px;
    }
    .d-flex-col {
        display: flex;
        flex-direction: column;
    }
}

.hover-gray {
    background-color: white;
    &:hover {
        background-color: #eeeeee;
    }
}

.dropdown-menu {
    --bs-dropdown-padding-y: 0 !important;
    --bs-dropdown-padding-x: 0 !important;
  }

.t-past{
    color: #5a5a5a;
    font-weight: 600;
    font-size: large;
}   

.bg-success {
    background:#002fc9!important;
  } 

.align-r {
    text-align: right;
}

.align-l{
    text-align: left;
}

.align-l {
    text-align: left;
}

.align-c-f {
    display: flex;
    justify-content: center;
}


.align-c {
    text-align: center;
}

.tr-first {
    height: 60px;
    /* background-color: #f1f4f8; */
    font-weight: 600 ; 
    font-size: 19px;
    border-color: #ffffff;
    border-width: 2px;
    border-style: solid; 
    border-radius: 15px;
}
 
 

.stats-t {
    background-color: #ffffff;
    color: rgb(85, 85, 85);
    font-size: 16px;
    font-weight: 500 ;
    border-bottom-color: rgb(228, 228, 228) !important;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
 

.lightgbg {
 background-color: rgb(247, 247, 247);
}
 


.image-container {
    width: 100%; /* Define width */
    height: 250px; /* Define height */
    border: 1px solid #ffffff; /* Add border for visual separation */
    overflow: hidden; /* Ensure images don't overflow the container */
    position: relative; /* To make sure the image position is relative to the container */
}

  /* Define styles for the image */
.image-container img {
width: 100%; /* Ensure image fills the container horizontally */
height: 100%; /* Ensure image fills the container vertically */
object-fit: cover; /* Scale the image to cover the entire container */
position: absolute; /* Position the image absolutely within the container */
top: 0; /* Position the image at the top of the container */
left: 0; /* Position the image at the left of the container */
}


/* -------------------------- */

.image-container .img-container-cover {
   
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;  
    filter: brightness(100%);
    &:hover { 
        transform: scale(1.05);
        transition: transform .3s;
    }
}

a   {
    color: #0c0c0c !important;
    text-decoration: none !important;
    
}

.a-hover-eff {
    color: #0c0c0c !important;
    text-decoration: none !important;
    &:hover { 
        color: #110dff !important;
    }
}

/* -------------------------- */


.ranks-table table tr td  {
    text-align: left;

    /* padding-right: 20px; */
} 


.ranks-table {
    font-size: 14px !important;
}



table tr td:nth-child(3) {
    text-align: right;

    /* padding-right: 20px; */
}

table tr td:first-child {
    width: 20px; 
}

table.profile tr td:first-child {
    width: auto; 
}


.table {
    max-width: 1200px;
    font-size: 14px !important;
    /* font-family: "Inter", sans-serif !important; */ 
}

.credits {
    color: white;
}

body {
    color: rgb(39, 39, 39);

    font-family: "Inter", sans-serif;
    /* font-weight: 500 !important;
    font-family: "Inter", sans-serif  !important; */
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: #353535;
}

.bg-shuttle {
    background-image: url("assets/images/shuttlecock.png");
    background-repeat: no-repeat;
    background-position: -200px;
}

.bg-shuttle2 {
    background-image: url("assets/images/shutbg.png");
}

 

.nav-tabs .nav-link {
    color: #4771ae;
    background-color: white;
    background-color: đ;
    border: 1px solid white;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.nav-link.active {
    border-width: 2px;
    font-weight: 700;
    color: #495057;
    background-color: #fff;
    border-color: #ffffff #ffffff #0D3D6B !important;
}

.container-tr {
    max-width: 915px;
}


.btn-a {
    font-weight: 600;
    font-size: 20px;
    color: #00444b;
    width: 150px;
}


@media (min-width: 600px) { 
    .btn-a {
        &:hover {
            
            opacity: 0.7;
            
        }
    }
    
}


.dropdown-usermenu a:hover {
    color: #2200e0 !important;
   
}

.btn-a-2 {
    width: 120px;

}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background: rgb(114,0,175);
    background: linear-gradient(170deg, rgba(114,0,175,1) 0%, rgba(0,1,161,1) 100%); 
}

 
.flex-container {
    display: flex;
    justify-content: center;
    align-items:center;
    background-color: #ffffff;
}
  
.flex-container-new {
    display: flex;
    justify-content: center;
    align-items:center;
}

.nav-pills .nav-link {  
    background-color: #f7f7f7;
    border: none;
}

.b-rank {
    color: #00444b !important;
    margin-top: 20px;
    width: 120px;
    margin-bottom: 10px;
    max-width: 304px !important;
    height: 64px !important;
    background: #c7f30000 !important;
    border-radius: 2px !important;
    border-color: #000000;
    font-weight: 600 !important;
    text-align: center !important;
    outline: none;
    font-size: 20px !important;
    /* font-family: "Inter", sans-serif !important; */  
}

.btn-table-w {
    color: #00444b !important;
    margin-top: 20px;
    width: 150px;
    margin-bottom: 10px;
    max-width: 304px !important;
    height: 64px !important;
    background: #c7f30000 !important;
    border-radius: 2px !important;
    border-color: #000000;
    font-weight: 600 !important;
    text-align: center !important;
    outline: none;
    font-size: 20px !important;
    /* font-family: "Inter", sans-serif !important; */
}

.btn-table {
    color: #00444b !important; 
    margin-top: 20px;
    margin-bottom: 10px;
    width: 150px;
    max-width: 280px !important;
    height: 65px !important;
    background: #C7F300!important;
    border-radius: 2px !important;
    border-color: #00000000;
    font-weight: 600 !important;
    text-align: center !important;
    outline: none;
    font-size: 20px !important;
    /* font-family: "Inter", sans-serif !important; */
   
    &:hover {
      background-color: #b3db00 !important;
    }
}



.btn-header {
    color: #00444b !important; 
    margin-top: 20px;
    margin-bottom: 10px;
    max-width: 280px !important;
    height: 65px !important;
    background: #C7F300!important;
    border-radius: 2px !important;
    border-color: #00000000;
    font-weight: 600 !important;
    text-align: center !important;
    outline: none;
    font-size: 20px !important;
    /* font-family: "Inter", sans-serif !important; */
   
    &:hover {
      background-color: #b3db00 !important;
    }
}

@media only screen and (min-width: 340px) and (max-width: 767px) {
    .img-fit { 
        margin-top: 10px;
        width: 340px;
    }

}


@media only screen and (min-width: 1000px) {
    .img-fit { 
         
        position: absolute;
        bottom: 0px;
    } 
}


@media only screen and (min-width: 766px) and (max-width: 1000px) {
    .img-fit { 
        width: 640px;
    }
}

@media (max-width: 340px) {

    .img-fit { 
        margin-top: 10px;
        width: 250px;
    }

    .title-s1-w{
        font-size: 24px!important;
    }
    
}

@media (max-width: 600px) {

    .lining {
        width: 220px !important;
    }


    .main-header {
        height: 80px;
    }

    .tomorrow-bold {
        font-size: 45px;
        line-height: 60px !important; 
    }

    .tmr-green {
        font-size: 45px !important;
        line-height: 60px !important;
    }

    .sub-head {
        font-size: 24px !important;
    }
    
    .sub-head-w {
        font-size: 28px !important;
    }
    
    
}

.main-header {
    height: 80px;
}

.title-s1{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #181818;
    padding-top: 25px;
    font-size: 28px;
    padding-bottom: 25px;
}

.title-s1-w{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #5f5f5f;
    padding-top: 25px;
    font-size: 18px;
     
}

.title-s3{
    font-family: "Inter", sans-serif;
    font-style: normal;
    color: #414141; 
    font-weight: 600;
}

.bg-s1 {
    display: flex;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-p{
    background-color: #a2abff;
    padding-top: 30px;
    padding-bottom: 60px;
}
 

.row-border {
    border-style: solid none none none;
    border-top-width: 1px;
    border-top-color: rgb(255, 255, 255);
    width: 100%;
}

.sub-head {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #C9FF57;
    font-size: 34px;
}

.sub-head-w {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    font-size: 38px;
}

.sub-days {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #C9FF57;
    font-size: 16px;
}

.container-max {
    width: 100% !important;
}

.container-w {
    max-width: 700px;
    margin: auto;
}


.row {
    margin-left: 0px !important ;
    margin-right: 0px !important ;
}

@media (min-width: 1600px) { 
.container {
    max-width: 1300px;
}
}


@media (min-width: 1000px) {  
    .nav-link.active {
        border-width: 2px;
        font-weight: 700;
        color: #495057;
        background-color: #fff;
        border-color: #ffffff #ffffff #0082ff !important;
    }
    
    .nav-tabs .nav-link { 
        color: #4771ae;
        background-color: #fcfcfc;
        background-color: đ;
        border: 1px solid white;
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem;
    }
    
    }


.container-profile {
    /* max-width: 1200px; */
}

.profile-clothing-box {
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}

.white-bg {
    background: #ffffff;
}
.gray-bg {
    background: #f5f9fb;
}
.gray-bg {
    background: #f7f7fd;
}
.white-bg {
    background: #fff;
}
.black-bg {
    background: #16161a;
}
.theme-bg {
    background: #be9278;
}
.brand-bg {
    background: #f1f4fa;
}
.testimonial-bg {
    background: #f9fafc;
}
.white-color {
    color: #fff;
}
.black-color {
    color: #16161a;
}
.theme-color {
    color: #be9278;
}


 .btn-success {
    --bs-btn-color: #00703c !important;
    --bs-btn-bg: #dcfad8 !important;
    --bs-btn-border-color: #198754 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #07741b !important;
    --bs-btn-hover-border-color: #146c43 !important;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}


.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgb(1, 122, 146) !important;
}



.remove-border-radious {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.tab-profile-wrapper  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #0d6efd;
    background-color: #deecff;
    border-color: #0d6efd;
}

.tab-profile-wrapper .nav-tabs .nav-link {
     margin-bottom: calc(-1* var(--bs-nav-tabs-border-width)); 
     border: none; 
    
}

@media (min-width: 600px) {  
    .tab-profile-wrapper .nav-tabs .nav-link { 
        width: 240px;
   }
}

.bg-light-blue {
    background-color: #eeeeff !important;
    border-color: #0037ce !important;
     
}

.icon-file-a {
    background-color: #073476;
    padding: 8px; 
    border-radius: 50px;
    margin: 4px;
    &:hover {
        background-color: #2260bd;
    }
}


.profile-category-tabs {
    border: none;
    justify-content: space-between;
}


.profile-category-wrapper .input-group-text{
    background-color: white;
}

.profile-applications-participating {
    min-height: 107px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.ada-button {
        padding-top: 2px;
        background-color: #083846;
        border-color: #c7ff6c00;
        border-style: solid;
        color: #ffffff;
        text-decoration: none;
        display: inline-block;
        width: auto;
        height: 50px;
        border-width: 3px;
        text-align: center;
        border-radius: 2px;
        font-size: 18px;
        font-weight: 600;
}

.profile-edit-modal select {
}

#register_form.disabled,#reset_psw_form.disabled, form.disabled,#edit_form.disabled {
    pointer-events: none;
}
#register_form.disabled input, #edit_form.disabled input {
    background-color: rgb(228, 228, 228);
}
button.disabled {
    pointer-events: none;
}

.profile-wrapper select {
    text-align: left;
}

.gj-datepicker.gj-datepicker-md.gj-unselectable {
    width: 100%;
    height: 40px;
}

.gj-datepicker.gj-datepicker-md.gj-unselectable input {
    height: 40px;
    border-color: #bdbdbd;
    border: 1px solid #ced4da;
}

.btn-login-header-login {
    background-color: #083846 !important;
    border-radius: 50%;
}

.btn-login-header-log-out {
    border-radius: 50%;
}
.btn-login-header-log-out i {
    color:  #083846 !important;
}

input[type="file"] {
    display: none;
}

.social-icon-wrapper {
    background: rgb(131,58,180);
background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}





.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
  }
  .line {
    fill: none;
    stroke: black;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  
  .dropdown-language-mobile  {
    font-size: 15px !important;
    padding: 5px 10px 5px 10px !important;
    height: 40px;
  }

