/* Theme Name: TradifyCrypto */

@font-face {
  font-family: "Mona Sans";
  src: url("fonts/MonaSans-Regular.eot");
  src:
    url("fonts/MonaSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/MonaSans-Regular.woff2") format("woff2"),
    url("fonts/MonaSans-Regular.woff") format("woff"),
    url("fonts/MonaSans-Regular.ttf") format("truetype"),
    url("fonts/MonaSans-Regular.svg#MonaSans-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("fonts/MonaSans-ExtraBold.eot");
  src:
    url("fonts/MonaSans-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("fonts/MonaSans-ExtraBold.woff2") format("woff2"),
    url("fonts/MonaSans-ExtraBold.woff") format("woff"),
    url("fonts/MonaSans-ExtraBold.ttf") format("truetype"),
    url("fonts/MonaSans-ExtraBold.svg#MonaSans-ExtraBold") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("fonts/MonaSans-SemiBold.eot");
  src:
    url("fonts/MonaSans-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("fonts/MonaSans-SemiBold.woff2") format("woff2"),
    url("fonts/MonaSans-SemiBold.woff") format("woff"),
    url("fonts/MonaSans-SemiBold.ttf") format("truetype"),
    url("fonts/MonaSans-SemiBold.svg#MonaSans-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("fonts/MonaSansExpanded-Medium.eot");
  src:
    url("fonts/MonaSansExpanded-Medium.eot?#iefix") format("embedded-opentype"),
    url("fonts/MonaSansExpanded-Medium.woff2") format("woff2"),
    url("fonts/MonaSansExpanded-Medium.woff") format("woff"),
    url("fonts/MonaSansExpanded-Medium.ttf") format("truetype"),
    url("fonts/MonaSansExpanded-Medium.svg#MonaSansExpanded-Medium")
      format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("fonts/MonaSansExpanded-Bold.eot");
  src:
    url("fonts/MonaSansExpanded-Bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/MonaSansExpanded-Bold.woff2") format("woff2"),
    url("fonts/MonaSansExpanded-Bold.woff") format("woff"),
    url("fonts/MonaSansExpanded-Bold.ttf") format("truetype"),
    url("fonts/MonaSansExpanded-Bold.svg#MonaSansExpanded-Bold") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Expanded";
  src: url("fonts/MonaSansExpanded-SemiBold.eot");
  src:
    url("fonts/MonaSansExpanded-SemiBold.eot?#iefix")
      format("embedded-opentype"),
    url("fonts/MonaSansExpanded-SemiBold.woff2") format("woff2"),
    url("fonts/MonaSansExpanded-SemiBold.woff") format("woff"),
    url("fonts/MonaSansExpanded-SemiBold.ttf") format("truetype"),
    url("fonts/MonaSansExpanded-SemiBold.svg#MonaSansExpanded-SemiBold")
      format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --my-bg-color: blue;
  --base-font: "Mona Sans", sans-serif;
  --headline-font: "Mona Sans Expanded", sans-serif;
  --black: #000;
  --white: #fff;
  --base-size: 14px;
}
* {
  box-sizing: border-box;
}
:after,
:before {
  pointer-events: none;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--base-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  font-size: var(--base-size);
  line-height: 1.5;
  background-color: var(--black);
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: var(--white);
  font-weight: 700;
  font-family: var(--headline-font);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.title_h1 {
  font-weight: 700;
  font-size: 90px;
  line-height: 1;
}

h2,
.title_h2 {
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
}

h3,
.title_h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #ccc;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #eab71e;
  color: #000000;
  height: 58px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;

  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: #000;
  color: #eab71e;
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/*--custom style--*/
.page-wrapper {
  width: 100%;
  overflow-x: hidden;
}
.wp-sec {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1760px;
  padding: 0 15px;
  position: relative;
  margin: 0 auto;
}
.left-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50dvw;
  z-index: -1;
  background-color: var(--black);
}
.right-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50dvw;
  background-color: var(--black);
  background-image: url(images/bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: cover;
}
.login-sec {
  width: 50%;
  height: 100%;
  padding: 42px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  min-height: 100dvh;
}
.user-summery-sec {
  width: 50%;
  height: 100%;
  padding: 42px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  min-height: 100dvh;
}
.footer {
  height: 56px;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  background-color: var(--black);
}
.login-box {
  margin: 15vh auto auto;
  max-width: 400px;
  width: 100%;
}
.summery-block {
  max-width: 625px;
  width: 100%;
  margin: calc(15vh + 40px) auto auto;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
}
.ft_list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.ft_list a {
  color: #898587;
  font-size: 12px;
}
.ft_list li {
  padding: 0 22px;
  position: relative;
}
.ft_list a:hover {
  color: #ff9408;
  font-size: 12px;
}
.ft_list li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 4px;
  height: 4px;
  background-color: #898587;
  border-radius: 50%;
  margin-right: -2px;
}
.ft_list li:last-child:after {
  content: none;
}

.logo {
  height: 40px;
  display: block;
}
.logo img {
  height: 100%;
  width: auto;
}
.login-header {
  max-width: 80%;
  margin: 0 auto 20px;
  text-align: center;
}
.login-header h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
}

.form-box input[type="email"],
.form-box input[type="password"] {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid #303036;
  border-radius: 6px;
  outline: none;
  height: 40px;
  margin-bottom: 0;
  padding: 10px 12px;
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: none;
}
.form-box input[type="email"]:hover,
.form-box input[type="email"]:focus,
.form-box input[type="password"]:hover,
.form-box input[type="password"]:focus {
  border: 1px solid #545454;
  outline: none;
  box-shadow: none;
}
::placeholder {
  color: #9a9aa3;
  opacity: 1;
}
::-webkit-input-placeholder {
  color: #9a9aa3;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #9a9aa3;
  opacity: 1;
}
.form-box label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.submit-wrapper {
  position: relative;
  margin-top: 20px;
}
.fake-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
}
.fake-submit-inner {
  height: 100%;
  width: 100%;
  background-color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.fake-submit-inner img {
  width: 18px;
}
.form-box input[type="submit"] {
  background: transparent;
  color: var(--white);
  padding: 10px;
  width: 100%;
  position: relative;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
.form-box input[type="submit"]:hover + .fake-submit {
  background-color: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-box input[type="submit"]:hover + .fake-submit .fake-submit-inner {
  background-color: #0d0e10;
  color: var(--white);
  box-shadow: inset 10px 10px 25px 0 rgba(159, 170, 206, 0.1);
}
.sum-box {
  padding: 24px;
  margin: -24px -24px 15px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background-color: #08080a;
  box-shadow: inset 0 0 100px 0 rgba(255, 208, 169, 0.09);
  z-index: 1;
}
.sum-bg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: -1;
}
.sum-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  mask-image: linear-gradient(
    #000 0%,
    #00000080 30%,
    #0003 70%,
    #0000001a 100%
  );
  border: 1px solid #fb923c;
  pointer-events: none;
  z-index: -1;
}
.sum-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}
.sum-header {
  font-weight: 600;
  font-size: 18px;
}
.hr-line {
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #3a3f3bcc 10%,
    #3a3f3bcc 90%,
    rgba(0, 0, 0, 0) 100%
  );
  height: 2px;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
  display: block;
  opacity: 0.5;
}
.sum-details {
  color: rgba(255, 255, 255, 0.36);
}
.sum-details-row {
  display: flex;
}
.sum-col-lft {
  width: 66.67%;
}
.sum-col-rt {
  width: 33.33%;
  text-align: right;
  flex-shrink: 0;
  min-width: 180px;
}
.sum-details h2 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
  color: var(--white);
}
.sum-details h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  color: var(--white);
}
.sum-details p {
  line-height: 1.5;
}
.price-new {
  border: 1px solid #f97316;
  border-radius: 30px;
  padding: 5px 15px;
  background-color: rgba(249, 115, 22, 0.1);
  color: var(--white);
  display: inline-block;
  margin-left: 8px;
  font-weight: 600;
}
.sum-details-row + .sum-details-row {
  margin-top: 18px;
}
.asc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(48, 48, 49, 0.6);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 15px;
  transition: all 0.3s ease;
}
.asc-btn:hover {
  background-color: var(--black);
  color: var(--white);
}
.asc-btn img {
  width: 16px;
  margin-right: 8px;
}
.asc-col {
  width: 50%;
  padding: 0 7px;
}
.asc-btn-wrp {
  margin: 0 -7px 12px;
  display: flex;
  align-items: center;
}
.trustpilot-embed-box {
  width: 680px;
  margin-left: -185px;
}
.trust-box-wrp {
  width: 310px;
  overflow: hidden;
  margin: 0 auto;
}
.input-wrapper + .input-wrapper {
  margin-top: 20px;
}
.form-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.36);
  margin-top: 8px;
}
.form-box a {
  color: #ff9408;
}
.form-box a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.mt-20 {
  margin-top: 20px;
}
.text-center {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .wp-sec {
    padding: 0;
  }
  .login-sec,
  .user-summery-sec {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 40px 25px;
  }
  .left-bg,
  .right-bg {
    width: 100%;
  }
  .footer {
    position: relative;
    width: 100%;
    padding: 40px 30px 20px;
    height: auto;
  }
  .summery-block,
  .login-box {
    margin: 0 auto auto;
  }
  .logo-box {
    margin-bottom: 9vh;
  }
  .login-header h1 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
  }
  .sum-details h2 {
    font-size: 32px;
  }
  .sum-details-row {
    flex-wrap: wrap;
  }
  .sum-col-lft {
    width: 100%;
  }
  .sum-col-rt {
    width: 100%;
    text-align: left;
    flex-shrink: 0;
    min-width: auto;
    margin-top: 12px;
  }
  .sum-details-row + .sum-details-row {
    margin-top: 24px;
  }
  .sum-details h3 {
    margin-bottom: 4px;
  }
  .summery-block {
    background-color: transparent;
    padding: 0;
  }
  .sum-box {
    margin: 0 0 15px;
  }
  .asc-btn-wrp {
    margin-bottom: 20px;
  }
}
