/**
buttons: linear-gradient(to bottom, #3799c7, #77bfdd)

main blue:  #3799c7   |    55, 153, 199
light blue: #77bfdd   |   119, 191, 211

main text:  #2f2f2f
bold text:  #848484
background: #d6d9d9
 */

@-ms-viewport     { width: device-width; }
@-o-viewport      { width: device-width; }
@viewport         { width: device-width; }

@font-face {
    font-family: EnvelopeSans;
    src: url(../EnvelopeSans_VF.ttf?1);
}
* {
    box-sizing: border-box;
}
body {
    /* CSS variables */
    --main--blue--light: #27a2f8;
    --main--blue--light--second: #0096ff;
    --main--blue--dark: #002752;
    --main--blue--dark--second: #1d2755;
    --bg--grey--light: #f6f7f8;

    padding: 0;
    margin: 0;
    background-image: linear-gradient(to bottom, var(--main--blue--light--second), var(--main--blue--light));/*#ffffff;*/
    background-size: cover;
    background-attachment: fixed;
    font-family: EnvelopeSans, Arial, sans-serif;
    font-size: 15px;
    color: #fff;
    font-synthesis: none !important;
}
@supports (color: color(display-p3 1 1 1)) {
    body {
        /* CSS variables */
        --main--blue--light: color(display-p3 0.15294117647058825 0.6352941176470588 0.9725490196078431);
        --main--blue--light--second: color(display-p3 0 0.5882352941176471 1);
        --main--blue--dark: color(display-p3 0 0.152941176 0.321568627);
        --main--blue--dark--second: color(display-p3 0.11372549 0.152941176 0.333333333);
        --bg--grey--light: color(display-p3 0.964705882 0.968627451 0.97254902);

    }
}
html,
body,
.site-wrapper,
.site-wrapper-inner {
    min-height: 100%;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 35px;
}
h4 {
    font-size: 25px;
}
h3, h4 {
    margin: 10px 0;
}
.logo {
    height: 29px;
    width: 109px;
    --lucid: var(--main--blue--light);
    --grave: var(--main--blue--dark);
    margin: 9px 0 6px;
}
.muk .logo {
    width: 212px;
}
input[type=radio] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: var(--main--blue--dark--second);
}
input[type=radio]:checked::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    margin: 3px;
}
input[type=checkbox] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #fff;
    background-color: var(--main--blue--dark--second);
    margin: 0 5px 0 0;
    vertical-align: middle;
}
input[type=checkbox]:checked {
    background-color: var(--main--blue--light);
    border-color: transparent;
}
input[type=checkbox]:checked::before {
    content: '';
    background-image: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='1.5 1.5 16 16'><path d='m 7.13725,11.7255 c -0.25882,0 -0.47058,-0.1098 -0.66666,-0.3686 L 4.55686,9.00392 C 4.44706,8.8549 4.37647,8.6902 4.37647,8.51765 c 0,-0.3451 0.26667,-0.61961 0.60392,-0.61961 0.21961,0 0.39216,0.06274 0.58039,0.31372 l 1.5451,2.00004 3.25492,-5.22357 c 0.149,-0.22745 0.3451,-0.35294 0.5412,-0.35294 0.3294,0 0.6431,0.22745 0.6431,0.5804 0,0.17255 -0.102,0.34509 -0.1882,0.50196 L 7.77255,11.3569 C 7.61569,11.6 7.39608,11.7255 7.13725,11.7255 Z' fill='%23fff'/></svg>");
    width: 20px;
    height: 20px;
    display: inline-block;
}

.inner {
    margin: auto;
    max-width: 800px;
}

#ecmaWarning {
    text-align: center;
    margin: 15% 0;
    font-weight: bolder;
}
#ecmaWarning .alert {
    font-size: large;
}

.masthead {
    width: 100%;
    background: #fff;
    padding: 0 5px;
}
.masthead nav,
.masthead-nav > li {
    display: inline-block;
}
.masthead nav {
    margin: 5px 0;
    float: right;
}
.masthead-nav > li {
    padding: 5px;
}
.masthead-nav > li svg {
    height: 15px;
    width: 20px;
    box-shadow: 0 0 10px #dbdbdb;
}
.masthead-nav > li.active svg,
.masthead-nav > li:hover svg {
    transform: scale(1.2);
}

.cover-heading {
    position: relative;
    margin: 40px 5px 30px;
    width: auto;
    font-size: 120%;
}
.cover-heading.note {
    margin-bottom: 75px;
}
.cover-heading.note h4 {
    color: #e2712c;
}
.cover-heading.note .alert {
    margin-bottom: 50px;
}
.cover-heading.note a.btn {
    text-decoration: none;
    background-color: var(--main--blue--dark);
}
.cover-heading.note a.btn:hover {
    background-color: var(--main--blue--dark--second);
}

#product_name {
    margin-top: 20px;
}
#product_name * {
    vertical-align: middle;
}
#product_name svg {
    height: 50px;
    width: 50px;
    --circle: #fff;
    --icon: none;
    margin-right: 15px;
}
#product_name span {
    font-size: 35px;
}

.accountType {
    padding: 5px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    border: 2px solid var(--main--blue--dark);
    border-radius: 10px; width: 100%; margin: 50px auto 30px;
}
.accountType .btn,
.accountType .btn:not(.active):hover {
    padding: 10px 0;
    line-height: 36px;
    font-size: 23px;
    flex: 1 1 auto;
    max-width: 50%;
    text-align: center;
    background-color: transparent;
    color: var(--main--blue--dark);
}
.accountType .btn.active,
.accountType .btn.active:hover {
    background-color: var(--main--blue--dark);
    color: #fff;
}
.accountType .btn svg {
    height: 30px;
    width: 30px;
    vertical-align: middle;
    --fill: transparent;
    margin: -6px 10px 0 -15px;
    border: 2px solid var(--main--blue--dark);
    border-radius: 5px;
}
.accountType .btn.active svg {
    --fill: #fff;
    border-color: #fff;
}

.mastform .row.toggle {
    /*animation: close 3s linear infinite forward;*/
    animation-duration: 0.5s;
    /*animation-direction: alternate;*/
    /*animation-iteration-count: 0;*/
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    height: 0;
    --toggleHeight: 148px;
    overflow: hidden;
}
.mastform .row.toggle.close {
    animation-name: close;
}
.mastform .row.toggle.open {
    animation-name: open;
}

@keyframes open {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
        height: var(--toggleHeight);
    }
}

@keyframes close {
    from {
        height: var(--toggleHeight);
        opacity: 1
    }
    to {
        height: 0;
        opacity: 0
    }
}


.mastform {
    position: relative;
    background: var(--main--blue--dark);
    padding: 10px;
    width: auto;
}
.mastform form[name=signup] {
    padding-top: 20px;
}
.mastform .subhead {
    text-align: center;
}
.mastform .lead {
    display: inline-block;
    margin: 10px;
    width: 95%;
}
.mastform .lead p {
    text-align: left;
}
.mastform .masttext {
    margin: 10px;
}
.mastform h4 {
    margin-bottom: 20px;
    margin-top: 20px;
}
.mastform ol {
    /*color: var(--main--blue--light);*/
    margin: 8px -20px;
}
.form-group {
    margin-bottom: 12px;
    position: relative;
}
.form-group > * {
    width: 100%;
}
.form-group label {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}
/*.form-group*/ label.required::after {
    content: '*';
}
#premium_phone_code,
#signup_phone_code {
    clear: both;
}

.bsi {
    width: 100%;
    max-width: 250px;
    margin: 20px 0;
}
.bsiCol img {
    margin-left: auto;
    margin-right: auto;
}


.mastfoot {
    background: var(--main--blue--dark--second);
    color: #ffffff;
    overflow: hidden;
}
.mastfoot a {
    color: var(--main--blue--light);
    text-decoration: none;
}
.mastfoot a:hover {
    text-decoration: underline;
}
.mastfoot .inner {
    padding: 0 25px;
    display: flex;
    gap: 5px;
}
.mastfoot .footcol {
    margin: 15px 0;
    flex: 1 1 auto;
}
.mastfoot .footcol h5 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 16px;
}
.mastfoot .footcol img {
    max-width: 150px;
    vertical-align: middle;
}
.mastfoot .footcol span {
    font-size: 11px;
    display: inline-block;
    max-width: 125px;
    margin: 0 4px;
    vertical-align: middle;
}
.mastfoot .footcol hr {
    color: #fff;
}
.mastfoot .footcol ul {
    font-size: 12px;
    line-height: 1.4;
    padding-left: 0;
    list-style-type: none;
}
.mastfoot p {
    margin-top: 8px;
    font-size: 12px;
}

hr {
    color: var(--main--blue--light);
}
.terms a,
label.check a {
    color: var(--main--blue--light);
}
#partnerList a {
    color: var(--main--blue--dark);
}
a {
    font-weight: normal;
    color: #fff;
    text-decoration: underline;
}
#premium_product,
#signup_product {
    margin: 0 auto;
}
#premium_salutation_gender div,
#premium_product_choice div,
#signup_product_choice div {
    display: inline-block;
    position: relative;
    left: -4px;
}
#premium_product_choice label,
#signup_product_choice label {
    display: inline-block;
    width: 100%;
    left: 10px;
    top: 6px;
    margin: 12px 5px;
    cursor: pointer;
    font-size: 35px;
}
#premium_product_choice label *,
#signup_product_choice label * {
    vertical-align: middle;
}
#signup_product_choice label sup {
    vertical-align: super;
    font-size: 75%;
}
#premium_product_choice label svg,
#signup_product_choice label svg {
    height: 50px;
    width: 50px;
    --circle: var(--main--blue--light);
    --icon: none;
    margin: 0 10px;
}
.col-md-5.productCol {
    width: 41.66666667%;
    float: left;
}
.col-md-7.productCol {
    width: 58.33333333%;
    float: left;
}

#premium_credentials,
#premium_credentials_pass,
#signup_credentials,
#signup_credentials_pass {
    position: relative;
    /*padding-right: 10px;*/
}
#productLink {
    clear: left;
    margin-bottom: 4px;
}
#productLink a {
    text-decoration: none;
    color: var(--main--blue--light);
    font-size: 13px;
}
#productLink a:hover {
    text-decoration: underline;
}
.form-control:not(input[type=radio]) {
    border: none;
    border-radius: 3px;
    background-color: #fff;
    padding: 5px 12px;/*65px 5px 12px;*/
    height: 35px;
    margin-top: 5px;
    font-size: 14px;
}
#mainForm input[type=password] {
    padding-right: 65px;
}
.form-control:focus {
    box-shadow: none;
}
.radio-group {
    /*display: inline-block;*/
    /*width: 49.2%;*/
}
input[type=radio].form-control {
    /*width: auto;*/
    /*height: auto;*/
    /*display: inline;*/
    vertical-align: top;
}
label[for=primary_mail_address_1] {
    margin-right: 35px;
}
label.control-label {
    display: block;
    font-size: 110%;
    margin-bottom: 10px;
}
#productNotes {
    font-size: 9.5pt;
    line-height: normal;
    margin-bottom: 5px;
    /*min-height: 90px;*/
}

#premium_phone_phonenumber,
#signup_phone_phonenumber {
    padding-left: 95px;/*85px;*/
}
#areaCode {
    font-size: 14px;
    height: 35px;
    border-right: 1px solid var(--main--blue--dark);
    padding: 10px 20px 10px 10px;
    position: absolute;
    bottom: 0;
    color: #000;/*#555;*/
    width: 85px;/*max-content;*/
    line-height: 16px;
    white-space: nowrap;
    cursor: default;
}
#areaCode::before {
    content: '>';
    transform: rotate(90deg);
    position: absolute;
    right: 5px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
#areaCode > div {
    overflow: hidden;
}
#areaCode svg {
    height: 15px;
    width: 23px;
    vertical-align: text-top;
    margin-right: 5px;
}
#areaCode ul {
    position: absolute;
    z-index: 2;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 5px;
    width: max-content;
    min-width: 84px;
    left: 0;
    top: 35px;
    border-radius: 5px;
    box-shadow: 0px 0px 2px 0px #333;
}
#areaCode ul li {
    padding: 0 5px;
    white-space: nowrap;
    height: 25px;
    line-height: 25px;
    border-radius: 3px;
}
#areaCode ul li:hover {
    background-color: #d8d8d8;
}

.btn {
    font-size: 18px;
    padding: 15px 30px;
    background-color: var(--main--blue--light);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.btn-verify {
    font-size: 16px;
    width: 100%;
    margin: 5px 0;
    padding: 15px 20px;
}
.btn:not(:disabled):hover {
    background-color: var(--main--blue--light--second);
}
.btn:disabled {
    cursor: default;
    opacity: 0.75;
}
#phoneValidationError {
    margin: 0 8px;
    color: #ee953f;
    font-weight: bold;
}

.d-block {
    display: block;
}
.text-uppercase {
    text-transform: uppercase;
}
.invalid-feedback {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 13px;
    margin: 5px 0;
}
.invalid-feedback .badge,
.alert-danger .badge {
    display: none;
}
.invalid-feedback .form-error-message::before,
.alert-danger .form-error-message::before {
    content: '✘';
    font-size: 15px;
    line-height: 13px;
    margin-right: 5px;
    vertical-align: middle;
}
.alert {
    padding: 15px 20px;
    font-size: 14px;/*13px;*/
    border-radius: 6px;
    color: var(--main--blue--dark);
    background-color: #fefefe;
    margin-bottom: 10px;
}
.alert-info {
    background-color: #c5f5fd;/*#cff4fc;*/
    color: #005362;/*#055160;*/
}
.alert-warning {
    background-color: #fff2c8;/*#fff3cd;*/
    color: #6b4c00;/*#664d03;*/
}
.alert-danger,
.invalid-feedback {
    background-color: #ffd5da;/*#cc0000;!*#fefefe;*/
    color: #901025;
}

#availabilityState {
    font-size: 14px;/*13px;*/
    border-radius: 6px;
    background-color: transparent;
    margin: 27px 0 27px 0;
    padding: 10px 20px;
    height: 36px;
}
#availabilityState.available {
    background-color: #d1e7dd;
    color: #0f5132;
}
#availabilityState.invalid,
#availabilityState.unavailable {
    background-color: #f8d7da;
    color: #842029;
}
#primaryExplanation {
    margin-bottom: -15px;
}
#pwhelp {
    margin-top: 38px;
}
/*#phonehelp {*/
/*    margin-top: 26px;*/
/*}*/

#mainForm {
    position: relative;
}

#ajaxErrors {
    width: 93%;
    left: 3.5%;
}
#ajaxErrors .alert.alert-danger {
    position: fixed;
    top: 10px;
    z-index: 10000;
    background-color: #f8d7da;
    color: #842029;
}

#check {
    position: absolute;
    font-size: 28px;
    width: 35px;
    height: 35px;
    right: 0;/*10px;*/
    top: 27px;
    z-index: 10;
}
#check.available::before {
    /*background: url("/img/icon/okay.png") center center no-repeat;*/
    content: "\2714";
    color: green;
}
#check.unavailable::before {
    /*background: url("/img/icon/fail.png") center center no-repeat;*/
    content: "\2718";
    color: red;
}

#pwmeter.bad,
#pwmeter.short,
#pwmeter.mismatch,
#pwmeter.invalid {
    color: #a43c41;
}
#pwmeter.weak {
    color: #bb6633;
}
#pwmeter.fair {
    color: #718d49;
}
#pwmeter.strong {
    color: #77bb33;
}

#pwpie {
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    right: 45px;/*15px;*/
    top: 32px;
    font-weight: bold;
    color: #ffffff;
    line-height: 25px;
    text-align: center;
}
#pwpie.bad,
#pwpie.short {
    background-image:
            linear-gradient(90deg, var(--main--blue--light) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0)),
            linear-gradient(126deg, #d03c41 50%, var(--main--blue--light) 50%, var(--main--blue--light));
}
#pwpie.mismatch,
#pwpie.invalid {
    background-image:
            linear-gradient(90deg, #d03c41 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0)),
            linear-gradient(270deg, #d03c41 50%, var(--main--blue--light) 50%, var(--main--blue--light));
}
#pwpie.weak {
    background-image:
            linear-gradient(90deg, var(--main--blue--light) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0)),
            linear-gradient(198deg, #bb6633 50%, var(--main--blue--light) 50%, var(--main--blue--light));
}
#pwpie.fair {
    background-image:
            linear-gradient(-36deg, #718d49 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0)),
            linear-gradient(270deg, #718d49 50%, var(--main--blue--light) 50%, var(--main--blue--light));
}
#pwpie.strong {
    background-image:
            linear-gradient(72deg, #77bb33 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0)),
            linear-gradient(270deg, #77bb33 50%, var(--main--blue--light) 50%, var(--main--blue--light));
}

#pwfit {
    position: absolute;
    width: 35px;
    height: 35px;
    right: 40px;/*10px;*/
    top: 101px;
    z-index: 10;
}
#pwfit.okay {
    background: url("/img/icon/okay.png") center center no-repeat;
}
#pwfit.fail {
    background: url("/img/icon/fail.png") center center no-repeat;
}

.pwdToggle {
    position: absolute;
    right: 8px;
    top: 36px;
    width: 20px;
    height: 17px;
    --outline: var(--main--blue--dark);
    cursor: pointer;
}

#callNotice {
    font-weight: bold;
    color: #ee953f;
    margin: 8px 0 4px 0;
}
#callNumber {
    color: #3799c7;
}
#retryValidationText {
    position: relative;
    top: -10px;
    left: 4px;
}
.ringing {
    position: relative;
    top: 0;
    animation-name: phoneRing;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    margin-right: 8px;
    float: left;
}
@keyframes phoneRing {
    0% {left:  0;}
    5% {left:  3px;}
    10% {left: 0;}
    15% {left: 3px;}
    20% {left: 0;}
    25% {left: 3px;}
    100% {left: 0;}
}

.contractSummary {
    position: relative;
}
.contractSummary .treeBadge {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 55px;
}
.contractSummary .summaryInfo {
    display: inline-block;
    color: #494949;
    margin: 2px;
    width: 99%;
}
.contractSummary .totalCost {
    border-top: 2px dotted #898989;
    margin-bottom: 0;
    padding-top: 2px;
}
.contractSummary .summaryInfo.deco {
    color: var(--main--blue--dark);
    font-weight: bolder;
    font-size: 110%;
}
#signup_alert .summaryInfo.deco {
    font-size: 130%;
    height: 25px;
}
#PriceFreeMailZero .summaryInfo.deco {
    margin-top: -1px;
    margin-bottom: 5px;
}
.contractSummary .summaryInfo.detail {
    margin-bottom: 8px;
}

.contractSummary .vat {
    font-size: 7pt;
    margin: 0 2px;
}

.contractSummary .pricing {
    float: right;
    text-align: right;
    margin-right: 8px;
}

#mdeRegModalPopup {
    position: fixed;
    z-index: 10000;
    top: 5vh;
    left: 5vw;
    height: 85vh;
    width: 90vw;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 0 10px 2px #fff;
    border: 1px solid var(--main--blue--dark);
}
#mdeRegModalPopup .mdePopupHead {
    text-align: right;
    background: var(--main--blue--dark);
    padding: 11px 15px;
    height: 40px;
}
#mdeRegModalPopup .mdePopupHead>a {
    color: #ffffff;
    text-decoration: none;
}
#mdeRegModalPopup>iframe {
    width: 100%;
    height: calc(100% - 40px);
    border: none;
}

#partnerList {
    background: #ffffff;
    margin: 15px 5px;
    border-radius: 6px;
    padding: 5px 25px;
    color: #494949;
}
#partnerList .service {
    margin-top: 30px;
}
#partnerList .service:first-child {
    margin-top: 0;
}
#partnerList .service>img {
    float: right;
}
#partnerList .service>h4 {
    margin-bottom: 2px;
}

.terms .info,
.terms {
    display: inline-block;
    font-size: 13px;
}
.terms {
    margin-bottom: 10px;
}
.terms .info {
    padding-top: 12px;
}

strong.deco,
label.info {
    color: #ee953f;
    font-weight: bold;
}
.footnote {
    font-size: 12px;
    /*padding: 5px 0;*/
    /*color: var(--main--blue--dark);*/
}
#submissionArea {
    text-align: center;
    margin: 30px 0 15px;
}
#submissionMask {
    position: absolute;
    width: calc(100% - 60px);
    height: 51px
}
#gotMail {
    text-align: center;
    margin: 12px 0;
    /*margin-top: 12px;*/
    /*margin-bottom: 2px;*/
}

#otLogin {
    position: relative;
    padding-top: 10px;
    width: 320px;
}
#otMask {
    width: 320px;
    height: 52px;
    font-size: 2em;
    padding: 8px;
    text-align: center;
    font-weight: bolder;
    display: inline-block;
    background: rgba(10, 10, 10,0.5);
    color: #ffffff;
    position: absolute;
}
#otButton {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background-color: var(--main--blue--dark);
}
#otButton:hover {
    background-color: var(--main--blue--dark--second);
}

@media (min-width: 400px) {
    .mastform .lead {
        width: 43%;
    }
}

@media (min-width: 500px) {
    .mastfoot .footcol {
        margin: 15px 0;
    }
}

@media (min-width: 600px) {
    .contractSummary .treeBadge {
        top: 5px;
        right: 15px;
        width: 75px;
    }
    .bsiCol img {
        margin-left: unset;
        margin-right: unset;
    }
}

@media (min-width: 640px) {
    html,
    body,
    .site-wrapper {
        height: 100%;
    }
    .logo {
        height: 45px;
        width: 168px;
        margin: 10px 0 13px;
    }
    .masthead-nav > li svg {
        height: 20px;
        width: 30px;
    }

    .inner {
        margin-left: 10px;
        margin-right: 10px;
    }

    .mastform .row.toggle {
        --toggleHeight: 74px;
    }

    .mastform {
        border-radius: 6px;
        padding: 15px 30px;
    }
    .mastform .lead {
        width: 45%;
    }
    .group-xs {
        /*max-width: 25%;*/
        min-width: 25%;
    }
    .group-s {
        /*max-width: 34%;*/
        min-width: 34%;
    }
    .group-sm {
        /*max-width: 42%;*/
        min-width: 42%;
    }
    .group-m {
        /*max-width: 50%;*/
        min-width: 50%;
    }
    .row {
        display: flex;
        gap: 25px;
    }
    .row > div {
        flex: 1 1 auto;
        /*width: 100%;*/
    }
    #premium_address_vatid-area {
        width: 275px;
        flex: 0 0 auto;
    }
    #premium_salutation-area {
        width: 100px;
        flex: 0 0 auto;
    }
    #premium_address_suffix-area {
        width: 45%;
        flex: 0 0 auto;
    }
    #premium_address_zip-area {
        width: 19%;
        min-width: 130px;
        flex: 0 0 auto;
    }
    #premium_address_country-area {
        width: 27%;
        min-width: 175px;
        flex: 0 0 auto;
    }
    .contractSummary .treeBadge {
        top: -14px;
        right: 15px;
        width: unset;
    }
    #bsiFree,
    #bsiZero {
        float: right;
        margin-left: 10px;
        margin-top: 0;
    }
    .terms {
        margin-bottom: 0;
        max-width: 325px;
    }
    .mastfoot .footcol img {
        max-width: 185px;
    }
}

@media (min-width: 675px) {
    #premium_product {
        width: 100%;
    }
}

@media (min-width: 815px) {
    .inner {
        margin: auto;
    }

    #disruptor {
        display: block;
    }
}