@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
  --header-height: 3rem;
  --nav-width: 68px;
  --first-color: #0d6efd;
  --first-color-light: #AFA5D9;
  --white-color: #F7F6FB;
  --body-font: 'Nunito', sans-serif;
  --normal-font-size: 1rem;
  --z-fixed: 100 --main-search-width:300px;
}

@media (min-width:992px){
  ::-webkit-scrollbar {
    width: 12px;
    border-radius: 2px;

  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0px 0px 0px 30px #ECEDFF;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #830402;
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(53, 1, 0);
  }
  .spinningButton:hover {
    color: #f3f3f3;
  }
}

*,
::before,
::after {
  box-sizing: border-box
}

body {
  background: #f7f7f7 !important;
  position: relative;
  transition: .5s;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: scroll;
}

h1 {
  color: #fff !important;
  font-family: 'Pretoria';
  font-size: 22px !important;
  white-space: nowrap;
}

h2 {
  margin-bottom: 66px;
  letter-spacing: 2px;
  font-size: 57px;
  font-weight: 100;
}

a {
  text-decoration: none !important;
  display: inline-block;
}

hr {
  height: 2px !important;
  width: 50% !important;
  color: #fff;
  opacity: 1 !important;
}

u{
  text-underline-position: under;
}

@media (min-width: 992px){
  .w-lg-auto{
    width: auto !important;
  }
}

.bg-blue {
  background-color: #2b8ee9 !important;
}

.border-blue {
  border-color: #2b8ee9 !important;
}

.opacity-0 {
  opacity: 0 !important;
}
.section {
  position: relative;
  min-height: 100vh;
}

@media (min-height: 30em) {
  .section {
    height: 100vh;
  }
}

@media (min-height: 30em) {
  .section__content>* {
    opacity: 0;
    transform: translate3d(0, 4rem, 0);
    transition: opacity 800ms var(--delay),
      transform 800ms cubic-bezier(0.13, 0.07, 0.26, 0.99) var(--delay);
  }
}

.is-visible .section__content>* {
  opacity: 1;
  transform: translate3d(0, 1rem, 0);
}

.is-visible .section__img {
  opacity: 0.75;
}

.close {
  border-radius: 6px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close i {
  color: #fff;
  transition: .3s;
  transform: rotate(45deg);
  font-size: 22px;
}
#live-connect {
  width: 100% !important;
}
.liveSupport {
  width: 350px;
}
#confidentiality h2, #membershipConditions h2, #creditSecurity h2{
  color: #404040;
  letter-spacing: -0.5px;
  word-spacing: -2.5px;
  margin-bottom: 22px;
}
#confidentiality h3, #membershipConditions h3, #creditSecurity h3{
  color: #5a5a5a;
  margin-bottom: 16px;
}
#confidentiality h3+div, #membershipConditions h3+div, #creditSecurity h3+div{
  margin-left: 0.5rem;
}
#creditSecurity h4{ 
  color: #4b4b4b;
}
#confidentiality p, #membershipConditions p, #creditSecurity p{
  font-size: 18px;
  margin-left: 0.5rem;
  font-weight: 500;
  color: #4b4b4b;
}
#confidentiality a, #membershipConditions a, #creditSecurity a{
  color: #a90d0b !important;
}
#confidentiality strong, #membershipConditions strong, #creditSecurity strong{
  color: #4b4b4b;
}
#confidentiality strong+span, #membershipConditions strong+span, #creditSecurity strong+span{
  font-size: 18px;
  font-weight: 500;
}
#confidentiality li {
  font-size: 18px;
  color: #4b4b4b;
}

.spinningButtonCenter {
  text-align: center;
  margin: 1em 0;
}
.spinningButton {
  position: relative;
}

.spinningButton:active {
  color: #ffffff;
}
.spinningButton.spinning {
}
.spinningButton.spinning:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 0;
  height: 0;
  box-shadow: 0px 0px 0 1px #080808;
  border-radius: 50%;
  animation: rotate360 .5s infinite linear, exist .1s forwards ease;
}
.spinningButton.spinning:before {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 50%;
  right: 20px;
  top: 50%;
  position: absolute;
  border: 2px solid #000000;
  border-right: 3px solid #b91f28;
  animation: rotate360 .5s infinite linear, exist .1s forwards ease;
}
@keyframes rotate360 {
  100% {
    transform: rotate(360deg);
 }
}
@keyframes exist {
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0; 
 }
}
body {
  background: #212121;
}
@media(min-width:992px){
  .close-container:hover .close i,
  .close-register-container:hover .close i,
  .close-container:hover .close i,
  .close-tender-send-container:hover .close i {
    transform: rotate(135deg);
    transition: .3s;
  }
}