body {
    min-height: 100vh;
}

/* modals */

.modal-window {
    position: fixed;
    display: none;
    z-index: 20;
    width: 96%;
    background: #fff;
    top: 15%;
    left: 50%;
    margin-left: -48%;
    padding: 30px;
    box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
}

.modal-window.large-modal {
    top: 5%;
}

.modal-window.small-modal {
    width: 50%;
    left: 50%;
    margin-left: -25%;
}

.modal-window.no-scroll .modal-content {
    overflow: hidden;
}

.mediumScreen .modal-window.small-modal {
    width: 60%;
    left: 50%;
    margin-left: -30%;
}

.tablet .modal-window,
.tablet .modal-window.small-modal{
    width: 90%;
    background: #fff;
    top: 15%;
    left: 50%;
    margin-left: -45%;
    padding: 40px;
}

.tablet .modal-window.large-modal {
    top: 5%;
}

.phone .modal-window,
.tablet .modal-window.small-modal{
    width: 90vw;
    background: #fff;
    top: 5%;
    left: 50%;
    margin-left: -45vw;
    padding: 20px;
}

.phone .modal-window {
    padding: 10px;
}

.modal-backshadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.65);
    z-index: 10;
    width: 100vw;
    height: 100vh;
}

.modal-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -15px;
    right: -15px;
}

.modal-content {
    overflow-y: auto;
}

.tablet .modal-content,
.phone .modal-content{
    overflow-y: scroll;
}


body.modalopen {
    overflow: hidden;
}


/* tabs */
ul.tabs-list{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul.tabs-list li{
    background: none;
    color: #222;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    list-style-type: none;
}

ul.tabs-list li.current{
    background: #fff;
    color: #222;
}

.tab-content{
    display: none;
    background: #fff;
    padding: 15px;
}

.tab-content.current{
    display: inherit;
}

/* vertical tabs */
.tab-vertical:after {
    display: block;
    content: '';
    clear: both;
    height: 0;
    visibility: hidden;
}

.tab-vertical > .tabs-list-wrapper li {
    clear: both;
    display: block;
    width: 100%;
}

.tab-vertical > .tabs-list-wrapper,
.tab-vertical > .tabs-content-wrapper{
    float: left;
}

.tab-vertical > .tabs-list-wrapper {
    width: 25%;
}
.tab-vertical > .tabs-content-wrapper {
    width: 75%;
}






/* Message Dialog */
.tc-message-dialog {
    position: relative;
    display: none;
    width: 100%;
    border-radius: 5px;
    border: 1px solid;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.tc-success-message {
    border-color: #659f13;
    background: #f2fae3;
    color: #659f13;
}

.tc-warning-message {
    border-color: #e28327;
    background: #fffceb;
    color: #e28327;
}

.tc-error-message,
#invalidPostalCodeMessage{
    border-color: #d85030;
    background: #fff1f0;
    color: #d85030;
}

.tc-message-dialog .tc-close-dialog {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    background: none;
    color: #333;
}

.tc-message-dialog.tc-success-message .tc-close-dialog {
    color: #659f13;
}

.tc-message-dialog.tc-warning-message .tc-close-dialog {
    color: #e28327;
}

.tc-message-dialog.tc-error-message .tc-close-dialog {
    color: #d85030;
}



/* dropdown */
.tc-dropdown-wrapper {
    display: inline-block;
}

.tc-dropdown-trigger {
    cursor: pointer;
}

.tc-dropdown-panel {
    position: absolute;
    z-index: 9999;
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.3);
    display: none;
}

.tc-dropdown-panel li {
    padding: 0 0 ;
    display: block;
}

