﻿body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.section-header-orderitems {
    margin-bottom: 24px;
    font-family: 'DIN Next';   
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #05396B;
}

.price-list-switch-wrapper {
    display: flex;
    align-items: center;
}

.PricelistSwitch {
    display: inherit;
    width: 0;
    height: 0;
    visibility: hidden;
}

.price-list-switch-label {
    display: inline-block;
    overflow: unset;
    margin-top: 5px !important;
    width: 40px;
    height: 20px;
    background-color: #d0d0d0;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
}

.price-list-switch-label::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    position: absolute;
    border-radius: 70px;
    top: 0px;
    left: 0px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    transition: 0.5s;  
}

.PricelistSwitch:checked + label {
    background-color: #249f0b;
}

.PricelistSwitch:checked + label:after {
    left: calc(100%);
    transform: translateX(-100%);
}

.ship-together-label {
    margin-left: 16px;    
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;  
    color: #222222;
}

.validationMessage {
    color: #AB2328;
}

input[readonly], input[readonly]:hover {
    cursor: auto;
}

.wrap.black {
    margin-top: auto;
}

label {
    display: block;
}

.required:after {
    content: " *";
    color: #f00;
}

.text-danger {
    display: block;
}


h3, .newcustomerform-header {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #222222;
    font-family: 'DIN Next';
}

.newcustomerform-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form-statement {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    margin-top:5px;
}
.header-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;   
    margin-right: 16px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #8a8a8a;
    background-color: #0077b2;
    border-color: #0077b2;
    color: #fff;
}

.section-header {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #05396B;
    margin-bottom: 6px;
    font-family: 'DIN Next';
}
    .section-header.newcustomer {
        margin-bottom: 8px;
    }
 

.flex-wrapper {
    display: flex;    
}

label {
    margin: 0px;
    font-weight: bold;
}

.section-wrapper input[type=text]:disabled {
    background: #F2F2F2;
}

/* Custom Radio Buttons*/
.radio input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio {
    padding-left: 0px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 8px;
}

.radio.last {
     margin-bottom: 0px;
}

.radio input[type="radio"] + label {
     font-weight: 400;    
}

.radio input[type="radio"] + .radio-label:before {
    content: "";
    background: white;
    border-radius: 100%;
    border: 1px solid #acacac;
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    top: 4px;
    margin-right: 8px;    
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.radio input[type="radio"]:checked + .radio-label:before {
    background-color: white;
    box-shadow: inset 0 0 0 4px #0077b2;
}

.radio input[type="radio"]:focus + .radio-label:before {
    outline: none;
    border-color: #0077b2;
}

.radio input[type="radio"]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f8fc;
    border-color: #90b8e1;
    background: #90b8e1;
}

.radio input[type="radio"] + .radio-label:empty:before {
    margin-right: 0;
}

/* End Custom Radio Buttons */

/* Custom Check Boxes */
.mycheckbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.mycheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.mycheckbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.mycheckbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid black;
    border-radius: 4px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.mycheckbox input:checked ~ .checkmark {
    border-color: #0077b2;
}

/* Show the checkmark when checked */
.mycheckbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.mycheckbox .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 11px;
    border: solid #0077b2;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* End Custom Check Boxes */
.special-instructions{
    max-width: 100%
}
.section-wrapper label {
    margin-top: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
}
.strain-info-column label {
    margin-bottom: 4px;
}
.section-wrapper a {
    font-weight: 700;
    color: #0077B2;
}

.section-wrapper input[type=text], .section-wrapper input[type=email], 
 .section-wrapper input[type=password], .section-wrapper input[type=date], 
 .section-wrapper input[type=number], .section-wrapper input[type=datetime] {
    padding: 8px 16px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #8A8A8A;
    border-radius: 0px;
    margin-bottom: 0px;
}

.section-wrapper .search-box-wrapper {
    display: flex;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 10px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #8A8A8A;
}

.section-wrapper .search-box-wrapper .magnifying-glass {
    width: 25px;
    height: 25px;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.section-wrapper #MouseLookup_StockNumber, .section-wrapper #MouseLookup_StockNumber:focus {
    padding-left: 0;
    height: 42px;
    border: none;
    outline: none;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.section-wrapper .phonenumber {
   color: #0077B2;
   font-weight: 700
}
.section-wrapper .has-error .input-group-addon {
    color: #AB2328;
    border-color: #AB2328;
}
.section-wrapper .text-danger {
    color: #AB2328;
}
.section-wrapper .strain-status {
    display: flex;
}
.section-wrapper .strain-info-column {
    width: 33.33333333333333%;
}
.section-wrapper .tooltip, .price-header .tooltip {
    position: relative;
    display: inline-block;
    width: 16px;
    line-height: 24px;
    color: #0077B2;
    opacity: 1
}
.section-wrapper .tooltip img, .price-header .tooltip img {
    padding-left: 4px;
    padding-bottom: 4px;
}
.price-header .tooltip img {
    padding-bottom: 20px;
}
.section-wrapper .tooltiptext, .price-header .tooltiptext {
    overflow-wrap: break-word;
    visibility: hidden;
    padding: 2px;
    background-color: #222222;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 15;
    box-shadow: 1px 1px 5px #222222;
    min-width: 13vw;
    max-width: 25vw;
    margin-left: -20px;
    margin-top: 2px;
    /*bottom: 120%;
    left: -20px;*/
}
.price-header .tooltiptext {
    margin-top:24px;
}
.section-wrapper .tooltip:hover .tooltiptext,
.price-header .tooltip:hover .tooltiptext {
    visibility: visible;
}
.section-wrapper .tooltiptext a,
.price-header .tooltiptext a {
    color: white;
    font-weight: 600;
    font-size: 14px;
}
.section-wrapper .tooltip .tooltiptext::after,
.price-header .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 22px;
    border: 8px solid transparent;
    border-bottom-color: #222222;
}
.readily-available {
    color: #048700;
}
.strain-status {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #0077B2;
}

#AddMouseNavigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#btnCancelAddMouse {
    text-align: center;
    padding: 8px 16px;
    width: 131px;
    height: 40px;
    border: 1px solid #0077B2;
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.005em;
    color: #0077B2;
}

#btnAddMouse {
    text-align: center;
    padding: 8px 16px;
    width: 152px;
    height: 40px;
    background: #0077B2;
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;  
    letter-spacing: 0.005em;
    color: #FFFFFF;
}

#btnCancelAddMouse:hover, #btnAddMouse:hover, #btnCancelAddMouse:visited, #btnAddMouse:visited {
    text-decoration: none;
}

.special-instruction-desc {
    background: #FFFFFF;
    max-width: 80%;
}

.readytobecome {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: thin solid #BEBEBE;
}

.readytobecome ul {
    margin-bottom: 0px;
    padding-top: 4px;
    padding-bottom: 0px;
}

.readytobecome ul li {   
    font-size: 16px;
    line-height: 24px;
}

.readytobecome p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 8px;
    margin-bottom: 0px;
}

.k-toast-wrapper {
    display: none;
    margin-bottom: 24px;
}

.k-toast-wrapper.active {
    display: flex;
    justify-content: center;
}

.k-toast {
    display: flex;
}

.k-toast .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 40px;
    background: #048700;
}

.k-toast .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px 0px 16px;
    width: 890px;
    height: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #046b00;
    background: linear-gradient( 0deg, rgba(175, 225, 171, 0.5), rgba(175, 225, 171, 0.5) ), #ffffff;
    border: 1px solid rgba(4, 135, 0, 0.3);
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
}
.k-toast .close {
        font-size: 16px;
}

.k-toast .close {
    cursor: pointer;
}

.your-order {
    opacity: 0;
    transform: translateX(-25%);
    transition: 0.3s ease-in-out;
}

.your-order.active {
    opacity: 1;
    transform: translateX(0);       
}

.your-order .strain-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
}

.your-order .stock-number {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;   
    text-decoration-line: underline;
    text-transform: capitalize;
    color: #0077B2;
}

.your-order div:not(.section-header) {
    margin-bottom: 4px;
}

.your-order .requested-ship-date, .your-order .quantity {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #565656;
}

.your-order .description {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #565656;
}

sup {
    top: -5px;
    font-size: 80%;
}

.header-main-wrap {
    z-index: 998;
}

.validation-error 
{
    color: red;
    font-size: .7em;
    display: none;
    margin-bottom: 20px;
    white-space: nowrap;
}

.field-error 
{
    border: 1px solid red;
    margin-bottom: 0px;
}

.required:after 
{    
    content: '*';
    margin-left: 5px;
    font-size: 1.2em;
    color: red;
}

form 
{
    padding-bottom: 0px;
    margin-bottom: 0px;
}

table[role="grid"] thead > tr > th {
    /*font-size: .7em;*/
    text-align:center;
    vertical-align: top;
    border-left: 1px solid silver;
    border-right: 1px solid silver;
    border-bottom: 1px solid silver;
    padding: 5px 10px;
}

table[role="grid"] tbody > tr > td {
    /*font-size: .7em;*/
    text-align: center;
    vertical-align: top;
    padding: 5px 10px;
}

table[role="grid"] {
    border: 1px solid silver;
}

select {
    padding: 8px 16px;
    height: 44px;   
    border: 1px solid #8A8A8A;
    border-radius: 0px;
    margin-bottom: 0px;
    background: url(https://www.jax.org/SearchAppContent/images/dropdown-arrow.svg) no-repeat;
    background-position: calc(100% - .75rem) !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    padding-right: 2rem !important
}

.orderform-wrapper {
    display: flex;
    justify-content:center;
}

#OrderForm {
    max-width: 890px;
}

.section-wrapper {
    margin-bottom: 24px;
    width: 100%;
    background: #ffffff;
    border: 8px solid #f4f8fc;
    padding: 24px 24px;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.15);
    font-family: 'Source Sans Pro';
    font-size:16px;
}

.orderitems-shipping-together .orderitems.section-wrapper {
    margin-bottom: 0px;
    border-color: #E5F6FF;
}

.orderitems-shipping-together .orderitems.section-wrapper:last-of-type {
    margin-bottom: 24px;   
}

.orderitems {
    position: relative;
}

.editMouse {
    position: absolute;
    right: 20px;
    top: 24px;
    width: 25px;
    height: 24px;
    background-image: url('https://www.jax.org/SearchAppImages/Icons/ellipsis.svg');
    background-repeat: no-repeat;
    background-position: 3px 9px;
    cursor: pointer;
}

.editMouse.active {
    background-color: #E7F3FE;
}

.editMouseOptions {

    top: 24px;
    right: 0px;
    height: fit-content;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #0077B2;
    width:50%;

}
    .orderitems a {
        padding: 0 8px;
    }
.editMouseOptions div {
    margin-bottom: 5px;
    display:flex;
    float:right;
}

.editMouseOptions .edit:before, .editMouseOptions .remove:before {
    font-family: FontAwesome;
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    background-size: 16px 16px;
    height: 16px;
    width: 16px;
    display: inline-block;
    position: relative;
    right: 4px;
    bottom: 2px;
    content: '';
}

.editMouseOptions .edit:before {
    background-image: url(https://www.jax.org/SearchAppImages/Icons/edit.svg);
}
.editMouseOptions .remove:before {
    background-image: url(https://www.jax.org/SearchAppImages/Icons/trash.svg);
}
    .orderitems .header{

    }
    .orderitemsTitle {
    width: 50%;
    }

    .orderitemsTitle a {
        padding-left: 0;
        text-decoration: none!important;
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
    }
    .orderitemsDescription {
    display: flex;
    flex-direction: column;
    }
        .orderitemsDescription div {
            display: flex;
            padding: 3px 0;
            font-size: 16px;
            line-height: 28px;
            font-weight:400;
        }
            .orderitemsDescription div label {
                display: flex;
                align-items: center;
                margin:0;
            }
            .orderitemsDescription div div {
                max-width:90%
            }
            .editMouse.active {
                display: flex;
                align-items: center;
            }

.editMouse.active .editMouseOptions {
    display: block;
}

.orderitems a {
    text-decoration: underline;
    font-weight:600;
}

.orderitems > div {
    display: flex;
}

.colMiddle {
    width: 38%;
    margin-bottom: 10px;
}

.colLeft {
    width: 32%;
    margin-bottom: 24px;
}


.orderitems label {
    display: block;
    margin-top: 0px;
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #222222;
}

.orderitems textarea {
    width: 100%;
    height: 100px;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #bebebe;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

#ShowAddMouseForm {
    margin-top: 10px;   
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #0077B2;
}

.previous-button {
    padding: 8px 16px;
    text-align: center;
    width: 132px;
    height: 40px;
    border: 2px solid #0177B2;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #0177B2;
}

.next-button {
    padding: 8px 16px;
    text-align: center;
    width: 131px;
    height: 40px;
    border: 2px solid #0177B2;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.005em;
    color: #FFFFFF;
    background: #0177B2;
}

.previous-button:hover, .previous-button:visited, .previous-button:focus {
    color: #0177B2;
    text-decoration: none;
}

.next-button:hover, .next-button:visited, .next-button:focus {
    color: #FFFFFF;
    text-decoration: none;
}

.payment-tabs {
    display: flex;  
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
}

.payment-tabs input[type=radio] {
    display: none;    
}

.payment-tabs label {  
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 27px;
    height: 40px;
    border-bottom: 4px solid #ffffff;
    cursor: pointer;
}

.payment-tabs input[type=radio]:checked + label {
    color: #007CBA;   
    font-weight: 600;
    border-bottom: 4px solid #007CBA;
}

#lblAccept, #lblSaveData {
    margin-bottom: 0px;
}

#GoToMiceSearch, #GoToCatalogPage {
    width: 162px;
    height: 40px;
    padding: 8px 16px;
    background: #0177B2;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    /*letter-spacing: 0.005em;*/
    color: #FFFFFF;
}

#submitOrderResponse {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #2D3648;
    margin-left: 16px;
}

#ExcludedAgents label {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #222222;
    margin: 0px;
}

#ExcludedAgents label .checkmark {
    top: 4px;
}

#Page_4 label .checkmark {
    top: 2px;
}

#NewCustomerForm {
    max-width: 890px;
    width: 100%;
}

#search-tabs {
    width: 790px;
    position: absolute;
    top: 40px;
    right: -15px;
    z-index: 650
}

@media (max-width: 1230px) {
    #search-tabs {
        width: 600px
    }
}
@media (max-width: 992px) {
    #search-tabs {
        overflow: hidden;
        max-width: 0px;
        width: 100%;
        position: fixed;
        top: 0;
        right: 0;
        -moz-transition: max-width 0.2s;
        -o-transition: max-width 0.2s;
        -webkit-transition: max-width 0.2s;
        transition: max-width 0.2s
    }
    .search-open #search-tabs {
        max-width: 1000px
    }
}
@media (max-width: 768px) {
    .search-open #search-tabs {
        max-width: 800px
    }
}
#search-tabs ul {
    margin: 0;
    padding: 0
}
@media (max-width: 992px) {
    #search-tabs ul {
        display: none
    }
}
#search-tabs ul li {
    list-style: none;
    display: inline-block;
    text-align: center;
    width: 175px;
    margin: 0;
    font-family: "DIN Next W01 Medium", Helvetica, Arial, sans-serif;
    font-size: 14px
}
#search-tabs ul li a {
    display: block;
    color: #fff;
    background-color: #009ed0;
    padding: 10px 0;
    transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
}
#search-tabs ul li a:hover {
    text-decoration: none;
    background-color: #05396b;
}
#search-tabs ul li.active a {
    background-color: #05396b
}
#search-tabs .SForm {
    margin: 0;
    position: relative;
    display: none;
    background-color: #05396b;
    padding: 10px
}
#search-tabs .SForm.active {
    display: block
}
@media (max-width: 992px) {
    #search-tabs .SForm#site-search {
        display: block
    }
    #search-tabs .SForm#mice-search {
        display: none
    }
}
#search-tabs label {
    display: block;
    margin: 0;
    padding: 0 50px 0 0
}
@media (max-width: 992px) {
    #search-tabs label {
        padding-right: 80px;
        padding-left: 90px
    }
}
@media (max-width: 768px) {
    #search-tabs label {
        padding-right: 40px;
        padding-left: 50px
    }
}
#search-tabs input[type=search] {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 4px 10px
}
@media (max-width: 992px) {
    #search-tabs input[type=search] {
        height: 70px;
        font-size: 48px
    }
}
@media (max-width: 768px) {
    #search-tabs input[type=search] {
        height: 30px;
        font-size: 16px;
    }
}
#search-tabs .button.fa-search {
    position: absolute;
    right: 20px;
    top: 15px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #fff;
    white-space: 32px
}
@media (max-width: 992px) {
    #search-tabs .button.fa-search {
        font-size: 30px;
        text-align: center;
        width: 70px;
        height: 70px;
        top: 30px;
        right: 10px
    }
}
@media (max-width: 768px) {
    #search-tabs .button.fa-search {
        text-align: center;
        font-size: 24px;
        width: 40px;
        height: 40px;
        right: 5px;
        top: 13px
    }
}

/** CONTACT US*/
.contact-us-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background: #1C1C1C;
    opacity: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    animation: fadeOut 2s forwards;
    display: none;
}

.contact-us-wrapper.active {
    display: block;
    animation: fadeIn 2s forwards;
}

.contact-us {
    background-color: transparent;
    position: sticky;
    z-index: 10001;
}

.contact-us {
    top: 50vh;
}

.contact-us .wrap {
    position: absolute;
}

.contact-us .wrap {
    left: -26vw;
}


.contact-us .wrap .content {
    background-color: white;
    padding: 5px;
    float: left;
    border-right: 5px solid #0077B2;
}

.contact-us .wrap.slide-out .content {
    box-shadow: 0px 5px 10px 0px #989898;
}

.contact-us .wrap .content {
    width: 345px;
}

.contact-us .wrap .content div {
    padding: 16px 14px;
}

.contact-us .wrap .content a {
    color: #0077B2;
    text-decoration: underline;
    font-weight: bold;
}

.contact-us .wrap .icon {
    padding-right: 2.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    background-color: #0077B2;
    cursor: pointer;
}

.contact-us .wrap .icon {
    height: 40px;
    width: 40px;
}

.contact-us .wrap .icon .icon-wrap .question-icon {
    color: white;
}


.contact-us .wrap .icon .icon-wrap {
    height: 24px;
    width: 24px;
}

.contact-us .slide-in {
    -webkit-animation: slide-in 2s forwards;
    animation: slide-in 2s forwards;
}

.contact-us .slide-out {
    -webkit-animation: slide-out 2s forwards;
    animation: slide-out 2s forwards;
}


@-webkit-keyframes slide-in {
    0% {
        left: 0;
    }

    100% {
        left: -345px;
    }
}


@-webkit-keyframes slide-out {
    100% {
        left: 0;
    }
}

@keyframes slide-out {
    100% {
        left: 0;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .2;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .2;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .2;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .2;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .2;
    }
}


@keyframes fadeOut {
    0% {
        opacity: .2;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: .2;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: .2;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: .2;
    }

    100% {
        opacity: 0;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: .2;
    }

    100% {
        opacity: 0;
    }
}

.contact-us:hover .content {
    border-right: 5px solid #0077B2;
}

.contact-us:hover .icon {
    background-color: #0077B2;
}
.ipsc-order h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: #222222;
    margin-bottom:0;
}
.ipsc-order .price-header div{
    display:flex;
    padding:0;
}
.ipsc-order .price-header .field-wrapper{
    display:flex
}
    .ipsc-order .price-header .field-wrapper .value {
        text-transform: capitalize;
    }
.ipsc-order .price-header .field-wrapper.price {
    float:right
}
.ipsc-order .price-header .field-wrapper label {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #05396B;
}
.ipsc-order .price-header .field-wrapper .value {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
}
.ipsc-order .price-header .separator {
    border-left: 2px solid #BEBEBE;
    height: 20px;
    margin: 4px 20px;
}
.ipsc-order .price-header {
    background: #F4F8FC;
    height: 68px;
    padding: 20px 16px 20px 16px;
    gap: 12px;
    border-radius: 8px 0px 0px 0px;
    margin: 30px 0 20px;
    box-shadow: 1px 4px 8px 0px #00000026;
}
.ipsc-order .orderitemsTitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #05396B;
}
.ipsc-order .orderitemsDescription a{
    padding:0;
}