/* Copyright (C) nebla Ltd. 2017 */

#packages {
    width: 100%;
    height: 640px;
    background-clip: border-box;
    z-index: 10;
}

#packages h1 {
    margin-top: 0px;
    margin-bottom: 45px;
    text-align: center;
    text-transform: uppercase;
    color: #31607c;
    font-size: 28px;
}

#packages a {
    text-decoration: none;
}

#packages a:hover {
    text-decoration: none;
}

#domain-form {
    margin: 0 auto;
    margin-top: 70px;
}

#domain-form input[type=text] {
    float: left;
    width: 545px;
    height: 47px;
    border-left: 2px solid #96ceb6;
    border-top: 2px solid #96ceb6;
    border-bottom: 2px solid #96ceb6;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 16px;
    color: #505050;
    
    -webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.09);
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.09);
}

#domain-form input[type=text]::placeholder {
    color: #d6d6d6;
}

#domain-form button[type=submit] {
    width: 90px;
    height: 47px;
    background-color: #96ceb6;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    padding-top: 7px;
    font-size: 24px;
    
    -webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.09);
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.09);
}

#package-info {
    display: none;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.package {
    margin: 0 auto;
    width: 255px;
    height: 390px;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: transform 0.1s;
    transition: transform 0.1s;
    
    -webkit-box-shadow: 6px 6px 10px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 6px 6px 10px 0px rgba(0,0,0,0.09);
    box-shadow: 6px 6px 10px 0px rgba(0,0,0,0.09);
}

.package:hover {
    transform: scale(1.025);
}

.package h2 {
    margin: 0 auto;
    width: 220px;
    height: 30px;
    margin-top: 14px;
    padding-top: 6px;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 4px;
}

.package h3 {
    margin-top: 17px;
    font-weight: 300;
    font-size: 18px;
    margin-left: 30px;
    color: #505050;
}

.package ul {
    margin-left: 3px;
    margin-top: 8px;
}

.package li {
    font-size: 16px;
    line-height: 25px;
    color: #505050;
}

.package-box {
    margin: 0 auto;
    margin-top: 18px;
    width: 81px;
    height: 75px;
    background-size: 80px;
    background-repeat: no-repeat;
}

.starter {
    border: 3px solid #acacac;
}

.starter h2 {
    background-color: #acacac;
}

.standard {
    border: 3px solid #74bcf2;
}

.standard h2 {
    background-color: #74bcf2;
}

.premium {
    border: 3px solid #bd8cbf;
}

.premium h2 {
    background-color: #bd8cbf;
}

.enterprise {
    border: 3px solid #f69679;
}

.enterprise h2 {
    background-color: #f69679;
}

.starter-box {
    background-image: url("../resources/vectors/packages/starter-box.svg");
}

.standard-box {
    background-image: url("../resources/vectors/packages/standard-box.svg");
}

.premium-box {
    background-image: url("../resources/vectors/packages/premium-box.svg");
}

.enterprise-box {
    background-image: url("../resources/vectors/packages/enterprise-box.svg");
}

.view-button {
    margin-top: 18px;
    margin-left: 30px;
    width: 76px;
    height: 19px;
    border-radius: 5px;
    text-align: center;
    padding-top: 1px;
    font-size: 12px;
    font-weight: 300;
    color: #FFFFFF;
}

.view-starter {
    background-color: #acacac;
}

.view-standard {
    background-color: #74bcf2;
}

.view-premium {
    background-color: #bd8cbf;
}

.view-enterprise {
    background-color: #f69679;
}

.packages-mobile {
    display: none;
}

/*---------- Mobile ----------*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    
    #packages {
        top: 799px;
    }
    
    .package {
        width: 220px;
        height: 390px;
    }
    
    .package h2 {
        width: 185px;
        height: 25px;
        margin-top: 14px;
        padding-top: 3px;
        font-size: 16px;
    }
    
    .package ul {
        margin-left: 0px;
    }
    
    .package li {
        font-size: 13.5px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    
    #packages {
        height: 1000px;
    }
    
    #domain-form {
        margin-top: 25px;
    }
    
    #domain-form input[type=text] {
        width: 440px;
    }
    
    .package {
        width: 255px;
        height: 390px;
        margin-bottom: 50px;
    }
    
    .package h2 {
        width: 220px;
        height: 30px;
        margin-top: 14px;
        padding-top: 6px;
        font-size: 18px;
    }
    
    .package ul {
        margin-left: 3px;
    }
    
    .package li {
        font-size: 16px;
    }
    
    .package-right {
        float: right;
        margin-right: 12px;
    }
    
    .package-left {
        float: left;
        margin-left: 12px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    
    #packages {
        top: 699px;
    }
    
    #domain-form input[type=text] {
        float: left;
    }
    
    .package-right {
        float: none !important;
        margin-right: auto;
    }
    
    .package-left {
        float: none !important;
        margin-left: auto;
    }
}

/* Custom for Packages */
@media only screen and (max-width : 575px) {
    #domain-form input[type=text] {
        width: 345px;
    }
    
    .package {
        width: 210px;
        margin-bottom: 20px;
    }
    
    .package h2 {
        width: 160px;
        height: 30px;
        margin-top: 14px;
        padding-top: 6px;
        font-size: 18px;
    }
    
    .package ul {
        margin-left: 0px;
    }
    
    .package li {
        font-size: 13px;
    }
    
    .package-right {
        float: right;
        margin-right: 8px;
    }
    
    .package-left {
        float: left;
        margin-left: 8px;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    
    #domain-form input[type=text] {
        width: 200px;
        height: 35px;
        font-size: 12px;
        padding-top: 7px;
    }
    
    #domain-form button[type=submit] {
        height: 35px;
        width: 50px;
        font-size: 17px;
    }
    
    #domain-form {
        margin-top: 35px;
    }
    
    #packages {
        height: 1525px;
        top: 419px;
    }
    
    #packages h1 {
        margin-top: 10px;
        margin-bottom: 30px;
        font-size: 20px;
    }
    
    .package {
        margin: 0 auto;
        margin-top: 35px;
        height: 322px;
    }
    
    .package h2 {
        width: 160px;
        height: 28px;
        margin-top: 14px;
        padding-top: 6px;
        font-size: 14px;
    }
    
    .package h3 {
        margin-top: 3px;
        font-size: 16px;
        margin-left: 25px;
    }
    
    .package ul {
        margin-left: 0px;
    }
    
    .package li {
        font-size: 12px;
        line-height: 17px;
    }

    .view-button {
        margin-left: 23px;
    }
    
    .package-box {
        margin-top: 14px;
        width: 70px;
        height: 65px;
        background-size: 70px;
    }
    
    .packages-mobile {
        display: block;
    }
    
    .packages-desktop {
        display: none;
    }
}

/* Copyright (C) nebla Ltd. 2017 */