/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --hue-color: 225;
  --first-color: hsl(var(--hue-color), 48%, 35%);
  --title-color: hsl(var(--hue-color), 48%, 22%);
  --text-color: hsl(var(--hue-color), 12%, 35%);
  --body-color: hsl(var(--hue-color), 49%, 98%);
  --container-color: #FFF;
  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
}

@media screen and (min-width: 968px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

/*=============== LAYOUT ===============*/
.container23 {
  margin-left: 1rem;
  margin-right: 1rem;
}

/*=============== ACCORDION ===============*/
.accordion {
  display: grid;
  align-content: center;
  height: auto;
  width: auto;
  background-color: #fff;
  padding: 30px 0px;
  border-radius: 5px;
}

.accordion h2{
  color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 0px;
    background: linear-gradient(135deg, #fe2cdf, #25F4EE); !important;
}

.accordion__header .bx-plus::before {
  content: '\002B';
    color: white;
    font-size: 23px;
    font-weight: 700;
    position: absolute;
    top: 8px;
    right: 6px;
    font-style: normal;
}


.accordion__container {
  display: grid;
  row-gap: .75rem;
  /* padding: 2rem 1rem; */
  /* background-color: var(--container-color); */
  border-radius: .5rem;
  box-shadow: 0 12px 32px rgba(51, 51, 51, 0.1);
  padding: 15px;
  border: 1px solid black;
  border-radius: 0px 0px 10px 10px !important;
  border-top: none;
}

.accordion__title {
  font-size: 16px;
  color: black;
  font-weight: 700;
  margin-top: .15rem;
  margin-bottom: .15rem;
  transition: .2s;
}

.accordion__header {
  display: flex;
  column-gap: .5rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  cursor: pointer;
  border: 1px solid black;
  background: linear-gradient(135deg, #fe2cdf, #25F4EE);
  border-radius: 5px;
}

.accordion__description {
  padding: 0 1rem 1.25rem 1.5rem;
  font-size: var(--smaller-font-size);
  text-align: justify;
  color: #000 !important;
  border: 1px solid #efcfcf;
        margin: 14px;
        border-radius: 10px;
}

.accordion__icon {
  font-size: 1.5rem;
  height: max-content;
  color: var(--title-color);
  transition: .3s;
}

.accordion__item {
      /* box-shadow: 0 2px 6px rgba(38, 38, 38, 0.1); */
    /* background-color: var(--container-color); */
        /* box-shadow: 0 2px 6px rgba(38, 38, 38, 0.1); */
    /* background-color: var(--container-color); */
    border-radius: 5px;
    position: relative;
    transition: all .25s ease;
    border: 1px solid black;
}

/* .accordion__item::after {
  content: '';
  background-color: #000;
  width: 9px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .25rem 0 0 .25rem;
} */

/* .accordion__item:nth-child(1) {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
} */

/* .accordion__item:nth-child(1)::after {
  background-color: #000000;
} */

/* .accordion__item:nth-child(2) {
  background-color: #f0f0ff;
  color: rgb(107, 47, 47);
}

.accordion__item:nth-child(2)::after {
  background-color: #8a8aff;
}

.accordion__item:nth-child(3) {
  background-color: #f0f0ff;;
  color: rgb(107, 47, 47);
}

.accordion__item:nth-child(3)::after {
  background-color: #8a8aff;
}

.accordion__item:nth-child(4) {
  background-color: #fff7f0;
  color: rgb(107, 47, 47);
}
.accordion__item:nth-child(4)::after {
  background-color: #ff8aa1;
}
.accordion__item:nth-child(5) {
  background-color: #fff0f3;
  color: rgb(107, 47, 47);
}
.accordion__item:nth-child(5)::after {
  background-color: #ff8aa1;
}
.accordion__item:nth-child(6) {
  background-color: #f0faff;
  color: rgb(107, 47, 47);
}

.accordion__item:nth-child(6)::after {
  background-color: #8ad8ff;
}
.accordion__item:nth-child(7) {
  background-color: #fff0f3;
  color: rgb(107, 47, 47);
}

.accordion__item:nth-child(7)::after {
  background-color: #ff8aa1;
}
.accordion__item:nth-child(8) {
  background-color: #f0faff;
  color: rgb(107, 47, 47);
}

.accordion__item:nth-child(8)::after {
  background-color: #8ad8ff;
} */

.accordion__content {
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}

/*Rotate icon and add font weight to titles*/
.accordion-open .accordion__icon {
  transform: rotate(45deg);
  font-size: 27px;
  font-weight: 700;
  position: absolute;
  top: 20px;
  right: -5px;
  color: #fe2c55 !important;
}
.accordion-open .accordion__header .bx-plus::before {
  color: #fe2c55 !important;
}
.accordion__header {
  padding: 20px;
}
/*=============== MEDIA QUERIES ===============*/
/* For medium devices */
@media screen and (min-width: 576px) {
  .accordion__container {
    width: 100%;
    /* padding: 2.5rem 0rem; */
    margin: auto;
    justify-self: center;
  }
  
  .accordion__title {
    padding-right: 3.5rem;
    color: black;
  }
  .accordion__description {
    padding: 0 1rem 1.25rem 1.5rem;
    border: 1px solid #efcfcf;
    margin: 25px;
    border-radius: 10px;
  }
}

/* For large devices */
@media screen and (min-width: 968px) {
  .container23 {
    margin-left: auto;
    margin-right: auto;
  }
}

.relative {
  position: relative;
}

#_gcaptcha_pt {
  padding-bottom: 1em;
}

#paste,
#clear {
  position: relative;
  left: 200px;
  right: 0;
  top: 50px;
  transform: translate(0, -50%);
  right: 8px;
  display: flex;
  align-items: center;
  font-size: 15px;
  z-index: 1;
  padding: 0.6em;
  height: 41px;
  padding: 2px 7px;
  border: 0;
  border-radius: 7px;
}
#paste span,
#clear span {
  color: white;
}

#clear {
  display: none;
}

#paste:hover,
#clear:hover {
  cursor: pointer;
}

#paste svg,
#paste svg {
  margin-right: 5px;
}
@media screen and (min-width:996px) and (max-width:1200px) {
  .st-123{
    left: 324px !important;
} 
 }
@media screen and (min-width:768px) and (max-width:996px) {
  .st-123{
    left: 376px !important;
} 
 }
@media screen and (min-width:520px) and (max-width:768px) {
  .st-123{
    left: 433px !important;
} 
 }
@media screen and (min-width:500px) and (max-width:520px) {
  .st-123{
    left: 399px !important;
} 
 }
@media screen and (min-width:480px) and (max-width:500px) {
  .st-123{
    left: 375px !important;
} 
 }
@media screen and (min-width:430px) and (max-width:480px) {
  .st-123{
    left: 330px !important;
} 
 }
@media screen and (min-width:368px) and (max-width:430px) {
  .st-123{
    left: 266px !important;
} 
 }
@media screen and (min-width:272px) and (max-width:328px) {
  .st-123{
    left: 172px !important;
} 
 }
 @media screen and (min-width:328px) and (max-width:368px) {
  .st-123{
    left: 228px !important;
} 
 }
@media screen and (min-width:200px) and (max-width:272px) {
  .st-123{
    left: 114px !important;
} 
 }
@media screen and (max-width:200px) {
  .st-123{
    left: 74px !important;
} 
 }
 .st-123:hover{
  background-color: green !important;
} 