/* Links */
/* Footer top region */
/* Footer middle region */
/* Footer bottom region */
/* Submit button */
/* Button variant 1 */
/* Button variant 1 - alternative */
/* Button variant 2 */
/* Button variant 2 - alternative*/
/* Box shadow colors */
/* Container colors */
/* Search colors */
/* Menu colors */
/** General **/
/** Mobile **/
/* Navigation colors */
/* @font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Thin.ttf);
  font-weight: 200;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Black.ttf);
  font-weight: 900;
} */
@keyframes load {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  display: block;
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #FF3D00;
  border-bottom-color: var(--bullet_points_color);
  border-radius: 50%;
  margin: 0 auto;
  animation: rotation 1s linear infinite;
}

#react-blog {
  padding: 0 15px;
}
#react-blog .blog-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 35px 0;
}
@media (max-width: 500px) {
  #react-blog .blog-filter {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    margin: 20px 0;
  }
}
#react-blog .blog-filter__search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 48px;
  color: #213B73;
  color: var(--text_main_color);
  border: 1px solid;
  border-color: #CED4DA;
  border-color: var(--text_main_color);
}
#react-blog .blog-filter__search input {
  width: 80%;
  border: none;
  padding: 5px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
#react-blog .blog-filter__search input:focus {
  outline: none;
}
#react-blog .blog-filter__search svg {
  cursor: pointer;
}
#react-blog .blog-filter__rightside {
  margin-left: 30px;
  position: relative;
}
#react-blog .blog-filter__categories {
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 180px;
  height: 48px;
  color: #213B73;
  color: var(--text_main_color);
  border: 1px solid;
  border-color: #213B73;
  border-color: var(--text_main_color);
}
#react-blog .blog-filter__categories .toggle-box__container--toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#react-blog .blog-filter__categories .toggle-box__container--toggle .toggle-btn {
  border: solid #000;
  border-width: 0 2px 2px 0;
  display: inline-block;
  height: 10px;
  width: 10px;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-bottom: 5px;
  cursor: pointer;
}
#react-blog .blog-filter__categories .toggle-box__container--toggle.active .toggle-btn {
  margin-top: 10px;
  transform: rotate(-135deg);
}
#react-blog .blog-filter__tags {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 300px;
  background-color: white;
  overflow: hidden;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
  z-index: 10;
}
#react-blog .blog-filter__tags.opened {
  display: flex;
}
@media (max-width: 768px) {
  #react-blog .blog-filter__tags {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100vw;
    border-radius: 0;
    transition: left 300ms ease;
    box-shadow: none;
    box-shadow: initial;
    z-index: 502;
  }
  #react-blog .blog-filter__tags.opened {
    justify-content: flex-start;
    left: 0;
  }
}
#react-blog .blog-filter__tags--header {
  display: none;
}
@media (max-width: 768px) {
  #react-blog .blog-filter__tags--header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 64px 20px 0;
  }
}
#react-blog .blog-filter__tags--header h4 {
  font-size: 20px;
  margin: 0;
}
#react-blog .blog-filter__tags--header a {
  font-size: 17px;
}
#react-blog .blog-filter__tags--wrapper {
  width: 100%;
  padding: 20px;
}
@media (max-width: 768px) {
  #react-blog .blog-filter__tags--wrapper {
    height: calc(100% - 197px);
    min-height: 0;
    min-height: initial;
    max-height: none;
    max-height: initial;
    padding-top: 24px;
  }
}
#react-blog .blog-filter__tags--wrapper .tags {
  max-height: 310px;
  border-bottom: 1px solid lightgray;
  overflow-y: auto;
}
#react-blog .blog-filter__tags--wrapper .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
}
#react-blog .blog-filter__tags--wrapper .buttons .reset,
#react-blog .blog-filter__tags--wrapper .buttons .submit {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9146AF;
  text-decoration: none;
  padding: 5px;
  border: 0;
  /* &:empty {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    overflow: hidden;
    width: 168px;
    height: 48px;

    &:before {
      content: "";
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      background: linear-gradient(
        to right,
        transparent 0%,
        #fff 50%,
        transparent 100%
      );
      animation: load 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
  } */
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  padding: 10px 25px;
}
#react-blog .blog-filter__tags--wrapper .buttons .reset:disabled,
#react-blog .blog-filter__tags--wrapper .buttons .submit:disabled {
  color: #8F8F8F;
  background-color: white;
  border: 1px solid #E3E3E3;
}
#react-blog .blog-filter__tags--wrapper .buttons .reset:focus,
#react-blog .blog-filter__tags--wrapper .buttons .submit:focus {
  outline: 3px solid #005ecc;
}
#react-blog .blog-filter__tags--wrapper .buttons .reset:hover,
#react-blog .blog-filter__tags--wrapper .buttons .submit:hover {
  color: white;
  background-color: rgba(145, 70, 175, 0.7803921569);
}
@media (max-width: 768px) {
  #react-blog .blog-filter__tags--wrapper .buttons .reset,
  #react-blog .blog-filter__tags--wrapper .buttons .submit {
    height: 42px;
    margin-top: 23px;
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  #react-blog .blog-filter .checklist-item {
    padding: 21px 0;
    border-top: 1px solid #EBEBEB;
  }
}
#react-blog .blog-filter .checklist-item > label {
  display: flex;
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  #react-blog .blog-filter .checklist-item > label {
    margin-bottom: 0;
    font-size: 17px;
  }
}
#react-blog .blog-filter .checklist-item > label .custom-checkbox {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
#react-blog .blog-filter .checklist-item > label .custom-checkbox input {
  height: 18px;
  width: 18px;
  margin-right: 10px;
}
#react-blog .blog-filter .checklist-item > label .custom-checkbox input:checked ~ .checkmark {
  background-color: #9146AF;
  border-color: #9146AF;
}
#react-blog .blog-filter .checklist-item > label .custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
#react-blog .blog-filter .checklist-item > label .custom-checkbox .checkmark {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  display: block;
  background-color: #ffffff;
  border: 1px solid #B0B0B0;
  font-size: 17px;
  color: black;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#react-blog .blog-filter .checklist-item > label .custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #FFF200;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
#react-blog .blog-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px 25px;
}
#react-blog .blog-container .blog-post {
  flex: 0 1 calc(33% - 15px);
  height: 400px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #react-blog .blog-container .blog-post {
    flex: 0 1 calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  #react-blog .blog-container .blog-post {
    flex: 1 1 100%;
  }
}
#react-blog .blog-container .blog-post a {
  text-decoration: none;
}
#react-blog .blog-container .blog-post a:hover .blog-card--image::after, #react-blog .blog-container .blog-post a:focus .blog-card--image::after {
  background-color: var(--footer_link_color);
  opacity: 0.6;
}
#react-blog .blog-container .blog-post a .blog-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
}
#react-blog .blog-container .blog-post a .blog-card--image {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
#react-blog .blog-container .blog-post a .blog-card--image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
  z-index: 2;
}
#react-blog .blog-container .blog-post a .blog-card--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#react-blog .blog-container .blog-post a .blog-card--tag, #react-blog .blog-container .blog-post a .blog-card--date {
  color: white;
  background-color: var(--text_link_color);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding: 2px 15px;
  margin: 0 30px;
  z-index: 6;
}
#react-blog .blog-container .blog-post a .blog-card--title {
  z-index: 6;
}
#react-blog .blog-container .blog-post a .blog-card--title h3 {
  color: white;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  margin: 20px 30px 30px;
}

.load-more-info,
.load-more {
  width: 100%;
  text-align: center;
}

.load-more button {
  cursor: pointer;
  padding: 15px;
  color: #9146AF;
  background-color: white;
  text-decoration: none;
  border: 1px solid #9146AF;
  background-color: #9146AF;
  color: white;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  border: none;
}
.load-more button:focus {
  outline: 1px solid #005ecc;
}
.load-more button:hover {
  background-color: #fdeeee;
}
.load-more button:empty {
  -webkit-mask-image: radial-gradient(white, black);
          mask-image: radial-gradient(white, black);
  position: relative;
  overflow: hidden;
}
.load-more button:empty:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background: linear-gradient(to right, transparent 0%, #fff 50%, transparent 100%);
  animation: load 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.load-more button:hover {
  background-color: rgba(145, 70, 175, 0.7);
}

.layout-item--view .most-popular-blog-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px 25px;
}
.layout-item--view .most-popular-blog-posts .blog-post {
  flex: 0 1 calc(33% - 15px);
  height: 400px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .layout-item--view .most-popular-blog-posts .blog-post {
    flex: 0 1 calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .layout-item--view .most-popular-blog-posts .blog-post {
    flex: 1 1 100%;
  }
}
.layout-item--view .most-popular-blog-posts .blog-post a {
  text-decoration: none;
}
.layout-item--view .most-popular-blog-posts .blog-post a:hover .blog-card--image::after, .layout-item--view .most-popular-blog-posts .blog-post a:focus .blog-card--image::after {
  background-color: var(--footer_link_color);
  opacity: 0.6;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card--image {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card--image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
  z-index: 2;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card--image .media {
  height: 100%;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card--image .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card--date {
  color: white;
  background-color: var(--text_link_color);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  padding: 2px 15px;
  margin: 0 30px;
  z-index: 6;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card--title {
  z-index: 6;
}
.layout-item--view .most-popular-blog-posts .blog-post a .blog-card--title h3 {
  color: white;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  margin: 20px 30px 30px;
}
