@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Raleway:wght@500;600;700&display=swap);
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: "Raleway", sans-serif;
  background: #F6F9FC;
}

body.noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.container {
  width: 81%;
  margin: 0 auto;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .container {
    width: 90%;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-indent: 0;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
}

.btn.blue {
  background: #2A2557;
  color: white;
  border: none;
}

.btn.white {
  color: #2A2557;
  background: #E9F8FB;
  border: 1px solid rgba(42, 37, 87, 0.1);
}

.top-header {
  height: 70px;
  width: 100%;
  position: absolute;
  top: 0;
  background: transparent;
  left: 0;
}

.top-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-header .container .logo {
  width: 76px;
}

.top-header .container .logo img {
  width: 100%;
}

.top-header .container .lang-picker {
  height: 40px;
  min-width: 126px;
  max-width: 170px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.875rem;
  color: white;
  padding: 0px 16px;
  position: relative;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
}

.top-header .container .lang-picker:active {
  background: rgba(255, 255, 255, 0.5);
  color: #2A2557;
}

.top-header .container .lang-picker:hover {
  background: rgba(255, 255, 255, 0.5);
}

.top-header .container .lang-picker ion-icon:first-of-type {
  font-size: 1.2rem;
}

.top-header .container .lang-picker .selected-lang {
  font-weight: 600;
  margin: 0 10px;
  max-width: 80px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.top-header .container .lang-picker .languages {
  padding: 10px 0;
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  z-index: 100;
  border-radius: 8px;
  background: white;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
  -webkit-box-shadow: 0px 12px 24px rgba(42, 37, 87, 0.12);
          box-shadow: 0px 12px 24px rgba(42, 37, 87, 0.12);
  overflow: hidden;
  cursor: pointer;
}

.top-header .container .lang-picker .languages.show {
  top: calc(100% + 10px);
  opacity: 1;
  pointer-events: all;
}

.top-header .container .lang-picker .languages li .lang-item {
  display: block;
  padding: 10px 0 10px 10px;
  color: #2A2557;
  max-width: 100%;
  word-wrap: break-word;
  font-weight: 600;
  font-size: 0.87rem;
}

.top-header .container .lang-picker .languages li .lang-item.active {
  background: rgba(42, 37, 87, 0.05);
}

.top-header .container .lang-picker .languages li .lang-item:not(.active):hover {
  background: rgba(42, 37, 87, 0.05);
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 80px 0;
}

footer .top-footer .logo-colored img {
  width: 105px;
}

footer .top-footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .top-footer nav a {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
  color: #2A2557;
  margin-right: 80px;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer .top-footer nav a:last-of-type {
  margin-right: 0px;
}

footer .top-footer nav a:after {
  content: '';
  height: 100%;
  width: 0%;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  border-bottom: 2px solid;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

footer .top-footer nav a:hover::after {
  width: 100%;
  opacity: 1;
}

footer .top-footer .follow-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .top-footer .follow-us .sm-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 134px;
  height: 40px;
  border-radius: 20px;
  color: white;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  margin-right: 20px;
}

footer .top-footer .follow-us .sm-btn ion-icon {
  font-size: 1.125rem;
  margin-left: 5px;
}

footer .top-footer .follow-us .sm-btn:last-of-type {
  margin-right: 0;
}

footer .top-footer .follow-us .sm-btn.twitter {
  background: #2D9CDB;
}

footer .top-footer .follow-us .sm-btn.twitter:hover {
  background: #2786bd;
}

footer .top-footer .follow-us .sm-btn.linkiden {
  background: #0073B1;
}

footer .top-footer .follow-us .sm-btn.linkiden:hover {
  background: #144a69;
}

footer .copyrights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(42, 37, 87, 0.1);
  padding: 40px 0;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: -0.1px;
  color: rgba(42, 37, 87, 0.5);
  letter-spacing: 1px;
}

footer .copyrights a {
    margin-left: 8px;
    color: #1B7BEB;
}
@media screen and (max-width: 850px) {
  footer {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  footer .top-footer {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding-bottom: 40px;
  }
  footer .top-footer .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 30px 0;
  }
  footer .top-footer .nav a {
    margin: 5px 0;
  }
  footer .top-footer .follow-us {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  footer .top-footer .follow-us .sm-btn {
    margin: 0 0 10px 0;
  }
}

.section-mt {
  margin-top: 120px;
}

.main-content {
  width: 100%;
  background: white;
  padding-bottom: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.main-content .hero-section {
  height: 110%;
  background-image: url("../assets/hero-bg.svg");
  background-size: cover;
  padding-top: 180px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}

.main-content .hero-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .hero-section .container .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  color: white;
  font-size: 1rem;
  padding-right: 10px;
}

.main-content .hero-section .container .hero-text span {
  font-style: normal;
  font-weight: 600;
  font-size: 2.3em;
  line-height: 39px;
  letter-spacing: -0.01em;
}

.main-content .hero-section .container .hero-text h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 6.25em;
  line-height: 102px;
  letter-spacing: -0.01em;
}

.main-content .hero-section .container .hero-text p {
  font-style: normal;
  font-weight: 500;
  font-size: 1.5em;
  margin-top: 45px;
  line-height: 38px;
  padding-right: 55px;
}

.main-content .hero-section .container .hero-text p strong {
  font-weight: 700;
}

.main-content .hero-section .container .hero-form {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .hero-section .container .hero-form .form-container {
  position: relative;
  z-index: 1;
}

.main-content .hero-section .container .hero-form .form-container:before {
  content: "";
  height: 150px;
  width: 150px;
  position: absolute;
  background-image: url("../assets/hero-shapes-1.svg");
  background-size: cover;
  background-position: center;
  top: -30px;
  left: -30px;
}

.main-content .hero-section .container .hero-form .form-container:after {
  content: "";
  height: 200px;
  width: 224px;
  position: absolute;
  background-image: url("../assets/hero-shapes-2.svg");
  background-size: cover;
  background-position: center;
  bottom: -70px;
  right: -30px;
  z-index: -3;
}

.main-content .hero-section .container .hero-form .form-container form {
  width: 100%;
  max-width: 580px;
  border-radius: 12px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 32px 100px rgba(42, 37, 87, 0.12);
          box-shadow: 0px 32px 100px rgba(42, 37, 87, 0.12);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
}

.main-content .hero-section .container .hero-form .form-container form .error {
  background: #fb2049;
  color: white;
  padding: 10px 25px;
  margin-bottom: 11px;
  list-style: circle;
}

.main-content .hero-section .container .hero-form .form-container form .error li {
  font-size: 0.8rem;
  line-height: 15px;
  color: white;
  margin-bottom: 5px;
}

.main-content .hero-section .container .hero-form .form-container form input {
  width: 100%;
  max-width: 550px;
  font-size: 0.875rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  height: 55px;
  text-indent: 15px;
  border: none;
  border-radius: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 1px solid #E9F8FB;
}

.main-content .hero-section .container .hero-form .form-container form input:focus {
  border: 1px solid #FCB045;
}

.main-content .hero-section .container .hero-form .form-container form input:focus::-webkit-input-placeholder {
  color: #2A2557;
}

.main-content .hero-section .container .hero-form .form-container form input:focus:-ms-input-placeholder {
  color: #2A2557;
}

.main-content .hero-section .container .hero-form .form-container form input:focus::-ms-input-placeholder {
  color: #2A2557;
}

.main-content .hero-section .container .hero-form .form-container form input:focus::placeholder {
  color: #2A2557;
}

.main-content .hero-section .container .hero-form .form-container form input::-webkit-input-placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .hero-section .container .hero-form .form-container form input:-ms-input-placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .hero-section .container .hero-form .form-container form input::-ms-input-placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .hero-section .container .hero-form .form-container form input::placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .hero-section .container .hero-form .form-container form label {
  font-size: 1.5rem;
  color: #2A2557;
  font-weight: 600;
  margin-bottom: 18px;
}

.main-content .hero-section .container .hero-form .form-container form .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.main-content .hero-section .container .hero-form .form-container form .options {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .hero-section .container .hero-form .form-container form .options label {
  margin-bottom: 18px;
}

.main-content .hero-section .container .hero-form .form-container form .options .options-container {
  max-height: 290px;
  overflow-y: auto;
}

.main-content .hero-section .container .hero-form .form-container form .options .options-container input {
  margin-bottom: 18px;
}

.main-content .hero-section .container .hero-form .form-container form .form-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .hero-section .container .hero-form .form-container form .form-controls .btn {
  height: 65px;
  width: 47%;
  text-indent: 0;
}

@media screen and (max-width: 1140px) {
  .main-content .hero-section .container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .main-content .hero-section .container .hero-text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .main-content .hero-section .container .hero-text p {
    text-align: center;
    padding-right: 0;
  }
  .main-content .hero-section .container .hero-form {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  .main-content .hero-section .container .hero-text {
    font-size: 0.8rem;
  }
  .main-content .hero-section .container .hero-text p {
    margin-top: 4vw;
    line-height: 30px;
  }
  .main-content .hero-section .container .hero-form .form-container:before {
    left: 0;
  }
  .main-content .hero-section .container .hero-form .form-container:after {
    right: 0;
  }
  .main-content .hero-section .container .hero-form .form-container form {
    padding: 40px 20px;
  }
  .main-content .hero-section .container .hero-form .form-container form label {
    font-size: 1rem;
  }
  .main-content .hero-section .container .hero-form .form-container form .form-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .main-content .hero-section .container .hero-form .form-container form .form-controls .btn {
    width: 100%;
  }
}

.main-content .polls-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .polls-group.recent .container .section-body:before {
  left: -30px;
}

@media screen and (max-width: 600px) {
  .main-content .polls-group.recent .container .section-body:before {
    left: 0;
  }
}

.main-content .polls-group.popular .container .section-body:before {
  right: -30px;
}

@media screen and (max-width: 600px) {
  .main-content .polls-group.popular .container .section-body:before {
    right: 0;
  }
}

.main-content .polls-group .container .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .polls-group .container .section-title .title-icon {
  height: 48px;
  width: 48px;
}

.main-content .polls-group .container .section-title .title {
  font-style: normal;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  color: #2A2557;
  text-transform: capitalize;
}

.main-content .polls-group .container .section-body {
  position: relative;
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .main-content .polls-group .container .section-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-content .polls-group .container .section-body .card {
    margin-right: 10px;
  }
}

.main-content .polls-group .container .section-body:before {
  content: "";
  height: 158px;
  background-image: url("../assets/section-shapes.svg");
  width: 107px;
  position: absolute;
  display: block;
  background-size: cover;
  background-position: center;
  top: -30px;
}

.main-content .polls-group .container .section-body .card {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 23.6%;
  height: 325px;
  min-width: 258px;
  background: white;
  border: 1px solid rgba(42, 37, 87, 0.14);
  border-radius: 12px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-top: 65px;
  padding: 32px 48px 32px 24px;
  overflow: hidden;
  cursor: pointer;
}

@media screen and (max-width: 661) {
  .main-content .polls-group .container .section-body .card {
    margin-top: 25px;
  }
}

.main-content .polls-group .container .section-body .card .poll-time {
  font-style: normal;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  margin-bottom: 25px;
  color: #9b51e0;
}

.main-content .polls-group .container .section-body .card .poll-title {
  font-family: Raleway;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 27px;
  width: 100%;
  color: #2A2557;
  margin-bottom: 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 108px;
  display: -webkit-box;
  word-break: break-word;
}

.main-content .polls-group .container .section-body .card .poll-participants {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: Raleway;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 24px;
  color: rgba(42, 37, 87, 0.5);
  margin-bottom: 25px;
}

.main-content .polls-group .container .section-body .card .poll-participants strong {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.main-content .polls-group .container .section-body .card .view {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: white;
  font-size: 0.875rem;
  background: #2A2557;
  width: 84px;
  height: 32px;
  background: #2a2557;
  border-radius: 8px;
  text-align: center;
  line-height: 32px;
}

.main-content .polls-group .container .section-body .card.ad {
  height: 321px;
}

.main-content .polls-group .container .section-body .card:not(.ad):hover {
  background: #2a2557;
  -webkit-box-shadow: 0px 18px 41px rgba(42, 37, 87, 0.4);
          box-shadow: 0px 18px 41px rgba(42, 37, 87, 0.4);
}

.main-content .polls-group .container .section-body .card:not(.ad):hover .poll-title {
  color: white;
}

.main-content .polls-group .container .section-body .card:not(.ad):hover .poll-participants {
  color: rgba(255, 255, 255, 0.5);
}

.main-content .polls-group .container .section-body .card:not(.ad):hover .view {
  background: rgba(255, 255, 255, 0.1);
}

.main-content .ad-banner {
  height: 250px;
  display: none;
}

.main-content .ad-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid rgba(42, 37, 87, 0.1);
}

.main-content .ad-banner .container h1 {
  font-size: 3rem;
  color: rgba(42, 37, 87, 0.3);
}

.main-content .vote-section {
  background-image: url("../assets/hero-bg.svg");
  background-size: cover;
  padding-top: 180px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
}

.main-content .vote-section .link-copy-modal {
  top: 0%;
  left: 0%;
  z-index: 999;
  height: 100%;
  width: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.301);
  display: none;
}

.main-content .vote-section .link-copy-modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .vote-section .link-copy-modal .link-container {
  max-width: 500px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .vote-section .link-copy-modal .link-container header {
  background: #E9F8FB;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .vote-section .link-copy-modal .link-container header h1 {
  color: #2A2557;
}

.main-content .vote-section .link-copy-modal .link-container header .close-link-modal {
  cursor: pointer;
}

.main-content .vote-section .link-copy-modal .link-container header .close-link-modal ion-icon {
  font-size: 1.3rem;
}

.main-content .vote-section .link-copy-modal .link-container .link-body {
  padding: 30px 30px 20px 30px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input {
  width: 100%;
  font-size: 0.875rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  height: 55px;
  text-indent: 15px;
  border: none;
  border-radius: 8px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 1px solid #E9F8FB;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input:focus {
  border: 1px solid #FCB045;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input:focus::-webkit-input-placeholder {
  color: #2A2557;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input:focus:-ms-input-placeholder {
  color: #2A2557;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input:focus::-ms-input-placeholder {
  color: #2A2557;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input:focus::placeholder {
  color: #2A2557;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input::-webkit-input-placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input:-ms-input-placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input::-ms-input-placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .vote-section .link-copy-modal .link-container .link-body input::placeholder {
  color: rgba(42, 37, 87, 0.6);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .vote-section .link-copy-modal .link-container .link-body .modal-copy-button {
  padding: 14px 25px;
}

.main-content .vote-section .link-copy-modal .link-container .link-body .modal-copy-button ion-icon {
  font-size: 1.25rem;
  margin-right: 10px;
}

.main-content .vote-section .container .linkCopied {
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  position: fixed;
  z-index: 1000;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 0;
  visibility:hidden;
  pointer-events: none;
  bottom: 5vh;
  left: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.main-content .vote-section .container .linkCopied ion-icon {
  margin-right: 10px;
  font-size: 1.3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.main-content .vote-section .container .linkCopied.show {
  opacity: 1;
  visibility:visible;
  pointer-events: none;
  top: 15;
}

.main-content .vote-section .container .form-container {
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0px 32px 100px rgba(42, 37, 87, 0.12);
          box-shadow: 0px 32px 100px rgba(42, 37, 87, 0.12);
}

.main-content .vote-section .container .form-container header {
  border-radius: 16px 16px 0px 0px;
  position: relative;
  z-index: 10;
  background: -webkit-gradient(linear, left top, right top, from(#833ab4), color-stop(50%, #fd1d1d), to(#fcb045));
  background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.main-content .vote-section .container .form-container header .overlay {
  border-radius: 16px 16px 0px 0px;
  min-height: 152px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(9px);
          backdrop-filter: blur(9px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 50px;
}

.main-content .vote-section .container .form-container header .overlay h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: #2A2557;
  max-height: 100%;
  overflow: auto;
  padding: 16px 0;
}

.main-content .vote-section .container .form-container header .overlay .share {
  position: relative;
}

.main-content .vote-section .container .form-container header .overlay .share .share-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  color: white;
  font-size: 1.5rem;
  -webkit-box-shadow: 0px 4px 6px rgba(128, 1, 253, 0.16);
          box-shadow: 0px 4px 6px rgba(128, 1, 253, 0.16);
  cursor: pointer;
  background: -webkit-gradient(linear, left top, left bottom, from(#c232f7), to(#7e00fd));
  background: linear-gradient(180deg, #c232f7 0%, #7e00fd 100%);
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu {
  background: #ffffff;
  -webkit-box-shadow: 0px 12px 24px rgba(42, 37, 87, 0.12);
          box-shadow: 0px 12px 24px rgba(42, 37, 87, 0.12);
  border-radius: 8px;
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 17px 0;
  position: absolute;
  right: 0;
  top: -10px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu.show {
  top: 115%;
  opacity: 1;
  pointer-events: all;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 10px 15px;
  cursor: pointer;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li span {
  font-weight: 600;
  color: #2A2557;
  font-size: 0.875rem;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li ion-icon {
  opacity: 0.5;
  color: black;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li:hover {
  background: rgba(42, 37, 87, 0.05);
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy-embed span {
  color: black;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.share-on {
  color: rgba(42, 37, 87, 0.4);
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.share-on:hover {
  background: white;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy {
  margin-bottom: 10px;
  padding: 5px 0;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy:active {
  background: rgba(0, 0, 0, 0.1);
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy:hover {
  background: rgba(0, 0, 0, 0.1);
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy .copy-link {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy .copy-link strong {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 16px;
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy .copy-link small {
  font-size: 0.625rem;
  font-weight: 600;
  max-width: 102px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(42, 37, 87, 0.5);
}

.main-content .vote-section .container .form-container header .overlay .share .share-menu li.copy .copy-button {
  padding-right: 15px;
  opacity: 0.8;
  font-size: 1.2rem;
}

.main-content .vote-section .container .form-container form {
  padding: 35px 50px;
}

.main-content .vote-section .container .form-container form .input-group {
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  color: #2A2557;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
  flex-wrap: nowrap;
  align-items: center;
}

.main-content .vote-section .container .form-container form .input-group .checkmark {
  position: relative;
  width: 24px;
  height: 24px;
  background: rgba(42, 37, 87, 0.08);
  border: 1px solid rgba(42, 37, 87, 0.16);
  border-radius: 6px;
  margin-right: 15px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  text-transform: capitalize;
  flex-shrink:0;
}

.main-content .vote-section .container .form-container form .input-group .checkmark input {
  opacity: 0;
  pointer-events: none;
}

.main-content .vote-section .container .form-container form .input-group .checkmark ion-icon {
  position: absolute;
  opacity: 0;
  top: 50%;
  font-size: 1.3rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.main-content .vote-section .container .form-container form .input-group .checkmark.checked {
  background: #7e00fd;
}

.main-content .vote-section .container .form-container form .input-group .checkmark.checked ion-icon {
  color: white;
  opacity: 1;
}

.main-content .vote-section .container .form-container form .input-group:last-of-type {
  margin-bottom: 0;
}

.main-content .vote-section .container .form-container form .form-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-content .vote-section .container .form-container form .form-controls .btn {
  padding: 0 30px;
  height: 64px;
  border-radius: 12px;
}

.main-content .vote-section .container .form-container form .form-controls .btn.blue {
  margin-right: 10px;
}

.main-content .vote-section .container .form-container form .form-controls .btn.white {
  display: block;
  line-height: 64px;
}

.main-content .vote-section .container .form-container form .accept-term {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  color: #2A2557;
  margin-top: 20px;
  line-height: 25px;
}

.main-content .vote-section .container .form-container form .accept-term a {
  color: #1B7BEB;
}

.main-content .vote-section .container .form-container form .accept-term a:hover {
  text-decoration: underline;
}

.main-content .vote-section .container .form-container .poll-results {
  padding: 35px 50px;
  list-style: none;
  background: white;
}

.main-content .vote-section .container .form-container .poll-results .result {
  width: 100%;
  margin-bottom: 15px;
  min-height: 56px;
  background: #f6f9fc;
  border-radius: 8px;
  padding: 0 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: nowrap;
  position: relative;
}

.main-content .vote-section .container .form-container .poll-results .result:last-of-type {
  margin-bottom: 0px;
}

.main-content .vote-section .container .form-container .poll-results .result .pourcentage,
.main-content .vote-section .container .form-container .poll-results .result .title {
  z-index: 1;
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  color: #2A2557;
}

.main-content .vote-section .container .form-container .poll-results .result .bar {
  width: 30%;
  background: #56ccf2;
  opacity: 0.3;
  height: 100%;
  border-radius: 8px;
  z-index: 0;
  top: 0;
  left: 0;
  position: absolute;
}

.main-content .vote-section .container .form-container .controls {
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 50px 40px 50px;
  border-radius: 16px;
}

.main-content .vote-section .container .form-container .controls .btn {
  width: 150px;
  height: 64px;
  margin-right: 20px;
}

@media screen and (max-width: 550px) {
  .main-content .vote-section .container .form-container header .overlay {
    padding: 0 25px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .main-content .vote-section .container .form-container header .overlay h1 {
    margin-right: 20px;
    font-size: 1.2rem;
  }
  .main-content .vote-section .container .form-container form {
    padding: 25px;
  }
  .main-content .vote-section .container .form-container form .form-controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-content .vote-section .container .form-container form .form-controls .btn {
    width: 100%;
  }
  .main-content .vote-section .container .form-container .poll-results {
    padding: 25px;
  }
  .main-content .vote-section .container .form-container .controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-content .vote-section .container .form-container .controls .btn {
    width: 100%;
  }
}

.main-content {
  padding-bottom: 100px;
  background: white;
}

.main-content .terms-section .container {
  line-height: 31px;
  padding: 90px 0 20px 0;
  margin-bottom: 30px;
}

.main-content .terms-section .container h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .main-content {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

/*! ----------------------------------- Cookie Popup start ----------------------------------*/
.cookie-popup {
  position: fixed;
  z-index: 99;
  background: white;
  bottom: 32px;
  left: 32px;
  max-width: 336px;
  width: 90%;
  border-radius: 8px;
  -webkit-box-shadow: 0 11px 32px -5px rgba(54, 61, 77, 0.15) !important;
          box-shadow: 0 11px 32px -5px rgba(54, 61, 77, 0.15) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.cookie-popup.hide {
  bottom: -30px;
  opacity: 0;
  pointer-events: none;
}

.cookie-popup .popup-header {
  padding: 5px 10px;
}

.cookie-popup .popup-header .close-cookie {
  float: right;
  padding: 5px;
  cursor: pointer;
}

.cookie-popup .popup-header .close-cookie ion-icon {
  font-size: 1.24rem;
  color: rgba(42, 37, 87, 0.5);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.cookie-popup .popup-header .close-cookie:hover ion-icon {
  color: #2a2557;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.cookie-popup .popup-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: none;
      -ms-flex-pack: none;
          justify-content: none;
  -webkit-box-align: none;
      -ms-flex-align: none;
          align-items: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 40px 40px 40px;
  position: relative;
}

.cookie-popup .popup-body > h1 {
  font-weight: 800;
  padding-bottom: 20px;
  color: #2A2557;
  font-size: 1.375rem;
}

.cookie-popup .popup-body > p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 25px;
}

.cookie-popup .popup-body > p a {
  color: #1B7BEB;
}

.cookie-popup .popup-body > p a:hover {
  text-decoration: underline;
}

.cookie-popup .popup-body .cookie-controls button {
  padding: 15px 23px;
  border: none;
  border-radius: 6px !important;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.cookie-popup .popup-body .cookie-controls .accept-cookie {
  background: #8939ae !important;
  color: white !important;
  margin: 6px 20px 6px 6px !important;
}

.cookie-popup .popup-body .cookie-controls .accept-cookie:hover {
  background: #9840c0 !important;
}

.cookie-popup .popup-body .cookie-controls .deny-cookie {
  background: transparent;
  padding: 0;
  color: rgba(38, 44, 49, 0.3) !important;
}

.cookie-popup .popup-body .cookie-controls .deny-cookie:hover {
  color: rgba(38, 44, 49, 0.9) !important;
}

.cookie-popup .popup-body .accepted-icon {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 170px;
  height: 170px;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  visibility: hidden;
  pointer-events: none;
}

.cookie-popup .popup-body .accepted-icon.show {
  visibility: visible;
  pointer-events: all;
}

.cookie-popup .popup-body .accepted-icon.show .checkmark {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: white;
  stroke-miterlimit: 10;
  margin: 0% auto;
  -webkit-box-shadow: inset 0px 0px 0px rgba(42, 37, 87, 0.1);
          box-shadow: inset 0px 0px 0px rgba(42, 37, 87, 0.1);
  -webkit-animation: fill 0.4s ease-in-out 0.4s forwards,
 scale 0.3s ease-in-out 0.9s both;
          animation: fill 0.4s ease-in-out 0.4s forwards,
 scale 0.3s ease-in-out 0.9s both;
}

.cookie-popup .popup-body .accepted-icon.show .checkmark .checkmark__check {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
          animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.cookie-popup .popup-body .accepted-icon.show .checkmark .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: rgba(42, 37, 87, 0.1);
  fill: none;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
          animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes scale {
  0%,
  100% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
            transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes scale {
  0%,
  100% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1);
            transform: scale3d(1.1, 1.1, 1);
  }
}

@-webkit-keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 400px rgba(42, 37, 87, 0.3);
            box-shadow: inset 0px 0px 0px 400px rgba(42, 37, 87, 0.3);
  }
}

@keyframes fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 400px rgba(42, 37, 87, 0.3);
            box-shadow: inset 0px 0px 0px 400px rgba(42, 37, 87, 0.3);
  }
}

/*! ----------------------------------- Cookie Popup End ----------------------------------*/
