/*
   display inline flex cross-browser
   https://github.com/postcss/autoprefixer/commit/a14935fea44b07da1c2408934b8cb3548310315a
*/
.hosting-available-plans .plans-content {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-self: auto;
}

/******* Hide Hosting Plan One ******/

.plan-one {
	display: none !important;
}

.hosting-plan .card {
    /*border: 8px solid transparent;*/
    border-radius: 2px;
    margin-right: 10px;
    /*outline: 0*/
}

.hosting-plan .card:hover, .hosting-plan .card.active {
    border-color: #E0E0E0
}

.hosting-plan .card-section {
    /*margin: 3px;*/
    /*background: #2c7c98;*/
    padding: 0;
    text-align: center;
    color: #fff;
    border-radius: 2px
}

.hosting-plan h2 {
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 10px 0;
}

.hosting-plan .price-container {
    /*background: #318baa;*/
    color: #fff;
    /*height: 100%;*/
}

.hosting-plan:nth-of-type(1) .card-section {
    background: #3493b3;
}

.hosting-plan:nth-of-type(1) .price-container {
    background: #38a2c5;
}

.hosting-plan:nth-of-type(1) .card-section .info-container:last-child {
    border-bottom: 1px solid #8EC0DB;
}

.hosting-plan:nth-of-type(2) .card-section {
    background: #2c7c98;
}

.hosting-plan:nth-of-type(2) .price-container {
    background: #318baa;
}

.hosting-plan:nth-of-type(2) .card-section .info-container:last-child {
    border-bottom: 1px #8EC0DB solid;
}

.hosting-plan:nth-of-type(3) .card-section {
    background: #175b73;
}

.hosting-plan:nth-of-type(3) .price-container {
    background: #1b6984;
}

.hosting-plan:nth-of-type(3) .card-section .info-container:last-child {
    border-bottom: 1px #8EC0DB solid;
}

.hosting-plan:nth-of-type(4) .card-section {
    background: #0e4153;
}

.hosting-plan:nth-of-type(4) .price-container {
    background: #1a4e61;
}

.hosting-plan:nth-of-type(4) .card-section .info-container:last-child {
    border-bottom: 1px #8EC0DB solid;
}

.hosting-plan .price-container {
    padding: 10px 0;
}

.hosting-plan .price-container h1 sup {
    vertical-align: text-top;
    top: 22px;
    font-size: 16px;
    display: inline-block;
    padding: 0 3px 0 0;
}

.hosting-plan .price-container h1 sub {
    vertical-align: text-bottom;
    bottom: 21px;
    font-size: 16px;
    display: inline-block;
    padding: 0 0 0 3px;
}

.hosting-plan .price-container h1 {
    font-family: "OpenSansRegular", Helvetica, Arial, sans-serif;
    font-size: 35px;
    font-weight: 400;
    /*padding: 15px 0 10px;*/
    text-align: center;
    color: #FFFFFF;
    margin: 5px 0 0 0;
    line-height: 0;
}

.hosting-plan .price-container .vat-message {
    font-size: 12px;
    line-height: 18px;
    padding: 0 16px 24px;
}

.hosting-plan .price-container .vat-message span {
    text-decoration: underline;
    cursor: pointer;
}

.hosting-plan .info-container {
    background: #fff;
    margin: 1px;
    line-height: 70px;
    color: #515151;

}

.hosting-plan .card-button {
    width: 100%;
    margin-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
}



@media only screen and (max-width: 480px) {
    .hosting-available-plans .plans-content {
        display: block;
    }

    .hosting-plan .card {
        margin-right: auto;
        margin-left: auto;
        width: 90%;
    }
}

@media only screen and (max-width: 664px) {
    .hosting-plan .card-button {
        font-size: 16px;
    }

    .hosting-plan .price-container h1 {
        font-size: 32px;
    }

    .hosting-plan .price-container h1 sup {
        top: 12px;
    }

    .hosting-plan .price-container h1 sub {
        bottom: 12px;
    }
}