#navBarFixedTop {
    z-index: -1;
    display: none;
}

.simple_text:after {
    content: none;
}

.help-center-details {
    background: #fff;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 15px 0 15px 15px;
}

.features-single-container {
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: none;
}

.features-single-container .row {
    padding: 0;
    border: none;
    margin: 0;
}

.custom-checkbox {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
}

/* Hide the browser's default radio button */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #0845a4;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-checkbox .checkmark:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.help-center {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}

.features-list  {
    padding: 0;
}

.feature-type {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.help-center-details > .help-center {
    padding: 20px;
}

.about-features {
    padding: 20px;
    display: inline-block;
    border-radius: 15px;
    background: #fff;
    margin-bottom: 40px;
    transition: 0.5s all;
}

.fa-angle-right {
    display: inline-flex;
    align-items:center;
    justify-content:center;
    font-weight: 800;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #999;
    color: #999;
    padding: 4px;
}

.about-features:hover .fa-angle-right {
    border-color:#f06c7c;
    color: #f06c7c;
    transition: 0.5s all;
}

.about-features:hover {
    background: #0845a4;
    transition: 0.5s all;
}

.about-features:hover .about-features-headding {
    color: #fff;
    transition: 0.5s all;
}

.about-features:hover .about-features-headding:before {
    background: #fff;
    transition: 0.5s all;
}

.about-features:hover .about-features-text{
    color: #fff;
    transition: 0.5s all;
}

.about-features-headding {
    color:#f06c7c;
    font-size: 16px;
}

.about-features-headding:after {
    position: absolute;
    content: '';
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.how-to:after {
    background: url('../svg/how-to-icon.svg') no-repeat center;
}

.faqs:after {
    background: url('../svg/faqs-icon.svg') no-repeat center;
}

.videos:after {
    background: url('../svg/videos-icon.svg') no-repeat center;
}

.helpcenter-support:after {
    background: url('../svg/support-icon.svg') no-repeat center;
}

.about-features-headding:before {
    position: absolute;
    content:'';
    height: 2px;
    width: 20px;
    background: #0845a4;
    left: 0;
    top: 100%;
}

.about-features-text {
    color: #666;
    line-height: 1.5;
    margin-top: 30px;
    min-height: 150px;
}

@media only screen and (min-width:1200px) {
    
}
    
@media only screen and (min-width:991px) {
    .help-center {
        width: 80%;
        margin: 0 auto;
    }
}

@media only screen and (min-width:768px) {
    .help-center {
        display: flex;
        align-items: center;
    }
    
    .about-features-row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .about-features-row .col-xs-12 {
        padding-left: 5px;
        padding-right: 5px;
    }
    
}

@media only screen and (max-width:767px) {
    .feature-type {
        margin:  15px 0;
    }
    
    .features-single-container {
        margin: 0;
    }
    
    .help-center-details > .help-center {
        padding: 20px;
        text-align: center;
    }
}

@media only screen and (max-width:480px) {
    .features-single-list .container-fluid {
        padding: 0;
    }
    
    .help-center-details {
        border-radius: 0;
    }
}