.mt-4{
  margin-top: 16px;
}
.mt-5{
  margin-top: 20px;
}
.mt-6{
  margin-top: 24px;
}
.mb-4{
  margin-top: 16px;
}
.mb-5{
  margin-top: 20px;
}
.mb-6{
  margin-top: 24px;
}
.ml-4{
  margin-top: 16px;
}
.ml-5{
  margin-top: 20px;
}
.ml-6{
  margin-top: 24px;
}
.mr-4{
  margin-top: 16px;
}
.mr-5{
  margin-top: 20px;
}
.mr-6{
  margin-top: 24px;
}
.g-2{
  gap: 8px
}
.g-3{
  gap: 12px
}
.g-4{
  gap: 16px
}
.g-5{
  gap: 20px
}
.g-6{
  gap: 24px
}
.flex-wrap{
  flex-wrap: wrap !important;
}
.my-toast-container-error{
  position: fixed;
  top: 15px;
  right: 30px;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transform: translateX(150%);
  transition: .6s !important;
}
.my-toast-container-success{
  position: fixed;
  top: 15px;
  right: 30px;
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  transform: translateX(150%);
  transition: .6s !important;
}
#toast-success {
  padding: 12px;
  padding-left: 15px;
  padding-right: 30px;
  border-radius: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #07bc0c;
  color: #fff;
}
#toast-success .toast-icon{
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; 
  background-color: #fff;
  padding: 3px;
}
#toast-success .toast-icon svg{
  width: 100%;
  height: 100%;
  color: #07bc0c;
}
#toast-error {
  padding: 12px;
  padding-left: 15px;
  padding-right: 30px;
  border-radius: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e74c3c;
  color: #fff;
}
#toast-error  .toast-icon{
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; 
  background-color: #fff;
  padding: 3px;
}
#toast-error .toast-icon svg{
  width: 100%;
  height: 100%;
  color: #e74c3c;
}
.award-school-settings {
    position:fixed;
    z-index:180;
    width:50px;
    height:50px;
    display:flex;
    justify-content: center;
    align-items: center;
    fill:#dcd7d7; 
    stroke:inherit;
    transition:all .3s ease;
    top:10px;
    right:10px;
    cursor:pointer;
    box-shadow:0 0 10px 0 rgba(63,66,87,.4);
    border-radius:100%;
    background-color:#2f5b9d;
}
.top-header-thumb-edit1{
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 150;
  color: #fff;
  border-radius: 8px;
  /* opacity: 0; */
  transition: 0.32s;
  cursor: pointer !important;
}
.top-header-thumb-edit{
   position: absolute;
   top: 10px;
   left: 20px;
   z-index: 150;
    background: rgba(255, 255, 255, 0.21);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.8px);
    -webkit-backdrop-filter: blur(8.8px);
   color: #fff;
   border-radius: 8px;
   /* opacity: 0; */
   transition: 0.32s;
   cursor: pointer !important;
}
.top-header-thumb-edit:hover{
  background: rgba(255, 255, 255, 0.3);
}
.edit-someone{
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   width: 100%;
   height: 100%;
   z-index: 100;
   background: rgba(0, 0, 0, 0.2);
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
   opacity: 0;
   transition: 0.2s;
   cursor: pointer;
}
.edit-someone .org-logo{
  /* position: absolute;
  top: 0; */
  z-index: 1000;
  width: 100%;
  height: 100%;
  /* visibility: hidden; */
}
.avatar-thumb:hover .edit-someone{
   opacity: 1;
}
.school-info-modal{
   position: absolute;
   width: inherit;
   height: inherit;
   z-index: 200;
   display: none;
   justify-content: center;
}
.school-info-modal:first-child{
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);  
   z-index: 300;
}
.award-form-container{
  width: calc(100vw - 20%);
  height: 1000px !important;
   position: fixed;
   top: 50%; left: 50%;                      
   transform: translate(-50%, -50%);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: end;
   z-index: 400;
   margin: 32px 0;
   overflow-y: scroll;
}
.award-school-info-form{
    width: clamp(500px, calc(100vw - 80px), 1200px);
    height: clamp(500px, calc(100vh - 80px), calc(100vh - 80px)); 
    background: #fff;
    overflow-y: auto;
    border-radius: 3px;
    position: fixed; 
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.award-form-esc{
  display: flex;
  justify-content: end;
  align-items: start;
   font-size: 30px;
   color: #888da8;
   margin-right: 2rem;
   transform: rotateX(45deg);
   cursor: pointer;
   transition: 0.15s;
}
.award-form-esc:hover{
   color: #676b81;
}

fieldset {
   padding: 0.5rem 3rem;
 }
 
 legend {
   text-transform: uppercase;
   font-size: 0.8em;
   letter-spacing: 0.1rem;
   padding-top: 16px;
   padding-bottom: 3px;
   color: #17a2b8;
 }
 
 input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
 select,
 textarea,
 textarea[type="text"] {
   font-family: inherit;
   border-radius: 4px;
   border: 1px solid var(--color-lightGrey);
   transition: all 0.2s ease;
   /* display: block;
   width: 100%; */
 }
 
 input[type="checkbox"],
 input[type="radio"],
 input[type="range"],
 progress {
   accent-color: var(--color-primary);
 }
 
 select {
   appearance: none;
   background: #f3f3f6 no-repeat 100%;
   background-size: 1ex;
   background-origin: content-box;
   background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
 }

 input:disabled,
 input:disabled:hover,
 button:disabled,
 button:disabled:hover {
   opacity: 0.4;
   cursor: not-allowed;
 }
 
 .grouped {
   display: flex;
 }
 
 .grouped > *:not(:last-child) {
   margin-right: 16px;
 }
 
 .grouped.gapless > * {
   margin: 0 0 0 -1px !important;
   border-radius: 0 !important;
 }
 
 .grouped.gapless > *:first-child {
   margin: 0 !important;
   border-radius: 4px 0 0 4px !important;
 }
 
 .grouped.gapless > *:last-child {
   border-radius: 0 4px 4px 0 !important;
 }
 
 input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]):focus,
 select:focus,
 textarea:focus,
 textarea[type="text"]:focus {
   outline: none;
   border-color: var(--color-primary);
   box-shadow: 0 0 1px var(--color-primary);
 }
 
 input.error:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
 textarea.error {
   border-color: var(--color-error);
 }
 
 input.success:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
 textarea.success {
   border-color: var(--color-success);
 }
 
 [type="checkbox"],
 [type="radio"] {
   width: 2rem;
   height: 1.6rem;
 }
 
 /* BUTTONS */
 
 .button + .button {
   margin-left: 1rem;
 }
 
 .button.secondary {
   background-color: var(--color-grey);
 }
 
 .button.dark {
   background-color: var(--color-darkGrey);
 }
 
 .button.error {
   background-color: var(--color-error);
 }
 
 .button.success {
   background-color: var(--color-success);
 }
 
 .button.outline {
   background-color: transparent;
   border-color: var(--color-lightGrey);
 }
 
 .button.outline.primary {
   border-color: var(--color-primary);
   color: var(--color-primary);
 }
 
 .button.outline.secondary {
   border-color: var(--color-grey);
   color: var(--color-grey);
 }
 
 .button.outline.dark {
   border-color: var(--color-darkGrey);
   color: var(--color-darkGrey);
 }
 
 .button.clear {
   background-color: transparent;
   border-color: transparent;
   color: var(--color-primary);
 }
 
 .button.icon {
   display: inline-flex;
   align-items: center;
 }
 
 .button.icon > img {
   margin-left: 2px;
 }
 
 .button.icon-only {
   padding: 1rem;
 }
 
 .button:active:not(:disabled),
 [type="button"]:active:not(:disabled),
 [type="reset"]:active:not(:disabled),
 [type="submit"]:active:not(:disabled),
 button:active:not(:disabled) {
   transform: scale(0.98);
 }
 
 ::placeholder {
   color: #bdbfc4;
 }
 
 .form__row{
    display: flex;
    gap: 50px;
 }
 .form__item{
    flex: 1;
 }
 .input-border-bottom{
  border-bottom: 1px solid #ccc !important;
 }
 .org-cover-img-label{
  margin: 0 !important;
  display: block;
  padding: 10px 20px;
  cursor: pointer !important;
 }
 .award-form-title{
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 400;
    color: #888da8;
 }
 .form__btn-row{
  display: flex;
  justify-content: start;
  align-items: center;
  margin-left: 3rem;
 }
 .award-form-btn{
   color: #fff;
   background: #19be6b;
   padding: 0;
   padding: 12px 24px;
 }
 .award-form-header{
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 16px;
 }
 .award-form-header > * {
  flex: 1;
 }
.gallery-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.preview-gallery-img{
  height: 220px !important;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.preview-gallery-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-esc{
   font-size: 20px;
   color: #888da8;
   transform: rotateX(45deg) translateX(10px);
   cursor: pointer;
   transition: 0.15s;
}

@media only screen and (max-width: 1024px) {
  .form__row{
    display: block;
  }

  .preview-gallery-img{
    flex-basis: 500px;
    height: 100% !important;
    object-fit: contain;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .preview-gallery-img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    margin-bottom: 16px;
  }
}
.update-textarea{
  display: block; padding: 0 !important; resize: none; height: auto; overflow: hidden; color: #9b9b9b;
}
.update-text{
   color: #9b9b9b;
}
#general-form-2-edit{display: none;}
.org_socialsss{
  display: flex; gap: 10px; align-items: center;
}
.org_facebook svg{ color: #2f5b9d}
.org_twitter svg{ color: #38bff1}
.org_instagram svg{ color: #f74881}

.add-gallery-img-btn{
  display: flex;
  justify-self: center;
  align-items: center;
}
.masked-knight{
  position: relative
}
.add-gallery-overlay{
  visibility: hidden;
  opacity: 0;
  position: absolute; 
  top:0; left: 0; 
  bottom: 0; right: 0;
  width:100%; height: 100%; 
  background: rgba(0,0,0,0.2); 
  display: flex; justify-content: center; align-items: center;
  cursor: pointer;
  transition: .2s;
}
.masked-knight:hover > .add-gallery-overlay{
  visibility: visible;
  opacity: 1;
}
.masked-knight2{
  position: relative
}
.masked-knight2:hover > .add-gallery-overlay{
  visibility: visible;
  opacity: 1;
}
.add-gallery-btn{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ff5e3a;
  fill: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.add-gallery-btn svg{
  width: 15px;
  height: 15px;
}
.xxx{
  position: relative;
}
.xxx:hover .deletexxx{
  opacity: 1; visibility: visible;
}
.deletexxx{
  position: absolute !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255, 1);
  font-size: 18px;
  padding: 0 6px;
  color: #ff0202;
  transform: rotateX(45deg) translateX(-4px) translateY(-10px);
  cursor: pointer;
  transition: 0.15s;
  top: 0; right: 0;
  visibility: hidden; opacity: 0;
  transition: 0.22s;
}
.w-last-video li iframe {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}
.award-video-form{
   position: absolute; 
   top:0; left: 0; right: 0;
   width: 0; background: #fff;
   z-index: 1000;
   visibility: collapse;
   opacity: 0;
   transition: 0.2s;
}
label[name='video-image-label']{
  padding: 0.8rem 1rem; 
  display: block; cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}
label[name='video-image-label'] span{
  background: #6FC276;
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
}
label[name='video-image-label'] span:hover{
  opacity: 0.9;
}
label[name='video-image-label'] + div{
  height: 272px; border-bottom: 1px solid #ccc;
  border-radius: 4px;
}
label[name='video-image-label'] + div:hover{
  border-bottom: 1px solid #6FC276 !important;
}
label[name='video-image-label']:hover + div{
  border-bottom: 1px solid #6FC276 !important;
}
input[name='video-image']{
  background: #6FC276;
}
input[name='video-image'], input[name='video-link'], input[name='video-title']{
  border-bottom: 1px solid #ccc;
}
input[name='video-link']:hover, input[name='video-title']:hover{
  border-bottom: 1px solid #6FC276 !important;
}
input[name='video-btn']{
  color: #fff; border:none !important; background: #6FC276;
}
#preview-video-img{
  padding: 30px;
}
#preview-video-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#video-more{
  position:absolute;
  top:-25px;
  right:25px;
  fill:#fff;
  color:var(--olympus-white-color);
  z-index:100;
  opacity:0;
  transition:all .3s ease;
  padding:0
}
.w-last-video li:hover #video-more{
  opacity:1;
  top:5px
}
.w-last-video #video-more .more-dropdown{
  padding: 5px 20px !important;
}
.w-last-video #video-more .more-dropdown li {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}
.w-last-video #video-more .more-dropdown li:after{
  box-shadow: none !important;
}
.w-last-video #video-more .more-dropdown li:hover{
  box-shadow: none !important;
}
.w-last-video #video-more .more-dropdown li:hover a{
  background: none !important;
  color:#ff5e3a !important;
}
.need-hover-me{
  width: 15px; height: 15px;
  transition: 0.3s;
}
.need-hover-me:hover{
 scale: 1.1;
  fill: #000;
}
#general-location-form-edit{
  display: none;
}
.not-admin{
  display: none !important;
}
.tab-header{
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 10px 0 0;
}
.tab-header h3{
  font-size: 22px;
  font-weight: 500;
}
.news-esc{
  transform: rotateX(45deg);
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.news-esc:hover{
  scale: 1.1;
  color: #000;
}
.post-textarea{
  padding-left: 60px !important;
  min-height: auto !important;
  padding-top: 25px !important;
  overflow: hidden !important; resize: none !important;
  padding-bottom: 50px !important;
  max-height: auto !important;
  height: auto !important;
}
.more-dropdown span {
  padding: 7px 0;
  font-size: 12px;
  color: #515365;
  color: var(--olympus-heading-color);
  display: block;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
}
.more-dropdown span:hover{
  color: #ff5e3a;
}
.liked {
  color: #ff5e3a !important;
  fill: #ff5e3a !important;
}
.org-env::placeholder{
  font-size: 16px !important;
}
.parent-el:hover .child-el{
  opacity: 1;
}
#edit-all:hover{
  fill: #000;
  scale: 1.1;
  transition: 0.15s;
}
.need-hover{
  fill: #000;
  scale: 1.1;
  transition: 0.15s;
}
#edit-surgalt-amjilt{
  color: black;
  cursor: pointer;
}
#org_env_form_container,
#env-image-preview,
#zoomed-map-modal
#surgalt-orcin,
#surgalt-orcin-zurag,
#bidnii-amjilt,
#zoomed-map,
#play-video-modal,
#amjilt-zurag-preview,
#amjilt-login-modal{
  display: none;
}
.org-env::placeholder{
  font-size: 16px !important;
}
.zoomed-map{
  max-height: 100vh !important;
}
.login-modal-container {
  width: 100%;
  height: 46%;
  border-radius: 10px;
}

.login-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}


.login-logo {
  /*width: 100px;*/
  height: 60px;
  background-color: transparent;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: start;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.login-form {
  width: auto;
}

h1 {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: #333;
}

.subtitle {
  color: #666;
  margin-top: 65px; 
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

input {
  width: 100%;
  padding: 0.40rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

input:focus {
  outline: none;
  border-color: #024731;
  box-shadow: 0 0 0 2px rgba(2, 71, 49, 0.1);
}


.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #5c2f91;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 30px;
}

.submit-btn:hover {
  background-color: #8149C4;
}

.login-footer a {
  color: #024731;
  text-decoration: none;
}

.promo-section {
  background-color: white;
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.promo-content {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: fill;
}
.hidden-opacity {
  opacity: 0 !important;
}
.total-teacher::placeholder{
  font-size: 12px;
}
#org_total_teacher, #org_total_student{
  display: none;
}

#fullscreen{
  position:absolute;
  bottom:-25px;
  right:25px;
  fill:#fff;
  color:var(--olympus-white-color);
  z-index:100;
  opacity:0;
  transition:all .3s ease;
  padding:0
}
#back_video_edit{
  display: none;
}

.w-last-video li:hover #fullscreen{
  opacity:1;
  bottom:10px
}
@media only screen and (max-width: 348px) {
  .page-org-vote{
    gap: 10px;
    padding: 8px 14px !important;
    background: #000;
  }
  .page-org-vote p{
    font-size: 14px;
  }
  .page-org-vote svg{
    width: 20px;
    height: 20px;
  }
}
.news-feed-form textarea{
  min-height: auto !important;
}
@media only screen and (max-width: 728px) {
  .award-form-container{
    width: 100% !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 532px) {
  #postUserAvatar{
    display: none;
  }
}
.custom-scrollbar::-webkit-scrollbar {
  width: 3px; 
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #ff5e3a;
  border-radius: 20px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1; 
}