/*
	Contents
	---------
	a. Imported fonts
	b. Universal Styles
	1. Header Styles
	2. Banner Styles
	3. Section Styles
	4. Footer Styles
	5. Arrow Styles
	
	#Challenge Page Styles
	6. Challenge Page Section Styles

	#About Page Styles
	7. About Page Section Styles
	
	c. Responsive

*/

/*---Imported fonts Starts---*/
@font-face {
  font-family: "avenirlight";
  src: url("../fonts/avenirlight.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirmedium";
  src: url("../fonts/avenirmedium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirheavy";
  src: url("../fonts/avenirheavy.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirblack";
  src: url("../fonts/avenirblack.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirroman";
  src: url("../fonts/avenirroman.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "avenirbookoblique";
  src: url("../fonts/avenirbookoblique.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/*---Imported fonts Ends---*/

/* root colors*/

:root {
  --primary-color: #1b2025;
  --secondary-color: #fff;
  --third-color: #0c1927;
  --fourth-color: #f6f5ef;
  --fifth-color: #161616;
  --sixth-color: #36313f;
  --seventh-color: #ffd1d1;
  --font-family: "avenirmedium";
  --transparent-BC: rgba(12, 25, 39, 0.95);
}

/* .white-theme {
  --primary-color: #f6f5ef;
  --secondary-color: #000;
  --third-color: #fff;
  --fourth-color: #3d59ab;
  --fifth-color: #1a1d21;
} */

/* root color end */

.tokenop {
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  background-color: var(--third-color) !important;
}

/* Apply the animation to the element */
.glass-animation {
  position: absolute;
  padding-bottom: 25px;
  /* top: 0;
  left: 0; */
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    110deg,
    rgba(12, 25, 39, 0.493) 35.46%,
    rgba(19, 42, 66, 0.459) 70.05%
  );
  backdrop-filter: blur(10px);
  z-index: -1;
  overflow: hidden;
}

@media only screen and (max-width: 1030px) {
  .glass-animation {
    /* width: auto; */
    height: auto;
  }
}

@keyframes animate {
  0% {
    opacity: 1;
    border-radius: 0;
    transform: translateY(0) rotate(0 deg);
  }
  100% {
    opacity: 0;
    border-radius: 50%;
    transform: translateY(-1000px) rotate(720deg);
  }
}

.box {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: -150px;
  animation: animate 25s linear infinite;
}

.glass-animation .box:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.glass-animation .box:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.glass-animation .box:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
  animation-duration: 4s;
}

.glass-animation .box:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 16s;
}

.glass-animation .box:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.glass-animation .box:nth-child(6) {
  right: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.glass-animation .box:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.glass-animation .box:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 16s;
  animation-duration: 145s;
}

.glass-animation .box:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.glass-animation .box:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@media screen and (max-width: 420px) {
  body {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative !important;
    overflow: auto !important;
  }
}
/*---Universal Styles Ends-------------------------------------------------------------------------------------------------------------*/

/* header section start */

/* navmenu */

.token-header-nav {
  margin: 1px;
  display: inline-block;
  justify-content: space-between;
}

.menu {
  border: 0px;
  margin-right: 4px;
  background: none;
}

#tokenmenu {
  width: 24px;
  height: 24px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  font-family: var(--font-family);
  /*background-color: rgba(0,0,0, 0.9);*/
  background: linear-gradient(90deg, #3d59abf0 21.46%, #191970f0 107.05%);
  overflow-x: hidden;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay.open {
  width: 50%;
}

.overlay-content {
  text-decoration: none !important;
  font-size: 28px;
}
.overlay-content:hover {
  text-decoration: none !important;
  font-size: 28px;
}

.overlay a {
  display: block;
  line-height: 2;
  /* color: #f6f5ef; */
  text-decoration: none !important;
  color: #d6d6d6;
}
.overlay a:hover,
.overlay a:focus {
  color: #ffffff;
  text-align: left !important;
  text-decoration: none !important;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 3%;
  font-size: 45px;
}

/* nav menu end  ----------------------------------------------------------------------------------------------------------*/

/* logo */
#logo {
  width: 170px;
  max-width: 100%;
  height: 38px;
}

/* radio toggle end  ----------------------------------------------------------------------------------------------------------*/

/* metamask start */
.aidoos-metamask {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  left: 5px;
}
#metaMaskButton {
  font-family: "avenirmedium";
  text-decoration: none;
  border: 0px;
  background: none;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 590;
}
#metamask-image {
  background: none;
  border: none;
  padding-right: 2px;
  width: 36px;
  height: auto;
}
.metaWrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.metaBox {
  position: absolute;
  top: 11%;
  right: 2%;
  background: rgba(12, 25, 39, 0.75);
  padding: 8px 20px;
  height: auto;
  width: auto;
  text-align: center;
  border-radius: 8px;
}

.metaBoxDetails {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: left;
}

#metamaskConnect {
  background-color: #3d59ab;
  color: #fff;
  width: 211px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "avenirmedium";
  border: 0px;
  border-radius: 6px;
  margin-bottom: 15px;
}
#walletBalance {
  color: var(--fourth-color);
  font-size: 16px;
  width: auto;
  font-family: "avenirheavy";
  height: auto;
}

.dialogWrapperB {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.dialogBoxB {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  height: auto;
  width: auto;
  justify-content: space-between;
  text-align: center;
  display: flex;
  flex-direction: row;
  background: var(--transparent-BC);
  border-radius: 12px;
}

.dialogWrapperC {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.dialogBoxC {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  height: auto;
  width: auto;
  justify-content: space-between;
  text-align: center;
  display: flex;
  flex-direction: row;
  background: var(--transparent-BC);
  border-radius: 12px;
}

.metaMessage {
  font-family: var(--font-family);
  color: var(--fourth-color);
  font-size: 16px;
}

.msgord {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 35px 35px 20px 35px;
}

.btnord {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}

.msgOrd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.metaC {
  padding: 7px 34px;
  background-color: #ffd700;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: "avenirmedium";
}

.metaOK {
  padding: 7px 0px;
  background-color: #ffd700;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: "avenirmedium";
  width: 120px;
}

.dclose {
  border: 0px;
  background: none;
  color: var(--fourth-color);
  position: absolute;
  top: -7px;
  right: 1%;
  font-size: 35px;
}

.dclose:hover {
  color: var(--seventh-color);
}

/* Metamask end  ----------------------------------------------------------------------------------------------------------*/

/* header */
.token-container {
  max-width: none;
  position: relative;
  padding-left: 65px;
  padding-right: 30px;
  justify-content: space-between;
}

.token-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-section {
  /* padding-bottom: 1rem !important; */
  padding-top: 1.5rem !important;
}

.token-heading {
  color: var(--fourth-color);
  text-decoration: none;
  width: 500px;
  font-family: var(--font-family);
  max-width: fit-content;
  font-size: 40px;
  cursor: default;
}

.token-heading2 {
  color: var(--fourth-color);
  text-decoration: none;
  font-family: var(--font-family);
  max-width: fit-content;
  font-size: 22px;
  cursor: default;
}

.token-moto {
  color: var(--fourth-color);
  text-decoration: none;
  width: 740px;
  font-family: var(--font-family);
  font-size: 18px;
  padding-top: 22px;
  cursor: default;
}

/* .typewrite{
  color: var(--fourth-color) !important;
  cursor: default;
  text-decoration: none !important;
  font-family: var(--font-family);
  display: block;
  line-height: 53px;
  font-size: 25px;
  position: fixed;
  margin-bottom: 20px;
}

.typewrite a:hover{
  color: var(--fourth-color) !important;
  cursor: default;
  font-size: 25px !important;
  text-decoration: none !important;
} */

@media screen and (max-width: 420px) {
  #logo {
    width: 140px;
    height: 34px;
  }

  #tokenmenu {
    width: 20px;
    height: 20px;
  }

  .token-container {
    max-width: 420px;
    padding-left: 20px;
    padding-right: 15px;
  }

  #metamask-image {
    width: 30px;
    height: auto;
  }

  #metaMaskButton {
    font-size: 12px;
    font-weight: 400px;
  }
}

@media only screen and (max-width: 1030px) {
  #logo {
    width: 120px;
    height: 30px;
  }

  #tokenmenu {
    width: 18px;
    height: 18px;
  }
  .token-container {
    max-width: 1030px;
    padding-left: 20px;
    padding-right: 15px;
  }

  #metamask-image {
    width: 25px;
    height: auto;
  }

  .metaMaskId {
    color: var(--fourth-color);
  }

  #metaMaskButton {
    font-size: 14px;
    font-weight: 400px;
  }
}
/* Header end  ----------------------------------------------------------------------------------------------------------*/

/* header section end  ----------------------------------------------------------------------------------------------------------*/

/* token-section */
/* token detail section */
.tokenpage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* gap: 10px; */
}

.token-section {
  padding-left: 65px;
  padding-right: 30px;
}

.tokendisplay {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.token-details {
  display: block;
  text-align: left;
  align-self: center;
  max-width: 600px;
  z-index: 999;
}

.token-heading a:hover {
  text-decoration: none !important;
  color: var(--fourth-color);
}

.downarrow {
  margin: 30px;
  height: 120px;
  width: auto;
}

.descpoints {
  font-family: var(--font-family);
  color: var(--secondary-color);
  font-family: var(--font-family);
  line-height: 12px;
  font-size: 14px;
  cursor: default;
  margin-top: 30px;
}

.token-btn {
  margin-top: 22px;
  padding: 10px 40px;
  background-color: #ffd700;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: "avenirmedium";
}

@media screen and (max-width: 420px) {
  .tokendisplay {
    display: flex !important;
    flex-direction: column;
    gap: 85px !important;
    align-items: baseline;
    margin-bottom: 20px;
  }

  .token-section {
    padding-left: 20px !important;
  }

  .token-heading {
    margin-top: 30px;
    font-size: 34px;
    letter-spacing: 2px;
  }

  .token-heading2 {
    margin-top: 10px;
    width: 90vw;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 35px;
    letter-spacing: 1px;
  }

  .typewrite {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .descpoints {
    margin-top: 12px !important;
    width: 97vw !important;
  }

  .descpoints p {
    line-height: 24px !important;
    margin: 0 !important;
    padding-bottom: 10px;
  }

  .token-details {
    align-self: auto !important;
  }

  .token-moto {
    width: 95vw;
    line-height: 32px;
  }
}

@media only screen and (max-width: 1030px) {
  /* Landscape */
  @media (orientation: landscape) {
    .tokendisplay {
      display: flex;
      justify-content: space-between;
      gap: 30px;
    }
    .token-section {
      padding-left: 45px;
      padding-right: 25px;
    }
    .typewrite {
      font-size: 30px;
    }
    .typewrite:hover {
      font-size: 30px;
    }
    .token-heading {
      margin-top: 20px;
      font-size: 32px;
      letter-spacing: 1px;
    }
    .bannerImage {
      max-width: 1020px;
      width: 50%;
    }
  }

  /* Portrait */
  @media (orientation: portrait) {
    body {
      background-size: cover;
      background-repeat: no-repeat;
      position: relative !important;
      overflow: auto !important;
    }

    .tokendisplay {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 15px;
    }
    .token-section {
      padding-left: 45px;
      padding-right: 25px;
    }
    .typewrite {
      font-size: 30px;
    }
    .typewrite:hover {
      font-size: 30px;
    }
    .token-heading {
      margin-top: 30px;
      font-size: 32px;
      letter-spacing: 2px;
    }

    .token-heading2 {
      margin-top: 10px;
      width: 90vw;
      font-size: 30px;
      margin-bottom: 15px;
      line-height: 40px;
      letter-spacing: 1px;
    }

    .bannerImage {
      max-width: 1020px;
      width: 50%;
    }
  }
}

/* token detail section end  ----------------------------------------------------------------------------------------------------------*/

/* dialogwrapper box */
#dialogWrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#dialogBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--transparent-BC);
  padding: 10px 20px;
  height: auto;
  width: auto;
  justify-content: space-between;
  text-align: center;
  display: flex;
  flex-direction: row;
  border-radius: 12px;
}

.token-box-left {
  display: flex;
  flex-direction: column;
  margin: 5px;
  width: 100%;
  margin-right: 10px;
}
.tokenUBL {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.token-title {
  color: var(--fourth-color);
  font-family: "avenirmedium";
  display: flex;
}
#tokenlogo {
  height: 20px;
  width: 25px;
  display: none;
}
.title-text {
  color: var(--fourth-color);
  padding-top: 3px;
  font-size: 16px;
  font-family: "avenirheavy";
}

.tokenconverter {
  min-width: 375px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin: 0px 10px;
}

.currencyconverter {
  max-width: 400px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.form-group {
  margin-bottom: 15px;
}

input[class="email_id"] {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  background-color: var(--third-color);
  border-radius: 8px;
  border: 1px solid var(--fourth-color);
  color: var(--fourth-color);
}

input[class="currencyValue"] {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  background-color: var(--third-color);
  border-radius: 8px;
  border: 1px solid var(--fourth-color);
  color: var(--fourth-color);
  pointer-events: none;
}

select[class="currency"] {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  background-color: var(--third-color);
  border-radius: 8px;
  border: 1px solid var(--fourth-color);
  color: var(--fourth-color);
}

input[class="user_name"] {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  background-color: var(--third-color);
  border-radius: 8px;
  border: 1px solid var(--fourth-color);
  color: var(--fourth-color);
}

input[class="aidoosTokenBox"] {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  background-color: var(--third-color);
  border-radius: 8px;
  border: 1px solid var(--fourth-color);
  color: var(--fourth-color);
  margin-right: 10px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select[class="currency"]:hover,
input:hover {
  border-color: #3d59ab !important;
}

input :focus,
input :active {
  outline: 1 !important;
  box-shadow: none !important;
  border: 1 !important;
  color: #3d59ab !important;
}

#paymentDW {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#paymentDB {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--transparent-BC);
  padding: 20px 40px;
  height: auto;
  width: auto;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  gap: 26px;
}

#paymentDT {
  font-family: var(--font-family);
  color: var(--fourth-color);
  background-color: var(--third-color);
  text-align: center;
  font-size: 16px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-family: "avenirmedium";
  border-radius: 8px;
  border: 1px;
  border-color: #3d59ab !important;
}

input:focus,
input:active {
  border: none !important;
}

#result {
  color: var(--fourth-color);
  display: flex;
  text-align: center;
  margin-left: 10px;
}

#paymentForm {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

select {
  margin: 5px;
}

hr {
  border: 1px;
  border-top: 2px;
  border-color: var(--fourth-color);
}

#cardForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cardform-group {
  margin-bottom: 10px;
}

.cardform-group label {
  display: block;
}

.cardform-group input[type="text"] {
  width: 100%;
  padding: 5px;
  border: 1px;
  border-color: var(--third-color);
  border-radius: 6px;
}

.token-box-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.token-box-right > * {
  margin-bottom: 10px;
}

#token-pay-btn {
  background-color: #ffd700;
  color: #000000;
  padding: 10px 20px;
  font-family: var(--font-family);
  border: 0px;
  border-radius: 8px;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
}
.dialog-box {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-sub-child {
  background-color: #fff;
}
.dialog-close {
  border: 0px;
  background: none;
  color: var(--fourth-color);
  position: absolute;
  top: -7px;
  right: 1%;
  font-size: 35px;
}

.dialog-close:hover {
  color: var(--seventh-color);
  font-size: 35px;
}

.bannerImage {
  width: 50%;
  height: auto;
  z-index: 99;
}

.fixedMenu {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
  padding: 1px;
  width: 100%;
  background-color: rgba(12, 25, 39, 0.95);
  z-index: 99;
}

.centerMenu {
  position: relative;
  text-align: center;
  font-family: var(--font-family);
  margin: 0;
  padding: 1px 0px 10px 0px;
}

.centerMenu ul {
  list-style-type: none;
  display: inline-flex;
  flex-direction: row;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.centerMenu ul li {
  width: 100px;
  height: 20px;
}

.centerMenu ul li:last-child {
  margin-right: 0; /* Remove right margin from the last menu item */
}

#dmenu {
  font-family: "avenirmedium";
  font-size: 14px;
  color: #d7c1e4;
  height: 20px;
}

#dmenu:hover {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 16px !important;
  text-align: center !important;
  height: 20px;
  -webkit-text-stroke-color: #ffffff !important;
  -webkit-text-stroke-width: 0.3px;
  display: inline-flex;
  flex-direction: row;
}

.centerMenu ul li #dmenu.selected {
  color: var(--secondary-color);
  -webkit-text-stroke-color: #ffffff !important;
  -webkit-text-stroke-width: 0.3px;
  font-size: 16px; /* selected font size */
}

@media screen and (max-width: 420px) {
  .tokenconverter {
    min-width: 300px;
  }

  .bannerImage {
    min-width: 100%;
    max-height: 100%;
  }

  .fixedMenu {
    padding-bottom: 10px;
    height: 40px;
  }

  .centerMenu {
    max-width: 420px;
    text-align: center !important;
  }
}

/* dialog wrapper box end ----------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1920px) {
  .downarrow {
    display: none;
  }
  .descpoints {
    margin-top: 35px;
  }
  .bannerImage {
    width: 45% !important;
    height: auto !important;
  }
}

.success-checkmark {
  width: 40px;
  height: 58px;
  margin: 0 auto;
}

.success-checkmark .check-icon {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 2px solid #4caf50;
}

.success-checkmark .check-icon::before {
  top: 6px;
  left: -7px;
  width: 24px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 5px;
  left: 14px;
  width: 44px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: "";
  height: 63px;
  position: absolute;
  background: var(--transparent-BC);
  transform: rotate(-45deg);
}

.success-checkmark .icon-line {
  height: 2px;
  background-color: #4caf50;
  display: block;
  border-radius: 1px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .icon-line.line-tip {
  top: 23px;
  left: 6px;
  width: 13px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .icon-line.line-long {
  top: 19px;
  right: 3px;
  width: 24px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.success-checkmark .icon-circle {
  top: -2px;
  left: -2px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 2px solid rgba(76, 175, 80, 0.5);
}

.success-checkmark .icon-fix {
  top: 4px;
  width: 1px;
  left: 13px;
  z-index: 1;
  height: 32px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: var(--transparent-BC);
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 4px;
    top: 11px;
  }
  54% {
    width: 0;
    left: 4px;
    top: 11px;
  }
  70% {
    width: 25px;
    left: -11px;
    top: 20px;
  }
  84% {
    width: 9px;
    left: 6px;
    top: 26px;
  }
  100% {
    width: 13px;
    left: 5px;
    top: 20px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 20px;
    top: 31px;
  }
  65% {
    width: 0;
    right: 20px;
    top: 31px;
  }
  84% {
    width: 30px;
    right: -7px;
    top: 17px;
  }
  100% {
    width: 24px;
    right: 1px;
    top: 23px;
  }
}
