﻿#amta-global-message {
    padding: 2rem;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    background-color: #ffdd57;
    margin-bottom: 0.1rem;
    font-weight: bold;
    font-style: italic;
}

.amta-max-width-100-percent {
    max-width: 100% !important;
}

.amta-width-45-percent {
    width: 45% !important;
}

.amta-print-button {
    float: right;
    margin-top: -2rem;
}

.member-price {
    color: #ff5940;
    font-weight: bold;
}

.amta-animated-scroll {
    animation: nudgeUp 1s ease-in .55s both;
}

/***********   toggle related   ***********/

#amta_auto_pay_message {
    display: inline-block;
}

.amta-switch {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 34px;
    margin-top: 2px;
    margin-bottom: -9px;
}

.amta-switch input {display:none;}

.amta-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c9c8c8;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.amta-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.amta-autorenew-disabled:hover {
    cursor: not-allowed;
}

/*input:checked + .amta-slider {
    background-color: #ed5025;
}

input:focus + .amta-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .amta-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(55px);
}*/

/* include generated hidden field here */
input[type="checkbox"]:checked + input[type="hidden"] + .amta-slider,
input[type="checkbox"]:checked + .amta-slider {
    background-color: #ed5025;
}

/* include generated hidden field here */
input[type="checkbox"]:focus + input[type="hidden"] + .amta-slider,
input[type="checkbox"]:focus + .amta-slider {
    box-shadow: 0 0 1px #2196F3;
}

/* include generated hidden field here */
input[type="checkbox"]:checked + input[type="hidden"] + .amta-slider:before,
input[type="checkbox"]:checked + .amta-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(55px);
}

.amta-slider:after
{
    content:'Off';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 47%;
    left: 60%;
    font-size: 20px;
}

/*input:checked + .amta-slider:after {
    content: 'On';
    left: 37%;
}*/

/* include generated hidden field here */
input[type="checkbox"]:checked + input[type="hidden"] + .amta-slider:after,
input[type="checkbox"]:checked + .amta-slider:after {
    content: 'On';
    left: 37%;
}

.amta-confirmation-green {
    color: #025173;
    font-size: 1.25rem;
    font-style: italic;
    padding-top: 1rem;
    border-radius: .5rem;
}

/* Rounded sliders */
/*.amta-slider.amta-round {
    border-radius: 34px;
}

.amta-slider.amta-round:before {
    border-radius: 50%;
}*/


/***********   table related   ***********/
.amta-table {
    width: 100% !important;
}

    .amta-table th {
        text-align: center !important;
    }

    .amta-table th, .amta-table td {
        border: 1px solid #5e5e5e !important;
        padding: .75rem !important;
    }

    .amta-table th {
        color: #ffffff !important;
        background-color: #025173 !important;
    }

    .amta-table tr:nth-child(even) {
        background-color: #e3e6e6 !important;
    }

.amta-table-editable {
    width: 100% !important;
}

    .amta-table-editable th {
        text-align: center !important;
    }

    .amta-table-editable th, .amta-table-editable td {
        border: 1px solid #5e5e5e !important;
        padding: .75rem;
    }

    .amta-table-editable th {
        color: #ffffff !important;
        background-color: #025173 !important;
    }

    .amta-table-editable tr:nth-child(4n-1) {
        background-color: #e3e6e6 !important;
    }

    .amta-table-editable tr:nth-child(4n) {
        background-color: #e3e6e6 !important;
    }

.amta-table-contents-centered {
    vertical-align: middle !important;
    text-align: center !important;
}

.amta-table-contents-left {
    vertical-align: middle !important;
    text-align: start !important;
}

.amta-table-th-0 {
    width: 0% !important;
}

.amta-table-th-10 {
    width: 10%;
}

.amta-table-th-12 {
    width: 12%;
}

.amta-table-th-15 {
    width: 15%;
}

.amta-table-th-20 {
    width: 20%;
}

.amta-table-th-25 {
    width: 25%;
}

.amta-table-th-28 {
    width: 28%;
}

.amta-table-th-30 {
    width: 30%;
}

.amta-table-th-35 {
    width: 35%;
}

.amta-table-th-40 {
    width: 40%;
}

.amta-table-th-45 {
    width: 45%;
}

.amta-table-th-50 {
    width: 50%;
}

.amta-table-th-55 {
    width: 55%;
}

.amta-table-th-60 {
    width: 60%;
}

.amta-table-th-65 {
    width: 65%;
}

.amta-table-th-70 {
    width: 70%;
}

.amta-table-th-75 {
    width: 75%;
}

.amta-table-th-80 {
    width: 80%;
}

.amta-table-th-85 {
    width: 85%;
}


/***********   grid related   ***********/

.amta-grid {
    display: grid;
}


/***********   flex related   ***********/

.amta-flexbox-space-around {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
}

.amta-flexbox-flex-start {
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
}

.amta-flexbox-flex-end {
    display: flex;
    justify-content: flex-end;
    flex-flow: row wrap;
}

.amta-flexbox {
    display: flex;
    align-items: stretch;
    flex-flow: row wrap;
}

.amta-flex-grow-1 {
    flex-grow: 1;
}

.amta-flex-grow-2 {
    flex-grow: 2;
}

.amta-flex-grow-3 {
    flex-grow: 3;
}

.amta-flex-grow-4 {
    flex-grow: 4;
}

.amta-flex-grow-5 {
    flex-grow: 5;
}

.amta-flex-grow-6 {
    flex-grow: 6;
}

.amta-flex-grow-7 {
    flex-grow: 7;
}

.amta-flex-grow-8 {
    flex-grow: 8;
}

.amta-flex-grow-9 {
    flex-grow: 9;
}

.amta-flex-1 {
    flex: 1;
}

.amta-flex-2 {
    flex: 2;
}

.amta-flex-3 {
    flex: 3;
}

.amta-flex-4 {
    flex: 4;
}

.amta-flex-5 {
    flex: 5;
}

.amta-flex-6 {
    flex: 6;
}

.amta-flex-7 {
    flex: 7;
}

.amta-flex-8 {
    flex: 8;
}

.amta-flex-9 {
    flex: 9;
}

.amta-flex-25vw {
    flex: 29vw;
    flex-grow: 0;
}


/***********   buttons related   ***********/

.amta-button-white {
    background-color: #ffffff !important;
    color: #ed5025 !important;
    border: 2px #ed5025 solid !important;
    display: inline-block;
    padding: .35rem 2.4rem;
    margin: 0.5rem 0;
    border-radius: 5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.09rem;
    font-family: "Lato",Arial,sans-serif;
    font-size: 1.05rem;
}

.amta-button-orange {
    background-color: #ed5025 !important;
    color: #ffffff !important;
    border: 2px #ed5025 solid !important;
    display: inline-block;
    padding: .35rem 2.4rem;
    margin: 0.5rem 0;
    border-radius: 5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.09rem;
    font-family: "Lato",Arial,sans-serif;
    font-size: 1.05rem;
}

.amta-massage-envy-button {
    background-color: #615d93 !important;
}

.amta-volunteer-hub-button {
    /*background-color: #8cc63f !important;*/
    background-color: #32525f !important;
}

.amta-spinner,
.amta-spinner:after {
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
}

.amta-spinner-padding {
    margin: -.8rem 2.5rem !important;
    display: inline-block !important;
}

.amta-spinner-padding-center-area {
    margin: -.8rem 2.5rem !important;
    display: inline-block !important;
}

.amta-spinner {
    /*margin: 60px auto;*/
    font-size: 1rem;
    /*position: relative;*/
    /*text-indent: -9999em;*/
    display: block;
    margin: auto;
    /*border-top: .3rem solid #e3e6e6;
    border-right: .3rem solid #e3e6e6;
    border-bottom: .3rem solid #e3e6e6;*/
    border-top: .3rem solid #edd3cc;
    border-right: .3rem solid #edd3cc;
    border-bottom: .3rem solid #edd3cc;
    border-left: .3rem solid #ed5025;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



.amta-radio-button-container {
    display: inline-block;
    position: relative;
    padding-left: 2.5rem;
    padding-right: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 1.25rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .amta-radio-button-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.amta-radio-button-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5rem;
    width: 1.5rem;
    background-color: #ffffff;
    border-radius: 100%;
    border: 1px solid #5e5e5e;
}

.amta-radio-button-container:hover input ~ .amta-radio-button-checkmark {
    border: 1px solid #ed5025;
}

.amta-radio-button-container input:checked ~ .amta-radio-button-checkmark {
    background-color: #ffffff;
}

.amta-radio-button-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.amta-radio-button-container input:checked ~ .amta-radio-button-checkmark:after {
    display: block;
}

.amta-radio-button-container .amta-radio-button-checkmark:after {
    top: .24rem;
    left: .23rem;
    width: .9rem;
    height: .9rem;
    border-radius: 100%;
    background: #ed5025;
}

.amta-checkbox-container {
    padding: 1rem 0;
}

.amta-checkbox-label {
    position: relative;
    margin: auto;
    cursor: pointer;
    font-size: 1.25rem;
    clear: both;
    padding-bottom: .25rem;
}

    .amta-checkbox-label input {
        opacity: 0;
        cursor: pointer;
    }

    .amta-checkbox-label .amta-checkbox-custom {
        position: absolute;
        top: 0;
        left: 0;
        height: 24px;
        width: 24px;
        background-color: transparent;
        border-radius: 5px;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        border: 1px solid #5e5e5e;
    }


    .amta-checkbox-label input:checked ~ .amta-checkbox-custom {
        background-color: #FFFFFF;
        border-radius: 5px;
        -webkit-transform: rotate(0deg) scale(1);
        -ms-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
        opacity: 1;
        border: 1px solid #5e5e5e;
    }


    .amta-checkbox-label .amta-checkbox-custom::after {
        position: absolute;
        content: "";
        left: 12px;
        top: 12px;
        height: 0px;
        width: 0px;
        border-radius: 5px;
        border: solid #ed5025;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(0deg) scale(0);
        -ms-transform: rotate(0deg) scale(0);
        transform: rotate(0deg) scale(0);
        opacity: 1;
        transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -ms-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
    }


    .amta-checkbox-label input:checked ~ .amta-checkbox-custom::after {
        -webkit-transform: rotate(45deg) scale(1);
        -ms-transform: rotate(45deg) scale(1);
        transform: rotate(45deg) scale(1);
        opacity: 1;
        left: 7.5px;
        top: 2px;
        width: 7px;
        height: 14px;
        border: solid #ed5025;
        border-width: 0 2px 2px 0;
        background-color: transparent;
        border-radius: 0;
    }

.amta-checkbox-input-title {
    clear: both;
    padding: 0 2rem;
    font-size: 1.25rem;
    color: #1d252e;
    font-weight: 500;
    width: 35rem !important;
    line-height: 1.45rem;
}

.amta-checkbox-insurance-page {
    clear: both;
    padding: 0 2rem;
    font-size: 1.25rem;
    color: #1d252e;
    font-weight: 500;
    width: 90vw !important;
    line-height: 1.65rem;
}


/***********   form and input fields related   ***********/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-style: italic;
}

::-moz-placeholder { /* Firefox 19+ */
    font-style: italic;
}

:-ms-input-placeholder { /* IE 10+ */
    font-style: italic;
}

:-moz-placeholder { /* Firefox 18- */
    font-style: italic;
}

.amta-form-section {
    max-width: 40rem !important;
}

.amta-label-container-default {
    display: flex !important;
    justify-content: space-between;
    font-size: 1.125rem !important;
    line-height: 1.5 !important;
    max-width: 40rem !important;
    padding: .5rem 0 !important;
}

.amta-label-default {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}

.amta-label-status-default {
    font-weight: 400 !important;
    color: #5e5e5e !important;
    margin-top: 0 !important;
}

.amta-input-default {
    border: 1px solid #e3e6e6 !important;
    max-width: 40rem !important;
    margin-bottom: 1.125rem !important;
    min-height: 1.5rem;
}

    .amta-input-default:active, .amta-input-default:focus {
        border: 1px solid #025173 !important;
    }

.amta-multi-select-dropdown {
    border-radius: 1rem !important;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
}

.amta-input-warning-default {
    border: 1px solid #E31837 !important;
}

.amta-form {
    display: flex !important;
}

/*textarea {
    height: 10rem !important;
}*/

.amta-textarea {
    height: 10rem !important;
}

.amta-textarea-20 {
    height: 20rem !important;
}

.amta-form-input {
    border: 1px solid #e3e6e6 !important;
    font-size: 1.2rem !important;
}

.amta-form-input-type-1 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem;
}

.amta-form-input-type-2 {
    font-size: 1.2rem !important;
    max-width: 22rem !important;
    margin-bottom: .5rem;
}

.amta-form-input-type-3 {
    font-size: 1.2rem !important;
    max-width: 22rem !important;
    margin-bottom: 1rem;
}

.amta-form-input-type-4 {
    font-size: 1.2rem !important;
    max-width: 32rem !important;
    margin-bottom: 0.5rem;
}

.amta-form-label {
    font-size: 1.25rem;
    padding: 1.25rem 0rem .5rem .75rem;
    display: flex !important;
    justify-content: space-between;
}

.amta-form-label-type-1 {
    font-size: 1.25rem;
    display: inline-block;
    text-align: left;
    /*width: 140px;*/
    padding-right: 1rem;
}

.amta-form-label-type-2 {
    font-size: 1.25rem;
    display: inline-block;
    text-align: right;
    width: 160px;
    padding-right: 1rem;
}

.amta-form-label-type-3-left {
    font-size: 1.25rem;
    display: inline-block;
    text-align: left;
    width: 175px;
    padding-right: 1rem;
}

.amta-form-label-type-3-right {
    font-size: 1.25rem;
    display: inline-block;
    text-align: right;
    width: 175px;
    padding-right: 1rem;
}

.amta-form-label-type-2-1 {
    font-size: 1.25rem;
    text-align: center;
    width: 175px;
}

.amta-form-label-type-4 {
    font-size: 1.25rem;
    display: inline-block;
    text-align: left;
    width: 325px;
    padding-right: 2rem;
}

.amta-form-label-type-4-1 {
    font-size: 1.25rem;
    display: inline-block;
    text-align: left;
    width: 325px;
    padding-right: 2rem;
    vertical-align: top;
}

.amta-form-field-type {
    color: #5e5e5e;
    font-weight: normal;
}

.amta-form-input-disabled {
    background-color: #e3e6e6 !important;
    /*font-size: 1.2rem !important;*/
}

.amta-form-input-not-disabled {
    font-size: 1.2rem !important;
}

.amta-link-disabled {
    pointer-events: none;
    text-decoration: none !important;
    background-color: #e3e6e6;
    color: #000000;
    border-bottom: none;
}

.amta-tooltip .amta-tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    margin-top: -36px;
    margin-left: -115px;
    position: absolute;
    z-index: 1;
}

#amta_autorenew_slider .amta-tooltip-text {
    font-size: medium;
    padding: 1rem;
    width: 160px;
    margin-left: 90px;
}

@media only screen and (max-width: 600px) {
    #amta_autorenew_slider .amta-tooltip-text {
        margin-left: 0px;
    }
}

.amta-tooltip:hover .amta-tooltip-text {
    visibility: visible;
}

.amta-checkbox {
    opacity: 1 !important;
    position: relative !important;
    width: 1rem !important;
    height: 1rem !important;
}




/***********   pagination related   ***********/

.amta-pagination-container {
    text-align: center;
}


.amta-pagination {
    display: inline-block;
}

    .amta-pagination a {
        color: #000000;
        float: left;
        margin: 6px;
        padding: 6px 14px;
        text-decoration: none !important;
        border-bottom: none !important;
    }

    .amta-pagination span {
        border-bottom: 1px solid #ed5025;
    }


    .amta-pagination a.active {
        background-color: #e3e6e6;
        color: #000000;
        text-decoration: none !important;
        /*border: 1px solid #e3e6e6;*/
    }


        .amta-pagination a.active span {
            border-bottom: none;
        }

    .amta-pagination a:hover:not(.active) {
        color: #ed5025;
    }

/*.amta-pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.amta-pagination a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}*/


/***********   padding and spacing related   ***********/

.amta-line-height-2 {
    line-height: 2.25rem !important;
}

.amta-line-height-2-farm {
    line-height: 2.25rem !important;
}

.amta-padding-1 {
    padding: 1rem;
}

.amta-padding-2 {
    padding: 2rem;
}

.amta-padding-bottom-1 {
    padding-bottom: 1rem;
}

.amta-padding-bottom-1-5 {
    padding-bottom: 1.5rem;
}

.amta-padding-bottom-0-75 {
    padding-bottom: .75rem;
}

.amta-padding-top-1 {
    padding-top: 1rem;
}

.amta-table-links-padding {
    margin-top: 0.75rem !important;
    display: inline-block;
}

.amta-padding-left-1 {
    padding-left: 1rem;
}

.amta-padding-left-1-desktop {
    padding-left: 1rem;
}

.amta-padding-left-2 {
    padding-left: 2rem;
}

.amta-padding-left-3 {
    padding-left: 3rem;
}

.amta-padding-right-1 {
    padding-right: 1rem;
}

.amta-padding-right-2 {
    padding-right: 2rem;
}

.amta-padding-right-3 {
    padding-right: 3rem;
}

.amta-margin-right-1 {
    margin-right: 1rem;
}

.amta-margin-bottom-minus-2 {
    margin-bottom: -2rem;
}

.amta-text-align-center {
    text-align: center !important;
}

.amta-text-align-left {
    text-align: left !important;
}

.amta-text-align-right {
    text-align: right !important;
}

.amta-margin-bottom-4-45 {
    margin-bottom: 4.45rem !important;
}

.amta-description-padding p, .amta-description-padding ol, .amta-description-padding ul {
    margin-bottom: 1px !important;
}

/***********   images related   ***********/

.amta-account-image {
    padding-right: .5rem;
    padding-bottom: 1rem;
    max-width: 13rem;
    max-height: 16rem;
}

.amta-image-input {
    opacity: 0;
    position: absolute;
    width: 1px;
}

.amta-chapter-image {
    max-width: 16rem;
}

.amta-farm-image {
    max-width: 14rem;
    max-height: 16rem;
}

/***********   tabs related   ***********/
.amta-tab-bar {
    overflow: hidden;
}

    .amta-tab-bar a {
        display: inline-block;
        line-height: 2rem;
        padding: 1rem !important;
        margin-bottom: .25rem;
        cursor: pointer;
        transition: 0.3s;
        color: #000000;
        border-bottom: 1px solid #ed5025;
    }

        /*.amta-tab-bar span {
        padding: 1.25rem;
    }*/

        /*.amta-tab-bar img {
        padding: .25rem;
    }*/

        .amta-tab-bar a:hover {
            color: #ed5025;
        }

    .amta-tab-bar .active {
        background-color: #e3e6e6 !important;
        border: none;
    }

.amta-tab-content {
    display: none;
}

/***********   alerts related   ***********/

.amta-alert-red {
    /*color: #ffffff;
    background-color: #E31837 !important;*/
    color: #E31837;
    font-size: 1.5rem;
    font-style: italic;
    padding: 1rem;
    border-radius: .5rem;
    text-align: center;
}

    .amta-alert-red a {
        color: #E31837 !important;
    }

.amta-alert-green {
    color: #025173;
    font-size: 1.5rem;
    font-style: italic;
    /*background-color: #48c774;*/
    padding: 1rem;
    border-radius: .5rem;
    text-align: center;
}

/***********   badges related   ***********/

.amta-locator-service-badge {
    color: #ffffff;
    background-color: #025173;
    border-radius: 6rem;
    padding: .3rem .75rem .5rem .75rem;
    max-width: 18rem;
    text-align: center;
    vertical-align: middle;
    /*line-height: 200%;*/
}

.amta-badge-image {
    margin-top: -4px !important;
    padding-right: 5px;
}

.amta-number-of-years-badge {
    color: #ffffff;
    background-color: #009fa9;
    border-radius: 6rem;
    padding: .3rem .75rem .5rem .75rem;
    max-width: 18rem;
    text-align: center;
    vertical-align: middle;
    /*line-height: 200%;*/
    margin-bottom: 1rem;
}

.amta-not-in-locator-service-badge {
    color: #ffffff;
    background-color: #ed5025;
    border-radius: 6rem;
    padding: .3rem .75rem .5rem .75rem;
    width: 16rem;
    text-align: center;
    vertical-align: middle;
    line-height: 200%;
}

/***********   modal related   ***********/

.amta-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 40%;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.amta-modal-content-90-width {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

.amta-modal-close {
    color: #025173;
    float: right;
    font-size: 1.75rem;
    font-weight: bold;
    padding-top: 0px !important;
    margin-top: -.5rem !important;
}

    .amta-modal-close:hover,
    .amta-modal-close:focus {
        color: #ed5025;
        text-decoration: none;
        cursor: pointer;
    }

.amta-modal-header {
    color: #025173;
    padding: 1rem;
    background-color: #e3e6e6;
    border-radius: 1rem 1rem 0 0;
}

.amta-modal-body {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0 0 1rem 1rem;
    text-align: center;
}

.amta-modal-body-left-align {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0 0 1rem 1rem;
    text-align: left;
}

.amta-modal-footer {
    padding: 1rem;
    background-color: #e3e6e6;
    color: #ffffff;
    border-radius: 0 0 1rem 1rem;
}

.amta-modal {
    display: none;
    position: fixed;
    z-index: 100;
    padding-top: 28vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*margin: auto;*/
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.amta-event-waiver-modal {
    display: block;
    position: fixed;
    z-index: 100;
    padding-top: 10vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*margin: auto;*/
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}


/***********   icons related   ***********/

.amta-sort-icon:after {
    display: inline-block;
    content: url("https://www.amtamassage.org/Static/img/amta-sort-icon.svg");
    margin-left: .5rem !important;
    position: relative;
    bottom: -0.25rem !important;
}

.amta-red-form-validation-message:before {
    display: inline-block;
    content: url("https://www.amtamassage.org/Static/img/amta-warning-icon.svg");
    margin-right: .5rem !important;
    bottom: -0.28rem !important;
    position: relative;
}

.amta-blue-form-validation-message:before {
    display: inline-block;
    content: url("https://www.amtamassage.org/Static/img/amta-warning-icon-blue.svg");
    margin-right: .5rem !important;
    bottom: -0.28rem !important;
    position: relative;
}

.amta-search-icon {
    width: 1rem !important;
    height: 1rem !important;
}

.amta-search-link {
    font-size: 1.1rem;
}

.amta-justify-content-right {
    justify-content: right !important;
}



/***********   text and color related   ***********/
.amta-font-weight-500 {
    font-weight: 500 !important;
}

.amta-font-weight-700 {
    font-weight: 700 !important;
}

.amta-font-size-1-125-mobile {
    font-size: 1.4rem !important;
}

.amta-font-size-90 {
    font-size: 90%;
}

.amta-blue-heading-h5 {
    color: #025173;
    padding-bottom: 1.25rem;
    /*font-weight: bold;*/
}

.amta-text-color-turquoise {
    color: #009fa9 !important;
}

.amta-text-color-dark-teal-blue {
    color: #025173 !important;
}

.amta-text-color-red-orange {
    color: #ed5025 !important;
}

.amta-text-color-red {
    color: #E31837 !important;
}

.amta-account-name {
    padding-bottom: .5rem;
    /*color: #025173 !important;*/
    color: #009fa9 !important;
    max-width: 40vw;
}

.amta-text-color-medium-gray {
    color: #5e5e5e !important;
}

.amta-text-color-black {
    color: #1d252e !important;
}

.amta-text-underlined {
    text-decoration: underline !important;
}

.amta-link-in-red-alert {
    text-decoration: none !important;
    border-bottom: none;
    cursor: pointer !important;
    text-decoration: underline !important;
    color: #E31837;
}

.amta-link-in-black-alert {
    text-decoration: none !important;
    border-bottom: none;
    cursor: pointer !important;
    text-decoration: underline !important;
    color: #1d252e;
}

.amta-color-white {
    color: #ffffff !important;
}

.amta-subtext {
    font-size: 0.8rem;
    color: #5e5e5e;
    line-height: 2rem !important;
}

.amta-go-green-subtext {
    font-size: 0.8rem;
    color: #5e5e5e;
    line-height: 1.25rem !important;
}

.amta-subtext-warning {
    font-size: 0.8rem;
    padding-left: 1rem;
    color: #E31837 !important;
}

.amta-subtext-warning-black {
    font-size: 0.8rem;
    padding-left: 1rem;
    color: #1d252e !important;
}

.amta-subtext-danger {
    font-size: 0.8rem;
    padding-left: 1rem;
    color: #E31837 !important;
}

.amta-sub-heading {
    margin-top: -1rem !important;
    padding-top: 0 !important;
    font-size: 1.35rem;
    color: #5e5e5e;
}

.amta-red-form-validation-message {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    padding-bottom: 1rem !important;
    display: inline-block;
    color: #E31837 !important;
}

.amta-blue-form-validation-message {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    padding-bottom: 1rem !important;
    display: inline-block;
    color: #025173 !important;
}

/***********   links related   ***********/

.amta-remove-link-styling {
    text-decoration: none !important;
    border-bottom: none;
    cursor: pointer !important;
}


/***********   devices related   ***********/

.amta-desktop-only {
    display: inline-table;
}

.amta-desktop-only-block{
    display: block;
}

.amta-mobile-only {
    display: none;
}

.amta-desktop-hidden {
    visibility: hidden;
}

.amta-mobile-hidden {
    visibility: visible;
}


/***********   others   ***********/

/*the container must be positioned relative:*/
.amta-autocomplete {
    position: relative;
    display: inline-block;
    width: 40rem;
}

.amta-autocomplete-items {
    margin-top: -1.1rem;
    border-radius: -5rem;
    position: absolute;
    /*border: 1px solid #5e5e5e;*/
    font-size: 1rem;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}

    .amta-autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #ffffff;
        border: .5px solid #e3e6e6;
    }

        /*when hovering an item:*/
        .amta-autocomplete-items div:hover {
            background-color: #e3e6e6;
            border: .5px solid #e3e6e6;
        }

/*when navigating through the items using the arrow keys:*/
.amta-autocomplete-active {
    background-color: #e3e6e6 !important;
    color: #1d252e;
    border: .5px solid #e3e6e6;
}

.amta-badge-notification {
    position: relative;
}

[data-badge].amta-badge-notification::after {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    right: -15px;
    font-size: 0.8rem;
    background: #ed5025;
    color: white;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
}


.amta-blank-break {
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.amta-list-style::before {
    content: "\2022";
    color: #5e5e5e;
    /*font-weight: bold;*/
    display: inline-block;
    width: 1.25rem;
    margin-left: -1.25rem;
}

.amta-no-side-scroll {
    overflow-x: hidden !important;
}

amta-hover-pointer:hover {
    cursor: pointer;
}

/*.amta-progress-bar {
    width: 80%;
    height: 2.5rem;
    color: #009fa9 !important;
    background-color: #e3e6e6;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}*/

progress {
    width: 80%;
    height: 2.5rem;
    color: #009fa9 !important;
    background-color: #e3e6e6 !important;
    border: none !important;
}

    progress::-moz-progress-bar {
        width: 80%;
        height: 2.5rem;
        background: #009fa9 !important;
        color: #e3e6e6 !important;
        border: none !important;
    }

    progress::-webkit-progress-value {
        width: 80%;
        height: 2.5rem;
        color: #009fa9 !important;
        background: #009fa9 !important;
        border: none !important;
    }

    progress[aria-valuenow]:before {
        width: 80%;
        height: 2.5rem;
        color: #009fa9 !important;
        background: #009fa9 !important;
        border: none !important;
    }

progress {
    -webkit-appearance: none;
    border: none !important;
}

    progress::-webkit-progress-bar {
        color: #009fa9 !important;
        background-color: #e3e6e6 !important;
        border: none !important;
    }

    progress[value] {
        -webkit-appearance: none;
        border: none !important;
    }

.amta-message-box {
    background-color: #fff6d3;
    border: 3px solid #ffe27e;
    padding: 1rem !important;
    margin: 0 1rem;
    max-width: 40rem;
}

.amta-side-navbar-elements {
    background-color: #ed5025;
    color: #ffffff;
    padding: 1rem;
}

.amta-hidden {
    display: none !important;
}

.amta-hidden-for-table {
    display: none !important;
}

.amta-display-block {
    display: block;
}

.amta-inner-block {
    animation: fadeIn .5s ease-in .5s both;
}

.ql-editor {
    height: 12rem !important;
    font-size: 1.125rem;
}

.ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button {
    min-height: 1.5rem;
    max-height: 2rem;
}

.ql-toolbar.ql-snow {
    border: 1px solid #e3e6e6 !important;
    max-width: 40rem !important;
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
}

.ql-container.ql-snow {
    border: 1px solid #e3e6e6 !important;
    max-width: 40rem !important;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    margin-bottom: 1.125rem !important;
    height: 12rem !important;
}

.ql-toolbar.ql-snow:active, .ql-toolbar.ql-snow:focus {
    border: 1px solid #025173 !important;
}

.ql-container.ql-snow:active, .ql-container.ql-snow:focus {
    border: 1px solid #025173 !important;
}


.amta-hr {
    border: 1px solid #e3e6e6 !important;
}

.amta-text-centered-mobile {
    text-align: inherit;
}

.amta-text-centered {
    text-align: center !important;
}

.amta-negative-margin-top-1-mobile {
    margin-top: auto;
}

.amta-webkit-appearance-none {
    display: block;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22300%22%20height%3D%22300%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-color: #ffffff;
    background-repeat: no-repeat, repeat;
    background-position: right 1em top 1.1em, 0 0;
    background-size: .65em auto, 100%;
}

    .amta-webkit-appearance-none::-ms-expand {
        display: none;
    }


/***************** CMS Login *****************/

#amta-holder {
    background-image: url('../jpg/pictures_page_3-min.jpg');
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.amta-container {
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 28rem;
    max-width: 100%;
    min-height: 20rem;
}

.amta-custom-message-container {
    position: relative;
    width: 25rem;
}

.amta-h1-login {
    font-weight: bold;
    margin: 0;
}

.amta-a-login {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.amta-button-login {
    border: 1px solid #1456F1;
    background-color: #1456F1;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    width: 100%;
}

    .amta-button-login:active {
        transform: scale(0.95);
    }

    .amta-button-login:focus {
        outline: none;
    }

    .amta-button-login.ghost {
        background-color: transparent;
        border-color: #FFFFFF;
    }

.amta-form-login {
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

.amta-input-login {
    background-color: #eee;
    border: 1px solid #818181;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.amta-form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.amta-sign-in-container {
    width: 100%;
    z-index: 2;
}



/****************   Media queries   ****************/
@media only screen and (max-width: 800px) {

    .amta-container {
        width: 20rem;
    }

    .amta-custom-message-container {
        width: 20rem;
    }

    .amta-form-login {
        padding: 0 35px;
    }

    .amta-text-centered-mobile {
        text-align: center !important;
    }

    .amta-account-name {
        max-width: none;
    }


    .amta-modal {
        padding-top: 14vh;
    }

    .amta-negative-margin-top-1-mobile {
        margin-top: -1rem !important;
    }

    .amta-red-form-validation-message:before {
        margin-left: .5rem !important;
        margin-right: .5rem !important;
        bottom: -0.28rem !important;
    }

    .amta-red-form-validation-message {
        font-size: 1.125rem !important;
        line-height: 1.35 !important;
        padding-bottom: .75rem !important;
    }

    .amta-blue-form-validation-message:before {
        margin-left: .5rem !important;
        margin-right: .5rem !important;
        bottom: -0.28rem !important;
    }

    .amta-blue-form-validation-message {
        font-size: 1.125rem !important;
        line-height: 1.35 !important;
        padding-bottom: .75rem !important;
    }

    .amta-radio-button-container {
        font-size: 1rem !important;
    }

    .amta-line-height-2 {
        line-height: 2.5rem;
    }


    .amta-line-height-1-75 {
        line-height: 1.75rem;
    }

    .amta-progress-bar {
        width: 100%;
    }


    .amta-padding-left-1-desktop {
        padding-left: 0rem;
    }

    .amta-label-container-default {
        font-size: 1rem !important;
        line-height: 1.35 !important;
    }

    .amta-label-default {
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }

    .amta-autocomplete {
        width: 100% !important;
    }

    .amta-desktop-only {
        display: none;
    }

    .amta-desktop-only-block {
        display: none;
    }

    .amta-mobile-only {
        display: inline;
    }

    .amta-desktop-hidden {
        visibility: visible;
    }

    .amta-mobile-hidden {
        visibility: hidden;
    }

    .amta-flex-25vw {
        flex: 80vw;
    }

    .amta-modal-content {
        width: 90%;
    }

    /*#amta_update_image_modal {
        padding-top: 14vh;
    }*/

    .amta-spinner-padding {
        margin: auto !important;
        /*display: none !important;*/
        margin-left: 45% !important;
    }

    .amta-spinner-padding-center-area {
        margin: auto !important;
    }

    .amta-checkbox-input-title {
        margin-top: 0.1rem;
        padding: 0 1.75rem !important;
        font-size: 1rem !important;
        width: 20rem !important;
        line-height: 1.25rem;
    }

    .ql-editor {
        height: 12rem !important;
        font-size: 1rem;
    }

    .amta-font-size-1-125-mobile {
        font-size: 1.125rem !important;
    }
}


@media only screen and (min-width: 801px) and (max-width: 1225px) {
    .amta-sort-icon:after {
        display: none;
    }
}

@media only screen and (min-width: 801px) {
    .amta-desktop-negative-margin-10 {
        margin-top: -10px !important;
    }
}


@media only screen and (max-width: 600px) {

    .amta-button-white {
        letter-spacing: 0.07rem;
        width: 100%;
        display: block;
        font-size: 0.9rem;
        line-height: 1.7142;
    }

    .amta-button-orange {
        letter-spacing: 0.07rem;
        width: 100%;
        display: block;
        font-size: 0.9rem;
        line-height: 1.7142;
    }
}


/****************   Animations   ****************/
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@media print {
    body {
        color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

/****************   Third-Party Widgets   ****************/
#hubspot-messages-iframe-container {
    z-index: 9999!important;
}

body .uwy.userway_p1 .uai {
    top: calc(92vh - 5em) !important;
}
body .uwy.userway_p7 .uai {
    top: 92vh !important;
}

#userwayAccessibilityIcon {
    transform: scale(1.4) !important;
    margin: 12px !important;
}

#userwayAccessibilityIcon:hover {
    transform: scale(1.5) !important;
}

/****************   Custom Search Bar   ****************/
.amta-custom-search-bar-area-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 2em auto 1em;
}

@media only screen and (max-width: 600px) {
    .amta-custom-search-bar-area-wrap {
        width: 90%;
    }
}

.amta-custom-search-bar-area {
    background: #ffffff;
    border: 1px solid #e3e6e6;
    border-radius: 5rem;
    display: flex;
    width: 100%;
}

.search-bar-area-input input:focus:focus {
    outline-offset: -2px;
    outline-color: #025173;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/****************   Audio Player   ****************/
.amta-audio-player {
    height: 50px;
    width: 450px;
    background: white;
    font-family: Arial;
    color: black;
    font-size: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 25px;
    border: 2px solid #009FA9;
    margin: auto
}

.amta-audio-timeline {
    background: #5e5e5e;
    width: 40%;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    height: 4px;
}

.amta-audio-progress {
    background: black;
    width: 0%;
    height: 100%;
    transition: 0.25s;
}

.amta-audio-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.amta-audio-toggle-play {
    margin-left: 10px;
}

.amta-audio-toggle-play.amta-audio-play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 0;
    width: 0;
    border: 10px solid #0000;
    border-left: 18px solid black;
}

.amta-audio-toggle-play.amta-audio-pause {
    cursor: pointer;
    position: relative;
    height: 20px;
    width: 20px;
    margin-right: 7px;
}

.amta-audio-toggle-play.amta-audio-pause:before {
    position: absolute;
    top: 0;
    left: 0px;
    background: black;
    content: "";
    height: 20px;
    width: 6px;
}
.amta-audio-toggle-play.amta-audio-pause:after {
    position: absolute;
    top: 0;
    right: 2px;
    background: black;
    content: "";
    height: 20px;
    width: 6px;
}

.amta-audio-time {
    display: flex;
}
.amta-audio-time > * {
    padding: 2px;
}

.amta-audio-volume-container {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.amta-audio-volume-button {
    height: 26px;
    display: flex;
    align-items: center;
}

.amta-audio-volume {
    transform: scale(.8);
    color: black !important;
}

.amta-audio-volume-slider {
    position: absolute;
    left: -3px;
    top: 4px;
    z-index: -1;
    width: 0;
    height: 16px;
    background: #5e5e5e;
    transition: .25s;
    background-clip: content-box;
    border-radius: 3px;
    border-left: 10px solid white;
}

.amta-audio-volume-percentage {
    background: black;
    height: 100%;
    width: 75%;
    border-radius: 3px;
}

.amta-audio-volume-container:hover .amta-audio-volume-slider {
    left: -103px;
    width: 100px;
}

.amta-audio-volume-icon-playing {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;   
}

.amta-audio-preload-text {
    width: 90%;
    text-align: center;
    margin-right: 2rem;
    font-style: italic;
    font-size: 1.25rem;
}

@media only screen and (max-width: 600px) {
    .amta-audio-volume-container {
        display: none;
    }
    .amta-audio-timeline {
        width: 50%;
        margin-right: .5em;
    }
    .amta-audio-preload-text {
        font-size: 1rem;
    }
    .amta-audio-player {
        font-size: .9rem;
        width: 95%;
    }
}

/****************   Translate Widget   ****************/
.gt_switcher-popup {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: .1rem .5rem;
    width: fit-content;
    border-radius: 40px;
    border: 1px solid black !important;
}
.gt_languages .glink.nturl .globe-language-icon {
    display: none;
}

.gt_languages .glink.nturl {
    border: none !important;
    line-height: 1;
}

.gt_languages .glink.nturl:hover span {
    color: #ed5025;
}

.gt_languages .glink.nturl:active, .gt_languages .glink.nturl:focus {
    outline: none !important;
}

.gt_languages {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: auto;
}