/**
 * Icon list
 */

body {}


/* Glyphicons */

.glyphicons-list {
    list-style: none;
    padding: 0;
}

.glyphicons-list li {
    display: inline-block;
    float: left;
    width: 12.5%;
    height: 115px;
    background-color: #f8f8f8;
    border: 1px solid #fff;
    padding: 10px;
    transition: .3s ease;
}

.glyphicons-list li:hover {
    background-color: #eee;
}

.glyphicons-list .glyphicon {
    display: block;
    text-align: center;
    font-size: 25px;
    color: #222;
}

.glyphicons-list .glyphicon-class {
    display: block;
    text-align: center;
    margin-top: 10px;
    line-height: 16px;
    font-size: 13px;
}


/* Font Awesome */

.fa-page-header {
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.fontawesome-icon-list .fa-hover {
    margin-bottom: 5px;
    transition: .3s ease;
}

.fontawesome-icon-list .fa-hover:hover {
    background-color: #f8f8f8;
}

.fontawesome-icon-list .fa-hover .fa {
    width: 25px;
    color: #222;
}

@media (max-width: 767px) {
    .glyphicons-list li {
        width: 25%;
    }
}


/**
 * Prism supported languages
 */

.prism-languages {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.prism-languages li {
    width: 33.3333%;
    float: left;
}

.prism-languages li code {
    margin-left: 8px;
}

@media (max-width: 991px) {
    .prism-languages li {
        width: 50%;
    }
}


/**
 * Code window spacer
 */

.window-content .btn {
    margin-bottom: 6px;
}


/* My Edits */

a,
a:focus,
a:hover {
    color: #000
}

.item-info {
    background-color: #f9f9f9;
    padding: 20px;
    color: #333;
    font-size: 14px;
    position: relative;
    top: 30px;
}

.item-info img {
    padding: 5px;
    box-shadow: 0px 1px 7px rgba(0, 0, 0, .1);
    width: 100%
}

.item-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding-top: 10px;
    margin-bottom: 0px;
    border-top: 1px dashed #ddd;
}

.item-info ul li {
    margin-bottom: 10px;
}

.item-info ul li b {
    margin-right: 20px
}

.mark,
mark {
    background: #ff0;
    color: #000;
}

.thank p {
    margin-top: 30px
}

.sidebar-boxed .sidebar-brand img {
    width: 80px
}

p {
    font-size: 15px !important
}

.sidenav li:first-child {
    margin-top: 10px
}

.sidenav h4 {
    color: #fff;
    font-size: 17px;
    margin-top: 20px;
    background: #1e262f;
    padding: 15px;
    font-weight: 600;
}

.contact-us {
    margin-top: 40px;
}

.benefits {
    margin: 20px;
}

.link-ico-header {
    margin-left: 20px;
    color: #000;
}

.benefit-box {
    padding: 10px;
    border-width: thick;
    border-color: lightgray;
    border-radius: 10px;
}


/**Application form*/

.indicators * {
    transition: all 0.4s ease-in-out;
}

.fix-height {
    min-height: 200px;
}

.steps {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.steps.active {
    width: 100%;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transition: all 0.4s ease-in-out;
}


/* animation for input boxes */

.form-control.invalid {
    border: 1px solid #ec2626;
    /* paste any animation you want */
    animation: shaking 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    transition: all 0.4s ease-in-out;
}

@keyframes shaking {
    10%,
    90% {
        transform: translate3d(-2px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(4px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-8px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(8px, 0, 0);
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
}

.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: all 0.4s ease-in-out;
}

@media screen and (min-width: 768px) {
    .fix-height {
        min-height: 100px;
    }
}