/* Payments */

/* Payments Popup */

.r-payment-popup {
	top: 0 !important;
    width: 25vw;
	height: 75vh;
    max-height: initial;
    overflow: hidden;
}

.r-payment-popup .modal-dialog {
	margin: 0;
    width: 100%;
    height: 100%;
}

.r-payment-popup .modal-dialog .modal-content {
	padding: 0.75em;
    height: 100%;
}

.r-payment-popup .modal-dialog .modal-content .modal-header {
    height: 10%;
    padding: 0.5em 1em;
	color: #333;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.r-payment-popup .modal-dialog .modal-content .modal-header button {
	line-height: 0;
}

.r-payment-popup .modal-dialog .modal-content .modal-header button span {
	color: #333;
}

.r-payment-popup .modal-dialog .modal-content .modal-header h4 {
	font-size: 1.2rem;
}

.r-payment-popup .modal-dialog .modal-content .modal-body {
    padding: 0;
    height: 90%;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form,
.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form {
	height: 100%;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .form-group {
	min-width: initial;
	margin-bottom: 1.5em;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .form-group label,
.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .form-group input {
	width: 100%;
	margin-bottom: 0;
	font-weight: normal;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .form-group button,
.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown button {
    font-weight: bold;
    font-size: 1rem;
    height: 7.5vh;
    box-shadow: none;
    border-radius: 0;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown {
	margin: 1em 0;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	padding: 0 1em;
	text-transform: none;
    font-size: 1.2em;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown button:hover,
.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown button:active,
.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown button:focus {
	background-color: #26a69a;
	text-shadow: none;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown .dropdown-menu {
	width: 100%;
    bottom: initial;
    top: calc(7.5vh + 0.5em);
    padding: 0;
    border-radius: 0;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown .dropdown-menu li {
	padding: 0;
	height: 7.5vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	color: #333;
	cursor: pointer;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown .dropdown-menu li.selected {
    background-color: #555;
    color: #fff;
}

.r-payment-popup .modal-dialog .modal-content .modal-body .r-payment-popup-form form .dropdown .dropdown-menu li span {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding: 0 1em;
}

/* Payments Form spinner */
.sk-fading-circle {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

/*********** Notification Bar ***********/
.r-notification-bar {
    position: absolute;
    width: 100%;
    height: 60px;
    top: -60px;
    left: 0;
    z-index: 10000;
    background-color: #2980b9;
    padding: 0.5em 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.4s ease; /*cubic-bezier(.87, -.41, .19, 1.44)*/
    transition: all 0.4s ease; /*cubic-bezier(.87, -.41, .19, 1.44)*/
}

.r-notification-bar.active {
    top: 0;
}

.r-notification-bar .r-close-button {
    line-height: 0;
    cursor: pointer;
}

.r-notification-bar-text {
    font-size: 1.2em;
    margin: auto;
    color: #FFF;
}