﻿.buyP3 {
    margin: 40px 0 40px 0;
}

.buyP3__container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.buyP3__title {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 34px;
    line-height: 46px;
    text-align: center;
    color: #000000;
}

.buyP3__subtext {
    text-align: center;
    color: #000000;
    font-family: "Open Sans", sans-serif;
}

.options {
    margin: 20px 0 30px;
}

.options__card {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.final-price {
    margin: 40px 0 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    justify-content: space-between;
}

.final-price p {
    padding-right: 0;
    padding-left: 80px;
}

.submitLoader {
    width: 20px;
    height: 20px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 