.info-wrap .btn-primary{
  border-radius: 5px;
}
.toggle-icon{
    float:right;
}


.tabs-responsive li>.toggle-icon{
    display:none;
}
.tabs-responsive li.init>.toggle-icon{
    display:inline-block;
}
.seccion-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 20%;
  padding-left:0px !important;
  overflow: hidden;
  {#  background-color:#ffffff; #} 
  position: relative;
  {#  margin-bottom: 20px; #} 
}
.tabs li.init{
  display:none;
}
.tabs li {
  display: block;
  margin-left: 0px;
  background-image:none !important;
  background-color: #DDE7F4;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 5px 25px;
}
.tabs li a {
  display: block;
  padding: 5px;
  text-decoration: none !important;
}
.tabs li.active, .tabs li.active a{
  background-color:#0024a6;
  color:#fff ;
}
.tabs li.active:hover, .tabs li.active a:hover{
  color:#ffffff;
}
.tabs li a:hover,.tabs li:hover{
  background-color: #0024a6;
  color:#ffffff;
}
.tab_container {
  width: 80%;
  background-color: #ffffff;
  /* border-left: 1px  #0024a6 solid; */
  /* padding:20px; */
  align-self: stretch;
}
.tabs-responsive{display:none;}

.tab_header {
  background-color: var(--primary-color);
  padding: 20px;
  color: white;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-weight: bold;
  
  display: none;
}

.tab_panel {
  padding: 25px 10px;
}

@media screen and (max-width: 576px) {
  .seccion-tabs {
    flex-wrap:wrap;
  }
  .tab_container{
    border:none;
  }
  .tabs{
    display:none;
  }
  .tabs-responsive {
    display:block;
    height: auto;
    margin: 0 auto;
    padding-bottom: 0px;
    padding-right: 0px;
    padding-right: 0px !important;
    position: relative;
    padding-left: 0px !important;
    overflow: hidden;
    width:100%;
  }
  .tabs-responsive li:first-child:after{
    content:'';
    width:100%;
    height:100%;
    position:absolute;
    right:0;
    left:0px;
    top:0px;
    bottom:0px;
    display:inline-block;
  }
  .tabs-responsive li a {
    z-index: 2;
    background: transparent;
    text-decoration:none !important;
  }
  ul.tabs-responsive li:not(.init) {
    display: none ;
    border: none;
    border-bottom: none;
    list-style-type:none;
    padding: 10px 20px;
  }
  ul.tabs-responsive li:not(.init):hover, ul.tabs-responsive li.active:not(.init) {
    background: transparent;
    margin-left: 0px;
    width: 100%;
    background: transparent;
  }
  .tabs-responsive li.init{
    display:block;
    position:relative;
    list-style-type:none;
    padding: 20px !important;
  }
  .tabs-responsive li.init:focus{
    color:transparent;
  }
  .tabs-responsive li{
    background-image:none !important;
    list-style-image:none !important;
  }
  .tabs-responsive li.active{
    display:none !important;
  }
  .tabs-responsive li.active a{
    color:#fff !important;
    text-decoration:none !important;
  }
  .tabs-responsive li.init>.toggle-icon {
    /*display:flex;*/
  }
  a#submit { z-index: 1; }
  .row-fluid{display:block;}
  .row-fluid .span6{
    width:100%;
  }
  .tabs-responsive li.init{
    border-bottom:none;
    font-weight: bold;
  }
  .tab_container{
    width:100%;
  }
}


.position-item {
  background-color: #f5f5f5;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
}

.position-item:not(:last-child) {
  margin-bottom: 10px; /* Adjust the margin value as needed */
}

.position-title {
  flex: 0 0 45% !important;
  max-width: 45%  !important;
  width: 45%  !important;
}

@media (max-width: 1100px) {
  
  .position-title {
    flex: 0 0 35% !important;
    max-width: 35%  !important;
    width: 35%  !important;
  }
  
}


@media (max-width: 900px) {
  
  .position-title {
    flex: 1 !important;
    max-width: none !important;
    width: 100% !important;
  }
  
}

@media (max-width: 767px) {
  
  .position-item {
    flex-direction: column;
  }
  
}



.position-location,
.position-experience, 
.position-department {
  flex: 1;
}

.t-bold {
  font-weight: bold;
}

.t-light {
  color: #bebdc4;
  font-weight: bold;
}

.tab_panel--2 {
  margin-left: 0 !important;
}








/* TOGGLE */





.toggle {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 5px;
  cursor: pointer;
}

@media (max-width: 800px) {
  
  .toggle {
    display: none;
  }
  
}
.toggle input[type=checkbox] {
  display: none;
}
.toggle label {
  color: #767884;
  position: relative;
  font-weight: bold;
}
.toggle input[type=checkbox] + label::before {
  content: " ";
  display: block;
  height: 18px;
  width: 45px;
  border: 1px solid #f1f5f8;
  border-radius: 9px;
  position: absolute;
  top: 0px;
  left: -65px;
  background: #f1f5f8;
}
.toggle input[type=checkbox] + label::after {
  content: " ";
  display: block;
  height: 30px;
  width: 30px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: -75px;
  background: var(--primary-color);
  transition: all 0.3s ease-in;
}
.toggle input[type=checkbox]:checked + label::after {
  left: -40px;
  transition: all 0.3s ease-in;
}



.info-wrap {
  display: flex;
}

.info-wrap__left,
.info-wrap__right {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  width: 50% !important;
}

@media (max-width: 767px) {
  
  .info-wrap {
    display: flex;
    flex-direction: column;
  }
  

  .info-wrap__left,
  .info-wrap__right {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  
}

.info-wrap__right {
  padding: 0px 45px;
}

.info-wrap__right p {
  font-size: 12px;
  padding-top: 15px;
  padding-bottom: 15px;
}


.tab-cards {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: .7 !important;
}

@media(max-width: 950px) {
  
  .tab-cards {
    flex-direction: column;
  }
  
}

.tab__card {
  text-align: center;
  padding: 20px;
  border-radius: 5px;
}

.tab__card  div {
  font-size: 14px;
}




.swiper-thumbs {
  height: 80px; /* Adjust the height of the thumbnails as needed */
  margin-top: 10px;
  
  overflow: hidden;
  width: 100%;
}

.swiper-thumbs .swiper-wrapper {
  align-items: center;
}

.swiper-thumbs .swiper-slide {
  width: 80px; /* Adjust the width of each thumbnail as needed */
  height: 100%;
  opacity: 0.6; /* Adjust the opacity of inactive thumbnails as needed */
}

.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}



.swiper-slide.main-slide img {
  max-height: 300px;
  object-fit: cover;
  height: 100% !important;
}

.swiper-slide.slide-thumbs img {
  max-height: 100px;
  height: 100% !important;
  object-fit: cover;
}