@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

:root {
    --main-bg-color: #1d1d1d;
    --main-txt-color: aliceblue;
    --border-color: goldenrod;
    --main-txt-size: 4vw;
    --bg-color: rgb(19, 19, 19);
    --slogan-fz: 10vw;
    --h1-fz: 7vw;
    --right-first-block-height: 14vh;
    --oppo-fz: 56px;
}

* {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    /* background-color: #fff; */
    color: var(--main-txt-color);
    font-family: sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    background-color: transparent;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#donate-body{
    width: 100%;
    height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: calc(7vh + 20px);
    margin-bottom: 20px;
}

#donate-main-wrapper {
    background-color: transparent;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;

    
}

#logo-row {
    background-color: transparent;
    height: 100%;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 300px;
    height: 300px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    -webkit-perspective: 400px;
    perspective: 400px;
    -webkit-transform-style: preserve-3d; 
    transform-style: preserve-3d;
    /* opacity: .7; */
}

.transform {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 50%;
    -webkit-animation: notransform 5s infinite;
    animation: notransform 5s infinite;
    box-shadow: 0px 2.5px 15px rgba(218, 165, 32, .5), 0px -2.5px 15px rgba(218, 165, 32, .5);
}

.rotate3d {
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.to-btc {
    -webkit-transform: rotate3d(-1, 1, 1, -30deg);
    -ms-transform: rotate3d(-1, 1, 1, -30deg);
    transform: rotate3d(-1, 1, 1, -30deg);
}

.to-usdt {
    -webkit-transform: rotate3d(1, 1, 1, -30deg);
    -ms-transform: rotate3d(1, 1, 1, -30deg);
    transform: rotate3d(1, 1, 1, -30deg);
}

.to-eth {
    -webkit-transform: rotate3d(1, 1, 1, 30deg);
    -ms-transform: rotate3d(1, 1, 1, 30deg);
    transform: rotate3d(1, 1, 1, 30deg);
}

.to-rub {
    -webkit-transform: rotate3d(1, -1, 1, -30deg);
    -ms-transform: rotate3d(1, -1, 1, -30deg);
    transform: rotate3d(1, -1, 1, -30deg);
}

/* @-webkit-keyframes notransform {
    50% {transform: none;}
}
  @keyframes notransform {
    50% {transform: none;}
} */

.transform img {
    width: 100%;
    background-color: transparent;
    justify-self: center;
}

#left-row,
#right-row {
    background-color: transparent;
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.donate-card {
    width: 400px;
    height: 250px;
    background-color: #202020;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#left-row .donate-card {
    margin-left: 50px;
}

#right-row .donate-card {
    margin-right: 50px;
}

.coin-logo-wrapper {
    background-color: transparent;
    width: 90%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donate-desc-wrapper {
    background-color: transparent;
    width: 90%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donate-btn-wrapper {
    background-color: transparent;
    width: 90%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coin {
    height: 45%;
    background-color: transparent;
}

.donate-desc-wrapper span {
    font-family: 'Exo 2';
    background-color: transparent;
}

.donate-desc-wrapper img {
    margin-left: 5px;
    cursor: pointer;
    background-color: transparent;
}

.button {
    min-width: 20%;
    height: 15px;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Inter';
    color: aliceblue;
    background-color: goldenrod;
    border: none;
    transition: all .25s ease-out;
    box-shadow: 0px 2.5px 10px rgba(218, 165, 32,.55),inset 0 5px 10px transparent;
    border: 1px solid goldenrod;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 20px 25px;
}

.button:hover {
    box-shadow: none;
    transform: scale(0.975);
}

#magnify {
    display: none;
    position: fixed;
    top: calc(50% - 325px/2);
    max-width: 600px;
    height: auto;
    z-index: 9999;
    background-color: transparent;
  }
  
  #magnify img {
    margin-left: 1%;
    width: 98%;
    border: 1px solid rgba(218, 165, 32, .35);
  }

  #overlay {
    display: none;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.875;
    z-index: 9990;
  }

  #close-popup {
    width: 30px;
    height: 30px;
    display: none;
    background: #000;
    border: 1px solid goldenrod;
    border-radius: 15px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  #close-popup i {
    width: 30px;
    height: 30px;
    background: url(https://endeavourclub.ru/images/close.svg) no-repeat center center;
    background-size: 30px 30px;
    display: block;
  }
  
  #close-popup:hover {
    transform: scale(.975);
  }
