body {
    font-family: sunflower;
    background: #fff;
    color: #95989a;
    margin: 0;
    overflow-x: hidden;
}

.gc {
    color: #55ff63;
}

.bc {
    color: #55aaff;
}

.rc{
	color: coral;
}

body>hr {
    width: 30%;
    margin: 35px auto;
}

body .discounts {
    position: absolute;
    background: #55ff63;
    top: 0;
    right: 20px;
    height: 90px;
    width: 90px;
    text-align: center;
    display: flex;
    font-size: 1.6rem;
    color: #444;
    padding: 20px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 80%, 0 100%);
}

body .background {
    width: 110vw;
    height: 110vh;
    position: fixed;
    top: -5vh;
    left: -5vw;
    filter: blur(10px) brightness(50%);
    background: url("../../wp-content/uploads/2012/06/1268070031_53-wa.jpg");
    z-index: -1;
    background-size: 100% 100%;
}

body .instructions {
    padding: 0 30px;
}

body h1 {
    text-align: center;
    position: relative;
}

body article.container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

body article.container>h2 {
    width: 95%;
    text-align: left;
    margin: 50px 0 0 0;
}

body article.container div.calculator {
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 30px;
    box-shadow: 0 6px 6px #95989a2c
}

body article.container div.calculator input {
    width: 80%;
    height: 30px;
    padding: 10px;
    border: none;
    position: relative;
    outline: none;
    transition: 0.5s;
    border-left: 5px solid rgba(68, 68, 68, 0);
    font-size: 1.8rem;
    font-family: lato;
    border-radius: 30px 0 0 30px;
}

body article.container div.calculator input:hover {
    background: rgba(68, 68, 68, 0.11);
}

body article.container div.calculator div.dropdown {
    width: 30%;
    height: 30px;
    background: #444;
    padding: 10px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    outline: none;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 0 30px 30px 0;
}

body article.container div.calculator div.dropdown:hover {
    background: #5af;
}

body article.container div.calculator div.dropdown .down-arrow {
    width: 10%;
    height: 150%;
}

body article.container div.calculator div.dropdown .text {
    width: 90%;
}

body article.container div.calculator div.dropdown ul {
    list-style: none;
    position: absolute;
    color: #444;
    top: -30px;
    left: -40px;
    display: none;
    opacity: 0;
    transition: 0.5s;
    z-index: 1000;
}

body article.container div.calculator div.dropdown ul li {
    padding: 5px 50px;
    background: #55ff63;
    transition: 0.5s;
    cursor: pointer;
}

body article.container div.calculator div.dropdown ul li:hover {
    background: #3ba944;
}

body article.container .results {
    width: 60%;
    height: auto;
    background: #444;
    padding: 20px;
    margin: 10px;
    color: #55ff63;
    transition: 0.5s;
    word-wrap: break-word;
}

body .info-big {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

body .info-big .currency-cards-holder {
    width: 60%;
    height: auto;
    perspective: 1000px;
    padding: 30px 0;
    box-sizing: border-box;
}

body .info-big .currency-cards-holder .currency-card {
    width: 100%;
    height: 90px;
    position: relative;
    display: flex;
    border-left: 3px solid;
    transition: 0.5s;
    outline: none;
    cursor: pointer;
    overflow: hidden;
}

body .info-big .currency-cards-holder .currency-card p {
    font-size: 0.8rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
}

body .info-big .currency-cards-holder .currency-card img {
    height: 80%;
    padding: 10px;
}

body .info-big .currency-cards-holder .currency-card .details {
    text-align: left;
}

body .info-big .currency-cards-holder .currency-card .inputs {
    height: 50%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 10px;
    box-sizing: border-box;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: -6px 6px 6px rgba(149, 152, 154, 0.235);
}

body .info-big .currency-cards-holder .currency-card .inputs input {
    height: 100%;
    width: 70%;
    border: none;
    padding: 10px;
    box-sizing: border-box;
    font-family: lato;
    font-size: 1.2rem;
}

body .info-big .currency-cards-holder .currency-card .inputs button {
    box-sizing: border-box;
    padding: 10px;
    font-size: 0.8rem;
    font-family: sunflower;
    height: 100%;
    width: 41%;
    background: rgba(226, 226, 226, 0.431);
    color: #444;
    border: none;
    cursor: copy;
}

body .info-big .currency-cards-holder .currency-card .qr-button {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 10px;
    box-sizing: border-box;
    transition: 0.5s;
    position: absolute;
    right: 0;
}

body .info-big .currency-cards-holder .currency-card:hover {
    color: #5af;
    border-left: 5px solid;
}

body .info-big .currency-cards-holder .currency-card:hover .qr-button {
    background: rgba(0, 0, 0, 0.173);
}

body .info-big .currency-cards-holder .currency-card:focus {
    background: #e2e2e2;
    color: #444;
    cursor: default;
    border-left: 5px solid;
}

body .info-big .currency-cards-holder .currency-card:focus .copier {
    background: #444;
    color: #55ff63;
}

body .info-big .currency-cards-holder .currency-card:focus .qr-button {
    background: #444;
    color: #55ff63;
}

body .info-big #transaction {
    width: 36%;
    margin: 2%;
    border-radius: 30px;
    box-shadow: 0 0 10px #95989a4c;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    background: white;
}

body .info-big #transaction input,
body .info-big #transaction button {
    width: 100%;
    height: 50px;
    margin: 20px 0;
    background: #444;
    border: none;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 30px;
    outline: none;
    box-shadow: 0px 0px 10px #444;
    font-family: lato;
    color: white;
    font-size: 1.2rem
}

body .info-big #transaction button {
    background: #55ff63;
    color: #444;
    box-shadow: 0 0 10px #55ff63;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

body .info-big #transaction p {
    font-size: 0.8rem
}

body .info-big #transaction a {
    color: #55ff63;
}

body .info-big #transaction .bottom {
    width: 70%;
    font-size: 0.8rem;
    position: absolute;
    bottom: 0;
}

body .info-big #transaction .bottom img {
    width: 50%;
}

body .info-big #transaction .bottom hr {
    border: 0.5px solid #e2e2e2;
}

body .qr-holder {
    position: fixed;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: #0000008f;
    flex-direction: column-reverse;
    opacity: 0;
    display: none;
    transition: 0.5s;
    align-items: center;
    top: 0;
    left: 0;
}

body .qr-holder img {
    background: #e2e2e2;
    width: 80%;
    border-radius: 10px;
    padding: 20px;
}

body .qr-holder .close {
    border-radius: 50%;
    background: white;
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -15px;
    border: 5px solid;
    color: coral;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

body .qr-holder .data {
    border-radius: 10px;
    background: white;
    position: absolute;
    top: 150px;
    padding: 30px 30px 0 30px;
    width: 16%;
    border-bottom: 5px solid #55ff63;
}

@media screen and (max-width: 800px) {
    body article.container div.calculator {
        width: 90%;
    }

    body article.container .results {
        margin: 30px 0 0 0;
        width: 90%;
    }
    
    body .discounts {
    	font-weight: bold;
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        height: auto;
        padding: 20px;
        width: 65%;
        color: #444;
        background: #55ff63;
        margin: 10px 10px 10px 0;
        clip-path: polygon(0% 0%, 100% 0, 85% 50%, 100% 100%, 0% 100%);
        font-size: 1.5rem;
    }
    
    body h1{
    	margin-top: 100px;
    }
    body .info-big .currency-cards-holder {
        width: 99%;
    }
    body .info-big .currency-cards-holder .currency-card {
    	height: 100px;
    }
    body .info-big .currency-cards-holder .currency-card p {
        font-size: 0.6rem
    }

    body .info-big .currency-cards-holder .currency-card .inputs {
        font-size: 0.6rem;
        width: 56%
    }
    
    body article.container div.calculator div.dropdown .down-arrow {
    	width: 30%;
    }

    body .info-big .currency-cards-holder .currency-card .qr-button {
      display: none;
    }

    body .info-big #transaction {
        width: 96%;
        margin: 2%;
    }

    body .info-big #transaction>p {
        margin-bottom: 100px
    }

    body .info-big #transaction input {
        margin: 10px 0;
    }

    body .info-big #transaction p {
        font-size: 0.6rem;
    }

    body .qr-holder .data {
        width: 40%;
    }

    body .qr-holder {
        width: 101vw;
        height: 101vh;
    }
    
    body .info-big .currency-cards-holder .currency-card .details{
    	width: 14%
    }

    #xrp-card {
	height: 115px;
    }
}