body {
    background-color: #fff;
}


/* Use a wide full screen for small screens like tablets. */
/* @media (min-width: 768px) and (max-width:992px) {
        .container {
            width: initial;
            padding-left: 2em;
            padding-right: 2em;
        }
    } */

.membership-container.border {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.banner-icon-image {
    border-radius: 15px;
    margin-bottom: 15px;
    width: 60%;
}

@media (max-width: 1366px) {
    .banner-icon-image {
        width: 30%;
    }

    .top-header {
        padding: 30px !important;
    }
}

@media (max-width: 400px) {
    .banner-icon-image {
        width: 70%;
    }
}

.membership-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: gray;
    color: #fff;
    border-radius: 30px;
}

.membership-header.free {
    background-color: #979293;
}

.membership-header.core {
    background-color: #716c6c;
}

.membership-header.premium {
    background-color: #514e4e;
}

.membership-header.master {
    background-color: #353435;
}

.membership-default,
.membership-additional {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 2rem;
}

.membership-price {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e2e2;
    padding: 15px 0;
}

/* .membership-default p {
        font-size: 15px;
    } */

.text-price {
    font-weight: bold;
    font-size: 3rem;
}

.text-month {
    font-size: 1.5rem;
}

.membership-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    min-height: 150px;
}

.membership-buttons .btn {
    border-radius: 30px;
    width: 75%;
    margin-bottom: 15px;
    background-color: #353435;
    color: #fff;
    font-weight: bold;
    padding: 18px;
}

#pricing .nav-pills .nav-link {
    color: #000;
    border-radius: 0;
    padding: 30px 0;
}

#pricing .nav-pills .nav-link.active {
    background-color: transparent;
    border-bottom: 2px solid #d03438;
}


/* Style for the switch input */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    border-radius: 17px;
    margin-bottom: 0;
}

/* Hide the default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Style for the slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 17px;
}

/* Style for the slider when it's on */
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

/* Style for the switch input when it's checked */
input:checked+.slider {
    background-color: #716c6c;
}

/* Style for the slider when it's on */
input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}