/* Plans Styles */
.plan-box {
    min-height: 465px;
    margin-bottom: 30px;
    border: 1px solid rgb(181, 181, 181);
    background-color: #ffffff;
    padding: 30px;
    cursor: pointer;
    z-index: 2;
}

.plan-box:hover {
    box-shadow: 0 0 20px #7979797d;
}

.plan-box span {
    display: block;
    width: 100%;
}

.plan-body span {
    margin: 10px 0;
}

.plan-name {
    font-size: 37px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 10px;
}

.plan-type {
    font-size: 22px;
}

.plan-button {
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 84%!important;
    padding: 20px 40px;
    border: 1px solid #000000;
    text-align: center;
    font-size: 16px;
    font-family: effra, sans-serif;
    line-height: 14px;
    font-weight: 400;
    background-color: #000000;
    color: #ffffff;
}

.plan-button:hover {
    cursor: pointer;
    background-color: #ffc200;
    color: #000000;
}

/* Loader Spinner Styles */
.spinner-container {
    position: relative;
    width: 100%;
    height: 180px;
}

.spinner-loader:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 30px;
    width: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    border-top: 2px solid #888888;
    border-right: 2px solid transparent;
    animation: spinner 1s ease infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.icon {
    position: relative;
    top: 15%;
    font-size: 500%;
    margin: 20px;
    font-weight: bold;
    -webkit-text-stroke: 0.25px black;
}

/* Gravity Forms Styles */
.gfield_radio li input,
.gfield_checkbox li input{
    margin-top: 0!important;
}

.form-api-error {
	width: 100%;
	padding: 10px;
	border-top: 2px solid #dc143c;
	border-bottom: 2px solid #dc143c;
	margin: 10px 0;
	background-color: transparent;
	color: #dc143c;
}