progress {
  width: 100%;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
}
progress {
  height: 8px;
  border: 0px solid gray;
}

progress::-webkit-progress-bar {
  background-color: #ccc;
  border-radius: 30px;
}

.user-profile-container {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.user-profile-container .user-cover {
  width: 100%;
  height: 212px;
  background-color: #2c6961;
  border-radius: 20px;
  background-size: cover;
}
.user-profile-container .user-picture {
  width: 114px;
  height: 114px;
  background-color: #d9d9d9;
  border: 2px solid white;
  border-radius: 50%;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  margin-top: -57px;
  margin-bottom: 8px;
}
.user-profile-container .user-infos h5 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.user-profile-container .user-infos p {
  font-size: 16px;
  margin: 0;
}
.rgnr-tabs {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  display: flex;
  gap: 0;
  align-items: center;
}
.rgnr-tabs .tab-item {
  font-size: 14px;
  font-weight: 500;
  padding: 5px 15px;
  border-bottom: 1px solid #2c696100;
  color: black;
  transition: 0.4s;
}
.rgnr-tabs .tab-item.active {
  color: #2c6961;
  border-bottom: 1px solid #2c6961;
}

.search-form.s-center {
 /* width: fit-content;*/
  margin-left: auto;
  margin-right: auto;
}
.flex-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.flex-columns.columns-2 > div {
  width: calc(50% - 20px);
}

@media screen and (max-width: 768px) {
  .flex-columns.columns-2 > div {
    width: 100% !important;
  }
}

.rgnr-pagination-ctn .pagination .page-numbers {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.2);
}
.rgnr-pagination-ctn .pagination .page-numbers.current {
  background: linear-gradient(#2c6961, #29635b);
  color: white;
  border-color: #2c6961;
  font-weight: 700;
}
.rgnr-pagination-ctn .pagination .page-numbers.current-info {
  color: black;
  font-weight: 700;
}

@keyframes skel_anim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes skel_tsl_anim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.placeholder {
  background-image: linear-gradient(45deg, #e1e1e1, #c7c7c7);
  animation: skel_anim 4s infinite;
  /* transition: .2s; */
  cursor: progress;
  position: relative;
  overflow: hidden;
}
.placeholder::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, #f0f0f000, #f0f0f0ff, #f0f0f000);
  animation: skel_tsl_anim 3s infinite;
}

.d-none {
  display: none !important;
}
.text-center {
  text-align: center;
}
.text-muted {
  color: #999999 !important;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form-check .form-check-input {
  margin-top: 5px;
  width: 16px;
  height: 16px;
}
.form-check .form-check-label {
  color: #999999;
  cursor: pointer;
  transition: 0.3s;
}
.form-check:has(input:checked) .form-check-label {
  color: black;
}
.formcheck-ctn {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-check.form-check-spec .form-check-label {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #dddddd;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  color: #999999;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
  text-align: center;
}
.form-check.form-check-spec:has(input[type="checkbox"]) .form-check-label {
  border-color: #29635b;
  color: #29635b;
}
.form-check.form-check-spec:has(input:checked) .form-check-label {
  background: #2c6961;
  color: white !important;
  border-color: #2c6961;
}
.form-check.form-check-spec .form-check-input {
  display: none !important;
}

.btn-more-content {
  width: 100%;
  padding: 8px 30px;
  background-color: #feeddf;
  border: 1px solid #feeddf;
  border-radius: 30px;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.3s;
}
.btn-more-content:hover {
  background-color: #29635b;
  border-color: #29635b;
  color: white;
}

@keyframes rotate_loader {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.ld-rot {
  animation: rotate_loader 0.5s infinite ease-in-out;
}
.ld-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #00000033;
  border-top-color: #000000;
  border-radius: 50%;
  animation: rotate_loader 0.5s infinite ease-in-out;
}

.ld-loader.primary {
  border: 3px solid #2c695533;
  border-top-color: #2c6955;
}
.ld-loader.x2 {
  width: 40px;
  height: 40px;
  border-width: 6px;
}

.ld-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255);
  opacity: 0.5;
  z-index: 9;
  user-select: none;
  /* pointer-events: none; */
}
.ld-overlay.x2 {
  background-color: rgba(255, 255, 255);
  opacity: 0.6;
}
.ld-overlay.x3 {
  background-color: rgba(255, 255, 255);
  opacity: 0.7;
}
.ld-overlay.x4 {
  background-color: rgba(255, 255, 255);
  opacity: 0.8;
}
.ld-overlay.x5 {
  background-color: rgba(255, 255, 255);
  opacity: 0.95;
}
.ld-overlay.front {
  z-index: 99999 !important;
}

button:disabled {
  opacity: 0.5 !important;
  cursor: default;
}

/** Socials */
.social-share-toolbar {
    width: 100%;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: opacity .5s;
}
.social-share-toolbar.show {
    height: 100%;
    opacity: 1;
}
.social-share-toolbar .social-share-toolbar-content {
    padding: 20px 0;
}
.social-block.s-grid {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.social-block > li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-share-toolbar .social-share-toolbar-content .social-block.s-grid > li {
    display: inline-block;
    float: none;
    margin: 5px;
    padding: 0;
}
.social-share-toolbar .social-share-toolbar-content .social-block.s-grid > li a {
    padding: 8px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    transition: .3s;
}
.social-share-toolbar .social-share-toolbar-content .social-block.s-grid > li a:hover {
    background-color: #555555;
}
.social-share-toolbar input {
    width: 100%;
    padding: 10px;
    color: #999999;
    margin-bottom: 5px;
}
