@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');


/* TEMPLATE */

* {
    font-family: 'Roboto', sans-serif;
}

body {
    background: #ddd;
    color: #005;
    font-size: 14px;
    line-height: 1.5em;
    margin: 0;
}

h1,
h2,
h3 {
    color: #111;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 22px;
    margin: 15px 0 25px 0;
}

h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

img {
    border: 0;
    outline: 0;
}

a {
    color: #0005d7;
    font-weight: 500;
    
    &:hover {
        color: #0006ff;
        text-decoration: none;
    }
    
    &:active {
        color: #d10565;
    }
    
}


/* global  */


main{margin:0 auto;max-width:1200px;padding:0 30px}
hr{border:0;border-bottom:2px solid #bbb;background:transparent;margin:20px 0}
table{border-collapse:separate;border-spacing:0}
.clear{clear:both}
.hide{display:none}

/* content */

#body{padding:10px}
#content{background:#d2d2d2;border-radius:5px;box-sizing:border-box;color:#004;margin:30px auto;max-width:100%;padding:20px 30px;width:1200px}


/* COLUMNS */

.columns {
    display: flex;
    
    &>div {
        flex: 1;
    }
}


.twoCol{display:flex;margin:10px 0}
.twoCol>div{flex:1}
.twoCol>div .field>div{flex:0 0 220px}


/* BUTTONS */

.copy {
    background: #003996;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    margin-left: 13px;
    text-align: center;
    text-decoration: none;
    width: 85px;
    
    &:hover {
        background: #0b5ee7;
        color: #fff;
    }
}


/* TEXT STYLES */

.price {
    color: #6627f9;
    font-weight: 600;
    
    &:before {
        color: #006;
        content: ' ... @ ';
        margin-left: 5px;
    }
}

.bold{font-weight:700}
.center{text-align:center}
.black{color:#000}
.blue{color:#0000c9}
.green{color:#1b7b1e}
.maroon{color:#800}
.navy{color:#005}
.red{color:#c00}
.yellow{color:#ffd838}
.white{color:#fff}
.optional,.required{font-size:11px;font-weight:700;line-height:1.5}
.optional{color:#e76e02}
.required{color:#b20505}

/* lists */

ol{padding-inline-start:10px}
ol>li{margin:15px 0}
ol>li::marker{color:#cf06a2;font-style:italic;font-weight:700}
ul{padding-inline-start:25px}
ul>li{margin:10px 0}
ul>li::marker{color:#cf06a2}


/* BACKGROUNDS */

.graybg,.maroonbg,.navybg,.skybg,.yellowbg{border-radius:5px;margin:15px 0;padding:15px 20px}
.maroonbg{background:#770001;color:#fff}
.navybg{background:#004;color:#eee}
.skybg{background:#005be3;color:#fff}
.navybg a,.graybg a,.maroonbg a,.skybg a{color:#fff}
.yellowbg{background:#ffe400;color:#004;font-weight:500}
.yellowbg a{color:#007}

.graybg,
.silverbg {
    border-radius: 5px;
    margin: 15px 0;
    padding: 20px 25px;
}

.graybg {
    background: #666;
    color: #fff;
}

.silverbg {
    background: #cfcfcf;
}


/* generic header */

#genericHeader{background:url('/_agentnew/images/bg_b.gif');border-spacing:0;width:100%}
#genericHeader a{color:#eee;font-size:13.4px;font-weight:400}
#genericMenu{background:#242c79;display:flex;font-size:0;justify-content:space-around;line-height:0;margin-bottom:10px}
#genericMenu div{flex:1;font-size:13.4px;line-height:2;text-align:center}
#genericMenu a{color:#eee;font-weight:500}


/* GENERIC TABLE */

.tbl {
    border: 2px solid #004;
    box-shadow: 0 0 3px #999;
    font-size: 14px;
    margin: 10px 0;
    width: 100%;
    
    th {
        background: #004;
        color: #fff;
        font-weight: 500;
        padding: 13px;
        text-align: center;
        
        a {
            color: #fff;
        }
    }
    
    tr {
        td {
            background: #fff;
            padding: 13px;
            text-align: center;
            
            &+td {
                border-left: 1px dotted #004;
            }
        }
        
        &:not(:last-child) td {
            border-bottom: 1px solid #004;
        }
    }
}


/* agent access header */

#agentHeader{background:#002979;border-spacing:0;color:#d3def3;display:flex}
#agentHeader>div:first-child{align-self:center;flex:0 0 250px;text-align:center}
#agentHeader>div:first-child #hsLogo{margin:0 0 10px;max-width:100%}
#agentHeader>div:first-child #agentName{color:#fff;font-size:14px;line-height:1.3}
#agentHeader>div:last-child{border-left:1px solid #546689;flex:1}
#agentHeader a{color:#fff;font-weight:500;text-decoration:underline}
#agentHeader a:hover{color:#ffdc75}

#agentMenu {
    column-count: 3;
    column-gap: 20px;
    line-height: 1;
    padding: 10px;
    width: fit-content;
    
    &>div {
        padding: 7px 0;
        
        &:before {
            content: attr(data-num) '.';
            display: inline-block;
            font-style: italic;
            margin-right: 6px;
            text-align: right;
            width: 20px;
        }
        
        a.active {
            color: #9be3e3;
        }
    }
}

#agentStars{column-gap:1px;display:flex;margin:0 0 1px 1px;width:900px}
#agentStars>div{background:#546689;color:#d3def3;flex:1;font-size:13px;line-height:1.3;padding:5px;text-align:center}

#agentNav{background:#002979;border-top:1px solid #546689;box-shadow:0 4px 4px rgb(170 170 170 / 40%);color:#d3def3;display:flex;font-size:13.4px;justify-content:space-evenly;margin-bottom:30px;padding:10px 0}
#agentNav>div{text-align:center}
#agentNav a{color:#fff;font-weight:500}
#agentNav a:hover{color:#effefe}

/* tour type tabs */

#tourTypeTabs{align-items:center;column-gap:20px;display:flex;justify-content:center}
#tourTypeTabs>span{border-radius:5px 5px 0 0;color:#eee;cursor:pointer;flex:0 0 180px;font-size:13.4px;line-height:1.5;padding:10px 0;text-align:center;text-decoration:underline}
#tourTypeTabs>span:hover{color:#fff;font-weight:500;text-decoration:underline}
#tourTypeTabs>span.active{color:#fff;font-weight:500;text-decoration:none}
#tourTypeTabs>span#tab1,div#content1{background:#284fa0}
#tourTypeTabs>span#tab3,div#content3{background:#882728}
#tourTypeTabs>span#tab4,div#content4{background:#417731}
#tourTypeTabs>span#tab5,div#content5{background:#b0724a}
#tourTypeTabs>span#tab6,div#content6{background:#7f5509}
.tourTypeContent{border-radius:5px;box-sizing:border-box;color:#fff;font-size:13.4px;line-height:1.7;margin:0 auto;padding:25px}
.tourTypeContent a{color:#ffd80b;font-size:17.4px;font-weight:700;margin:0 3px}
.tourTypeContent img{box-shadow:0 0 10px rgb(0 0 0 / 40%);max-width:800px}
.tourTypeContent p{margin:30px 0}
.tourTypeContent hr{border-bottom:1px dotted rgb(221 221 221 / 50%);margin:35px 0}
#tourTypeFeatures{display:grid;font-size:13.4px;grid-column-gap:8px;grid-row-gap:13px;grid-template-columns:repeat(3,350px);justify-content:center;line-height:13px;margin:20px 0}
#tourTypeFeatures span:before{content:'\2022';margin-right:5px}

/* list agent tours */

.tourRow{align-items:center;border-bottom: 1px solid #bbb;column-gap:20px;display:flex;font-size:15px;justify-content:space-between;line-height:1.7;margin:0 auto 20px auto;padding-bottom:20px;width:1050px}
.tourRow>div{text-align:center}
.tourRow>div:first-child{flex:0 0 302px}
.tourRow>div:nth-child(2){flex:0 0 140px;text-align:center}
.tourRow>div:nth-child(3),.tourRow>div:nth-child(4){flex:1}
.toursPaging{align-items:center;background:#ccc;border-radius:3px;display:flex;flex-wrap:wrap;font-size:0;gap:10px 20px;justify-content:center;line-height:0;margin:20px 0;padding:15px;text-align:center}
.toursPaging span{color:#000;font-size:15.4px;font-weight:400;line-height:1}
.toursPaging span a{color:#070}


/* MANAGE TOUR MENU */

#manageTour {
    background: #c5c5c5;
    border-radius: 6px;
    column-gap: 35px;
    display: flex;
    font-size: 17px;
    padding: 35px;
    
    &>div {
        flex: 1;
        
        &>div {
            padding: 10px 0;
            
            &:before {
                content: attr(data-num) '.';
                display: inline-block;
                font-style: italic;
                font-weight: 700;
                margin-right: 9px;
                text-align: right;
                width: 25px;
            }
            
            div.info {
                font-size: 14px;
                padding-left: 40px;
            }
            
            span.disabled {
                color: #87879d;
            }
        }
    }    
}


/* MANAGE TOUR POPUP */

#orderAddons {
    margin: 0 auto;
    max-width: 1150px;
    padding: 0 5px 5px 5px;
    
    p {
        margin: 7px 0;
    }
}

#orderAddons .orderItem{margin:30px 0}
#orderAddons .orderItem label{font-weight:500;margin-right:30px}
#orderAddons .orderItem label input[type=checkbox]{height:16px;margin:0 5px 0 0;vertical-align:middle;width:16px}
#orderAddons .orderSubitem{line-height:25px;margin:10px 0 10px 57px}
#orderAddons .orderItemNum{color:#222;display:inline-block;font-weight:700;margin-right:6px;text-align:right;width:20px}
#orderAddons .orderItemNum:after{content:')'}
#orderAddons .orderItemInfo{color:#206100;margin:10px 0 10px 57px}

/* manage tour main - property header */

#tourHeader{align-items:center;display:flex;font-size:16px;justify-content:space-between;line-height:1.7}
#tourHeader>div{flex:1;text-align:center}
#tourHeader>div:first-child,#tourHeader>div:last-child{flex:0 0 320px}
#tourHeader>div:last-child hr{border-bottom-width:1px}
.tourThumb{border:1px solid #fff;border-radius:5px;box-shadow:0 0 2px #333}
.tourThumb:hover{border-color:#ddd}



/* MANAGE TOUR - POPUP HEADER */

#propHeader {
    align-items: center;
    background: #ccc;
    border-radius: 0 0 5px 5px;
    display: flex;
    justify-content: space-between;
    line-height: 1.5em;
    padding: 10px;
    
    &>div {
        flex: 1;
        text-align: center;
        
        &:nth-child(1) {
            em {
                color: #000;
                display: block;
                line-height: 1.2em;
                padding-top: 10px;
            }
            
            img {
                margin-bottom: 10px;
            }
        }
        
        &:nth-child(2) img {
            max-height: 140px;
        }
    }
}


/* MANAGE TOUR POPUP - MODIFY IMAGES */

.manageTourImages {
    background: #ccc;
    border-radius: 5px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    
    &>div {
        &:nth-child(1) {
            align-self: center;
            flex-basis: 300px;
            text-align: center;
            
            &>div:first-child {
                margin-bottom: 15px;
            }
            
            label {
                border-bottom: 1px dotted #006;
            }
            
            input[type=radio] {
                height: 20px;
                width: 20px;
            }
        }
        
        &:nth-child(2) {
            flex: 1;
            font-weight: 500;
            position: relative;
            
            &>div {
                margin-bottom: 14px;
            }
            
            button {
                bottom: 0;
                position: absolute;
                right: 0;
            }
            
            .manageTourImagesDescriptionCnt {
                color: #666;
                font-size: 11px;
                font-weight: 400;
                line-height: 1;
                padding: 5px 0 0 5px;
                
                span {
                    font-weight: 700;
                }
            }
        }
    }
}


/* MANAGE TOUR POPUP - CHOOSE PHOTOS */

.selectTourImages {
    color: #000;
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    gap: 45px;
    justify-content: center;
    
    .selectTourImageBox {
        display: flex;
        flex: 0 0 250px;
        flex-direction: column;
        gap: 5px;
        position: relative;
        text-align: center;
        
        input[type=checkbox] {
            accent-color: #1f8135;
            height: 19px;
            margin: 0;
            width: 19px;
        }
        
        input[type=number] {
            color: #00a;
            font-weight: 500;
            text-align: center;
        }
        
        img {
            max-width: 100%;
        }
        
        .selectTourImageBoxHidden {
            backdrop-filter: blur(5px);
            background: rgb(0 0 0 / 50%);
            border-radius: 0 5px 0 5px;
            color: #fff;
            font-style: italic;
            line-height: 1em;
            padding: 4px;
            position: absolute;
            right: 0;
            top: 1px;
        }
    }
}


/* manage tour popup - choose melodies */

#musicCategories{display:grid;gap:30px;grid-template-columns:repeat(4,1fr);line-height:1.8}
#musicCategories img{vertical-align:middle}


/* FORM LAYOUT */

form{margin:0;padding:0}
label{font-weight:500;margin-right:2px}

.field-row{font-size:13.4px;font-weight:500;line-height:1.5;margin:9px 0;min-height:30px;vertical-align:middle}
.field-row>span:first-child{display:inline-block;line-height:30px;margin-right:8px;text-align:right;width:290px}

.field-block{display:flex;font-weight:500;margin:9px 0}
.field-block>div:first-child{flex:0 0 290px;line-height:30px;margin-right:11px;text-align:right}
.field-block>div:nth-child(2){flex:1}

.field-options{margin:17px 0;padding:0 20px}
.field-options>div{column-gap:10px;display:flex;margin:13px 0}
.field-options>div>div:first-child{flex:0 0 25px;text-align:center}
.field-options>div>div:first-child input[type=radio],.field-options>div>div:first-child input[type=checkbox]{height:16px;width:16px}

.error{background:#ffe109;border:1px solid #004;border-radius:5px;box-sizing:border-box;font-weight:500;line-height:1.5;padding:10px;margin:0 auto 30px auto;text-align:center}
.errorField{background:#ffe109!important}

.field {
    column-gap: 20px;
    display: flex;
    font-size: 14px;
    line-height: 35px;
    padding: 8px 0;
    
    &>div:nth-child(1) {
        flex: 0 0 265px;
        font-weight: 500;
        text-align: right;
    }
    
    &>div:nth-child(2) {
        align-self: center;
        flex: 1;
        line-height: 1.4;
        
        em {
            color: #222;
            font-size: 13px;
            font-weight: 400;
            margin-left: 10px;
        }
    }
}

.columns .field > div:nth-child(1) {
    flex-basis: 240px;
}

body#orderAddons .field-opts {
    gap: 30px;
    
    .field-opts {
        gap: 10px;
        padding: 0;
    }
}

.field {
    .field-opts {
        padding: 5px 0;
    }
}

.field-opts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    
    &>div {
        display: flex;
        gap: 15px;
    }
    
    label {
        border-bottom: 1px dotted rgb(0 0 102 / 30%);
    }
    
    input[type=radio],
    input[type=checkbox] {
        accent-color: #1f8135;
        height: 20px;
        margin: 0;
        vertical-align: middle;
        width: 20px;
    }
    
    .field > div:nth-child(1) {
        flex: 0 0 150px;
    }
    
    .field-opts {
        gap: 10px;
        padding: 0;
    }
}

.field-submit {
    margin: 40px 0;
    text-align: center;
    
    button {
        margin: 0 10px;
    }
}

.saveBar {
    backdrop-filter: blur(5px);
    background: rgb(0 0 0 / 50%);
    border-color: #3f3f3f;
    border-radius: 5px 0 0 0;
    border-style: solid;
    border-width: 0px;
    bottom: 0px;
    box-shadow: 0 0 10px rgb(134 134 134 / 50%);
    padding: 15px 25px;
    position: fixed;
    right: 0px;
}

/* FORM FIELDS */

input[type=checkbox],input[type=radio],label,select,button{cursor:pointer}
input[type=radio]{margin:-1px 6px 0 0;vertical-align:middle}
input[type=checkbox]{vertical-align:middle}

input[type=number],
input[type=text],
input[type=password] {
    height: 35px;
    padding: 0 7px;
    width: 240px;
    
    &.field-sm {
        width: 90px;
    }
}

input[type="number"] {
    width: 90px;
    
    &::-webkit-outer-spin-button,
    &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
}

input[type=date] {
    height: 35px;
    padding: 0 7px;
    width: 130px;
}

select {
    min-height: 35px;
    padding: 0 5px;

    option {
        font-weight: 400;
        padding-bottom: 4px;
        padding-top: 4px;
        
        &:checked {
            background: #009;
            color: #fff;
            font-weight: 500;
        }
    }
}

textarea {
    line-height: 19px;
    min-height: 80px;
    padding: 7px;
    width: 100%;
}

input[type=number],
input[type=date],
input[type=text],
input[type=password],
select,
textarea
{
    background: #f8f8f8;
    border: 1px solid #5f5f75;
    border-radius: 3px;
    box-shadow: 2px 2px 2px inset rgb(180 180 180 / 30%);
    color: #002;
    font-size: 14px;
    outline: 0;
    
    &::placeholder {
        color: #999;
        font-weight: 400;
    }
    
    &:disabled {
        background: #bbb;
        border-color: #888;
        box-shadow: none;
        color: #666;
        cursor: not-allowed;
    }
    
    &:focus {
        background: #fff;
        border-color: #1e1eb5;
    }
}

button,
.button {
    background: #f8f8f8;
    border: 1px solid #444;
    border-bottom-width: 2px;
    border-radius: 4px;
    color: #002;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.1;
    height: 35px;
    outline: 0;
    padding: 7px 15px;
    text-decoration: none;
    vertical-align: bottom;
    
    &:not(:disabled) {
        &:hover {
            background: #fff;
            border-color: #008;
            color: #008;
        }
        
        &:active {
            box-shadow: inset 2px 2px 5px -3px rgb(10 10 10);
            filter: brightness(.5);
        }
    }
    
    &:disabled {
        background: #aaa;
        border-color: #777;
        color: #666;
        cursor: not-allowed;
    }
}


/* order tour */

#orderAgreement{background:#f8f8f8;box-shadow:0 0 10px #aaa;color:#222;font-size:13.4px;height:470px;line-height:1.8;overflow-y:scroll;margin:30px 0;padding:30px}
#orderAgreement p{margin:0}

#orderId{background:#242c79;color:#d3def3;column-gap:45px;display:flex;font-size:0;justify-content:center;line-height:0;margin:0 auto;max-width:1100px;padding:12px 0}
#orderId>div{font-size:14px;line-height:1}
#orderId>div strong{color:#fff}

#orderTicker{background:#ccc;border-radius:0 0 10px 10px;color:#242f7a;font-style:italic;font-weight:500;margin:0 auto;max-width:1100px;padding:5px 0;text-align:center}

#orderNav{align-items:center;border-bottom:2px solid #bbb;display:flex;justify-content:space-between;margin:0 auto 30px auto;max-width:1100px;padding:17px 0}
#orderNav #orderNavCancel{}

#orderTour{margin:0 auto 30px auto;max-width:1100px}

#orderFeatures{background:#ccc;border-radius:5px;box-sizing:border-box;display:none;margin:30px auto;padding:25px;width:1100px}
.orderRoomFeatures{display:grid;grid-column-gap:5px;grid-row-gap:8px;grid-template-columns:repeat(4,1fr);margin-top:10px}

.orderTwoCol{background:#ccc;border-radius:5px;display:flex;margin:20px 0}
.orderTwoCol>div{flex:1}
.orderTwoCol>div .field>div:first-child{flex:0 0 210px}

#orderPackage{background:#fff;border-radius:6px;box-shadow:0 0 10px #aaa;margin:5px auto;text-align:center;width:270px}
#orderPackageTitle{background:#242c79;border-radius:6px 6px 0 0;color:#fff;font-size:15px;font-weight:500;line-height:16px;padding:15px 0}
#orderPackagePrice{background-image:url(/_images/site/gold_oval.png);background-repeat:no-repeat;background-size:100%;display:inline-block;font-size:27px;font-weight:700;height:90px;line-height:90px;margin:15px 0;width:175px}

#orderTabs{font-size:0;line-height:0;list-style:none;margin:0;padding:0;text-align:center}
#orderTabs li{border-radius:5px 5px 0 0;display:inline-block;font-size:13.4px;line-height:1.4;margin:0 5px;text-align:center;width:250px}
#orderTabs li#tab1{background:#004}
#orderTabs li#tab2{background:#005be3}
#orderTabs li#tab3{background:#770001}
#orderTabs li a{color:#fff;display:block;font-weight:500;padding:15px 0;text-decoration:underline}
#orderTabs li.active a{cursor:default;text-decoration:none}

.orderAddonProduct{padding:0 0 15px 20px;margin:10px 20px;text-indent:-40px}
.orderAddon{border-bottom:1px solid #bbb;padding:15px;position:relative}
.orderAddon.orderAddonActive{background:#f3f1e8}
.orderAddonHeader{align-items:center;display:flex;font-size:0;line-height:0;justify-content:space-between}
.orderAddonHeader>div{font-size:16.4px;line-height:1}
.orderAddonHeader>div:first-child span{border-bottom:1px dotted #0707b7;color:#0707b7;cursor:pointer;font-weight:500}
.orderAddonHeader>div:first-child span:hover{border-bottom:1px solid #00f;color:#00f}
.orderAddonHeader>div:first-child em{color:#b5013e;font-style:italic;font-weight:900;margin-left:10px}
.orderAddonHeader>div.orderAddonAdd label{color:#1f8135;font-size:14.4px;font-style:italic;font-weight:900}
.orderAddonHeader>div.orderAddonAdd label:hover{color:#419741}
.orderAddonHeader>div.orderAddonAdd input[type=checkbox]{accent-color:#1f8135;height:17px;vertical-align:text-top;width:17px}
.orderAddonDetails{border-left:2px solid #bbb;display:none;line-height:1.9;margin-top:15px;padding:0 0 0 25px}
.orderAddonDetails input[type=text],.orderAddonDetails select{margin-right:3px}
.orderAddonDetails textarea{margin:5px 0}
.orderAddonExamples{align-items:center;display:flex;flex-wrap:wrap;gap:20px;justify-content:center;margin-top:20px;max-height:300px;overflow-y:auto}
.orderAddonExamples>div{font-weight:500;text-align:center}
.orderAddonExamples img{border:1px solid #ddd;border-radius:5px;box-shadow:0 0 2px #333;margin-top:5px;max-width:100%}
#orderAddonsAction{font-size:15px;font-style:italic;font-weight:700;margin:30px 0;text-align:center}
.orderAddonCost{color:#9f0036;font-style:italic;font-weight:700}
.orderAddonOption{margin:12px 20px;text-indent:-25px}
.orderAddon label{font-weight:500;margin-right:5px}

#orderSummary {
    div {
        padding: 4px;
    }
}

/* DIY TOUR UPLOAD */

#uploadField {
    display: none;
}

#uploadMessage i {
    margin-right: 10px;
}

#uploadButton {
    background: #2656af;
    border: 1px solid #193c7c;
    border-radius: 4px;
    box-shadow: 0 0 5px #888;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1em;
    padding: 10px 20px;
    text-transform: uppercase;
    
    &:hover {
        background: #4773c5;
    }
    
    &:active {
        box-shadow: inset 0 0 10px 0 rgb(0 0 0 / 40%);
    }
    
    &.disabled {
        background: #bbb;
        border-color: transparent;
        box-shadow: none;
        color: #ddd;
        cursor: not-allowed;
    }
}

#uploadProgess {
    background: #006;
    border-radius: 5px;
    color: #fff;
    padding: 0 10px;

    &>div {
        align-items: center;
        color: #bbb;
        display: flex;
        gap: 20px;
        padding: 20px 5px;
        
        &>div {
            &:nth-child(1) {
                flex: 0 0 35px;
                font-size: 25px;
                text-align: center;
            }

            &:nth-child(2) {
                color: #fff;
                flex: 1;
            }
        }
        
        &+div {
            border-top: 1px dashed #bbb;
        }
    }
}

/* printing  */

@media print{
    .hideforprint,.noPrint,.noPrint{display:none}
    #orderAgreement{background:#fff;border:none;box-shadow:none;font-size:14px;height:auto;line-height:1.4;overflow-y:visible;margin:0;padding:0}
}