body, p, .form-control{
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    color: #000;
    font-weight:400;
}

.nav-pills>li>a, .wizard-card[data-color="red"] .moving-tab {
    font-size:18px;
}

.logo-container {
    left: 50px;
    position: absolute;
    top: 20px;
    z-index: 3;
}

.logo-container .logo {
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #333333;
    float: left;
}

.logo-container .brand {
    font-size: 24px;
    color: #fff;
    line-height: 20px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
}

.img-icon{
    text-align: center;
    vertical-align: middle;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: transparent;
    color: #FFFFFF;
    border: 4px solid #fff;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    
}

.choice:hover .img-icon,
.choice.active .img-icon {
    -webkit-filter: grayscale(0);
	filter: grayscale(0);
    box-shadow: 6px 6px 2px 1px rgba(0, 96, 255, .2);
    /* border: 4px solid #05AE0E; */
}

.choice>span>a{
    font-weight:bold;
    color:#FF3B30;
}

.choice>span>a:hover{
    color: #2CA8FF;
}


/* Gray Scale */
img.img-icon {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}



@media all and (min-width: 1280px) {
    .footer {
        position: absolute;
    }
}

@media all and (min-width: 1024px) and (max-width: 1280px) { }

@media all and (min-width: 768px) and (max-width: 1024px) { }

@media all and (min-width: 480px) and (max-width: 768px) {
}

@media all and (max-width: 480px) { }


/* Portrait */
@media screen and (orientation:portrait) { /* Portrait styles here */ }
/* Landscape */
@media screen and (orientation:landscape) { /* Landscape styles here */ }


/* CSS for iPhone, iPad, and Retina Displays */

/* Non-Retina */
@media screen and (-webkit-max-device-pixel-ratio: 1) {
}

/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
}

/* iPhone Portrait */
@media screen and (max-device-width: 480px) and (orientation:portrait) {
    .wizard-header{
        background: #FF3B30;
    }

    .wizard-header>h3, .wizard-header>h3>small{
        padding:1em 0 1em 0;
        color: #FFF;
    }

    .wizard-navigation{
        display:none;
    }
    .logo-container {
        display: none;
    }
    .wizard-container {
        padding-top: 30px;
    }

    body, p, .form-control{
        font-size: 12px;
    }
    
    .nav-pills>li>a, .wizard-card[data-color="red"] .moving-tab {
        font-size:12px;
    }

    .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
        font-size: 12px;
    }
    .nav-pills>li, .wizard-card[data-color="red"] .moving-tab{
       
        width: 100% !important;
    }
    h4{
        font-size:18px;
    }
    h5{
        font-size:14px
    }

    .nav-pills>li.active>a {
        padding: 10px;
        text-transform: uppercase;
        background-color: #FF3B30;
        cursor: pointer;
        font-weight: 500;
        z-index:400;
    }
    
    .footer {
        position: relative;
    }

} 

/* iPhone Landscape */
@media screen and (max-device-width: 480px) and (orientation:landscape) {
}

/* iPad Portrait */
@media screen and (min-device-width: 481px) and (orientation:portrait) {
}

/* iPad Landscape */
@media screen and (min-device-width: 481px) and (orientation:landscape) {
}