@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam:wght@100;300;400;500;600;700;800&display=swap');
/*  */
* {
    outline: none;
}
*, ::after, ::before {
    box-sizing: border-box;
}
:root{
    --templateColor: #0d66a1;
    --PrimaryColor: #00A9FF;
    --SecondaryColor: #688FA9;
    --AccentColor:#999;
    --TextColor:#222222;
    --AlternateTextColor: #414141;
    --headerBgColor: #ffffff;
    --transition: all 0.5s ease-in-out;
}
body{
    margin: 0;
    padding: 0;
    color: var(--primaryColor);
    background-color: #F2F5FA;
    font-size: 14px;
    font-family: 'Be Vietnam', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}
a, a:hover, a:not([href]){
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}
.amz_section img{
    max-width: 100%;
}
h1,h2,h3,h4,h5,h6,p,ul,ol{
    margin: 0px;
    padding: 0px;
}
textarea.form-control {
    height: auto;
    line-height: normal;
    padding: 20px;
}
.amz_back_button {
    width: 20px;
}
.amz_themeForm .form-control{
    font-weight: normal;
}
.amz_section h1, .amz_section h2, .amz_section h3, .amz_section h4, .amz_section h5, .amz_section h6, .amz_section p{
    color: var(--TextColor);
    font-weight: inherit;
    line-height: initial;
}
.amz_section input,
.amz_section  input:focus,
.amz_section  textarea,
.amz_section  textarea:focus,
.amz_section  select,
.amz_section  select:focus{
    outline: none;
    box-shadow: none;
    text-decoration: none;
    color: var(--AlternateTextColor);
}
div#previewMainContents {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
}
.amz_label {
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 12px;
    color: var(--TextColor);
    margin-bottom: 5px;
}
.amz_form_control:focus {
    border: 1px solid var(--PrimaryColor);
    box-shadow: none;
}
.amz_section {
    text-align: center;
    padding: 0px 0;
    background-color: #fff;
    clear: both;
}
.amz_section .amz_section {
    background-color: transparent;
}
/* Main Menu Css */
.amz_header_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 10px;
    background-color: var(--headerBgColor);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    height: 70px;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 35%);
}
.amz_main_menu {
    max-width: 270px;
    display: inline-block;
    padding: 0px;
    z-index: 100;
    min-height: 50px;
    position: fixed;
    width: 100%;
    left: -270px;
    top: 0;
    bottom: 0;
    transition: all 0.5s;
}
.amz_main_nav {
    display: inline-flex;
    padding: 0;
    list-style: none;
}
.amz_main_nav li a {
    padding: 10px;
    text-transform: capitalize;
    white-space: nowrap;
    font-size: 14px;
    font-family: sans-serif;
    text-decoration: none;
    color: var(--PrimaryColor);
}
.amz_main_nav li .amz_more_btn {
    color: var(--PrimaryColor);
}
.amz_auto_nav_more {
    position: relative;
}
.amz_auto_nav_more_list,
.amz_mobile_menu {
    position: absolute;
    right: 0;
    padding: 50px 20px 20px;
    list-style: none;
    color: var(--AlternateTextColor);
    background: var(--headerBgColor);
    border-radius: 0;
    z-index: 99;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    left: 0px;
    width: 250px;
    height: 100%;
    top: 0px;
    max-width: 250px;
    transition: all 0.5s;
    height: 100vh;
    bottom: 0;
    z-index: 998;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
.amz_auto_nav_more_list.amz_open_menu {
    opacity: 1;
    visibility: visible;
}
ul#amz_mainmenu {
    max-width: calc(100% - 100px);
}
.amz_more_btn svg {
    fill: #0d66a1;
}
li#amz_autoNavMore.amz_open_menu ul#amz_autoNavMoreList,
.amz_main_menu.amz_open_menu .amz_mobile_menu {
    opacity: 1;
    left: 0;
    visibility: visible;
}
.amz_overlayBg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0 0 0 / 35%);
    z-index: 99;
}
.amz_togglemenu {
    position: absolute;
    left: 285px;
    top: 30px;
    z-index: 999;
    transition: all 0.5s;
}
.amz_notification_no {
    position: absolute;
    top: -20px;
    right: -15px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: brown;
    color: #fff;
    border-radius: 50px;
    line-height: 20px;
}
.amz_open_menu .amz_togglemenu {
    left: 220px;
    transition: all 0.5s;
}
.amz_mobile_menu li a {
    padding: 0px 0;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--AlternateTextColor);
    font-weight: 600;
    position: relative;
    border-bottom: 1px solid #f3f3f3;
    text-overflow: ellipsis;
    height: 40px;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    line-height: 40px;
}
.amz_mobile_menu li a span {
    position: absolute;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50px;
    background-color: brown;
    color: #fff;
    font-size: 12px;
    right: 0;
}
.amz_mobile_menu li a:hover{
    color: var(--PrimaryColor);
}
.amz_togglemenu span {
    display: block;
    width: 18px;
    height: 2px;
    transition: 0.3s;
    margin: 0 auto 3px;
    background: var(--PrimaryColor);
}
.amz_open_menu .amz_togglemenu span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.amz_open_menu .amz_togglemenu span:nth-child(1) {
    transform: translate(0px, 4px) rotate(-48deg);
}
.amz_open_menu .amz_togglemenu span:nth-child(3) {
    transform: translate(0px, -6px) rotate(48deg);
}
.amz_main_menu.amz_open_menu .amz_mobile_menu, .amz_main_menu.amz_open_menu {
    left: 0;
    transition: all 0.5s;
}
/* End Main Menu Css */
/* Main Logo */
.amz_main_logo {
    display: inline-block;
    max-width: calc(100%);
    width: 100%;
    text-align: center;
    position: relative;
    left: 0;
    right: 0;
}
.amz_main_logo img {
    max-width: 190px;
    max-height: 40px;
    margin: auto;
    display: inline-block;
}
.ap_mobilescreen_template .amz_main_logo img {
    position: relative;
    top: 7px;
}
/*  End Main Logo */
/* Right Menu Share App */
.amz_rightmenu {
    max-width: max-content;
    width: 100%;
}
.amz_doticon svg {
    width: 25px;
    fill: var(--PrimaryColor);
}
.amz_doticon {
    display: inline-block;
    position: absolute;
    top: -13px;
    right: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
}
.amz_sharedots {
    position: relative;
    z-index: 9;
}
.amz_shareDropdown {
    position: absolute;
    top: 25px;
    right: 0;
    margin-top: 0px;
    display: none;
    border-radius: 4px;
    box-shadow: 0px 0px 20px rgb(0 0 0 / 30%);
}
.amz_shareDropdown:before {
    content: "";
    width: 7px;
    height: 7px;
    right: 15px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    top: -7px;
    bottom: 0;
    position: absolute;
}
.amz_shareDropdown>ul {
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background-color: #fff;
    border-radius: 4px;
    width: 200px;
    box-shadow: 0 0 20px rgb(0 0 0 / 0.04);
}
.amz_shareDropdown>ul>li> a {
    padding: 5px 15px;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    display: inline-block;
    width: 100%;
    display: flex;
    width: 100%;
    font-size: 12px;
    color: var(--AlternateTextColor);
    align-items: center;
}
.amz_shareDropdown>ul>li:hover a{
    color: var(--PrimaryColor);
}
.amz_shareDropdown>ul>li>a>svg,
.amz_shareDropdown>ul>li>a>i {
    width: 12px;
    margin-right: 5px;
    fill: var(--PrimaryColor);
    height: 12px;
}
.amz_shareDropdown>ul>li>a>i {
    font-size: 14px;
    width: auto;
    color: var(--PrimaryColor);
    font-size: 12px;
}
/* End Right Menu Share App */
.amz_pages_wrapper {
    position: absolute;
    top: 76px;
    width: 100%;
    overflow-y: auto;
    height: 566px;
}
.ap_viewtemplate_laptop .amz_pages_wrapper {
    position: absolute;
    top: 51px;
    width: 100%;
    overflow-y: auto;
    height: 430px;
}
.amz_grayBg{
    /* background-color: #f9f9f9; */
}
/* Text Component Css */
.amz_text_component p {
    margin: 0px !important;
    padding: 0px !important;
    /* line-height: normal; */
    white-space: normal;
    word-break: break-word;
}
.amz_text_component {
    padding: 20px 0px;
    color: var(--TextColor);
    max-width: 1200px;
    margin: auto;
}
/* End Text Component */
/* Share Modal */
.amz_socialShareList {
    text-align: center !important;
    display: block !important;
}
.amz_socialShareList li {
    display: inline-block;
    margin: 5px 0;
    width: 100%;
    max-width: 100%;
}
.amz_socialShareList li a {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 35px 5px 5px;
    border-radius: 50px;
    width: 100%;
    color: var(--PrimaryColor);
}
.amz_socialIcons{
    margin-left:10px;
    display:block;
    line-height:normal;
}
/* Share Modal */
/* Banner Component */
.amz_banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ap_viewtemplate_laptop .amz_banner {
    height: calc(430px);
}
.amz_banner.amz_onefourthbanner {
    height: 70vh;
}
.amz_banner.amz_shortbanner {
    height: 50vh;
}
.amz_header_overlay {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.amz_banner h1 {
    margin: 0;
    font-weight: normal;
}
.amz_banner h2 {
    margin: 0px;
    font-weight: 300;
}
.amz_btn {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 20px;
    color: #fff;
    background: var(--PrimaryColor);
    border: 1px solid var(--PrimaryColor);
    text-transform: capitalize;
    line-height: normal;
    outline: none !important;
    box-shadow: none !important;
}
.amz_btn:hover {
    /* background: var(--SecondaryColor); */
    /* border-color: #fff; */
    /* color:#fff; */
}
.amz_headerHeading, .amz_headerHeading p {
    font-size: 20px;
    color: var(--PrimaryColor);
    font-weight: bold;
}
.amz_headerSubHeading, .amz_headerSubHeading p {
    font-size: 14px;
    line-height: normal;
    margin-top: 10px;
    color: var(--SecondaryColor); 
}
.amz_headerDescription, .amz_headerDescription p{
    font-size: 12px;
    line-height: normal;
    margin-top: 10px;
    color: #fff;
}
/* End Banner Component */
/* Form Component */
.amz_validate {
    color: #f90000;
    font-size: 12px;
    display: none;
}
.amz_form_control {
    height: 45px;
    font-size: 12px;
    border-radius:4px;
    border: 1px solid #efefef;
    background-color: #ffffff;
}
/* .amz_formComponent h2 {
    margin-bottom: 30px;
    font-weight: bold;
} */
.amz_contactForm {
    text-align: left;
}
/* End Form Component */
/* Button Component Css */
.amz_button_component .amz_btn{
    margin: 20px 0;
    text-transform: capitalize;
    font-size: 14px;
    color: #fff;
}
.amz_btn.amz_rounded_btn {
    border-radius: 70px;
    color: #fff;
}
.amz_btn.amz_radius_btn {
    border-radius: 5px;
    color: #fff;
}
.amz_btn.amz_straight_btn, a.amz_btn:not([href]):hover{
    color: #fff;
}
/* Ens Button Component Css */
/* Video Component Css*/
.amz_video_component video {
    /* width: 100%; */
    height: auto;
    max-width: 100%;
}
.amz_audio_component audio {
    max-width: 100%;
}
.amz_ifram_component h2,
.amz_image_component h2 {
    color: var(--PrimaryColor);
    font-size: 19px;
    margin-bottom: 20px;
    margin-top: 0px !important;
}
.amx_audioTitle.amz_label {
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
}
/* End Video Component Css*/
/** Modal Component **/
.amz_popup_component {
    padding: 20px 0;
}
.amz_modal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    bottom: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
}
.amz_modal_dialog_centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.amz_modal_dialog_scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem);
}
.amz_modal_dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
}
.modal-open .amz_modal {
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: 5px !important;
    padding-right: 5px !important;
}
.amz_modal.show {
    background-color: rgba(0,0,0,0.7);
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
    top: auto;
    bottom: 0;
    width: 100%;
    display: block;
    position: fixed;
    z-index: 999999;
}
.amz_modal .close {
    outline: none !important;
}
.amz_modal .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 16px;
}
.amz_modal_footer .amz_btn {
    display: inline-flex;
    font-size: 12px;
    padding: 0px 15px;
    line-height: 30px;
    margin: 0 0px 0 10px;
    align-items: center;
    border-radius: 5px;
}
.amz_modal.show .amz_modal_dialog {
    -webkit-transform: none;
    transform: none;
}
.amz_modal.fade .amz_modal_dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0,0px);
    transform: translate(0,0px);
    max-width: 550px;
    margin: auto;
    padding: 15px;
}
.amz_modal_dialog_centered.amz_modal_dialog_scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.amz_modal_content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    /* border: 1px solid rgba(0,0,0,.2); */
    border-radius: .3rem;
    outline: 0;
    max-height: calc(100vh - 100px);
    border: 0;
}
.amz_modal_dialog_centered.amz_modal_dialog_scrollable .amz_modal_content {
    max-height: none;
    border: 0;
}
.amz_modal_dialog_scrollable .amz_modal_footer, .amz_modal_dialog_scrollable .amz_modal_header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.amz_modal_header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}
.amz_modal_dialog_scrollable .amz_modal_body {
    overflow-y: auto;
    max-height: 75vh;
}
.amz_modal_body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
    color: #000;
}
.amz_modal_footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}
.amz_modal_btn {
    margin: 0;
}
.amz_modal_dialog .form-control {
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    background-color: #edf1fa;
}
.amz_modal_dialog .form-group {
    margin-bottom: 10px;
}
.amz_modal_dialog .amz_label {
    font-size: 12px;
}
.amz_modal_body .amz_btn {
    font-size: 12px;
    padding: 10px;
    cursor: pointer;
    margin-top: 0px;
    border-radius: 5px;
    border: 0;
}
.amz_formBtn button.amz_btn {
    border-radius: 5px;
    padding: 10px 15px;
    border: 0;
}
.amz_main_container> .amz_modal.show {
    top: 0;
    bottom: 0;
}
.amz_register .amz_backBtn.openMyModal:hover {
    color: var(--PrimaryColor) !important;
}
.amz_formBtn button.amz_btn {
    margin: 0;
}
/** End Modal Component **/
/*********************************************** Slider Component ************************************************/
.amz_sliderShort .amz_sliderItem {
    height: calc(570px - 15vh);
}
.amz_sliderHalf .amz_sliderItem {
    height: calc(570px - 30vh);
}
.amz_sliderItem{
    width: 100%;
    height: calc(570px);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.amz_slider_overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
}
.amz_sliderHeading, .amz_sliderHeading p{
    font-size: 20px;
    color: var(--PrimaryColor);
    font-weight: bold;
}
.amz_sliderSubHeading, .amz_sliderSubHeading p{
    font-size: 16px;
    margin-top: 10px;
    color: var(--SecondaryColor);
}
.amz_sliderDescription, .amz_sliderDescription p{
    font-size: 12px;
    line-height: normal;
    margin-top: 10px;
}
.ap_mobilescreen_template .amz_sliderHeading, 
.ap_mobilescreen_template .amz_sliderHeading p{
    font-size: 16px;
    color: var(--PrimaryColor);
    font-weight: bold;
}
.ap_mobilescreen_template .amz_sliderSubHeading, 
.ap_mobilescreen_template .amz_sliderSubHeading p{
    font-size: 13px;
    line-height: normal;
    margin-top: 10px;
    color: var(--SecondaryColor);
    line-height: initial;
}
.ap_mobilescreen_template .amz_sliderDescription, 
.ap_mobilescreen_template .amz_sliderDescription p{
    font-size: 10px;
    line-height: normal;
    margin-top: 10px;
}
.ap_mobilescreen_template .amz_sliderItem .amz_btn {
    font-size: 12px;
}
.amz_slider_component .carousel-indicators li {
    background-color: var(--PrimaryColor);
    width: 10px;
    height: 10px;
    border-radius: 50px;
    border: 0px;
    margin: 5px;
}
.amz_slider_component svg {
    fill: #fff;
    width: 12px;
}
.amz_slider_component .carousel-indicators {
    /* margin-bottom: 0; */
    cursor: pointer;
}
.amz_slider_component .carousel-control-prev {
    left: 10px;
}
.amz_slider_component .carousel-control-next {
    right: 10px;
}
/** Controlar Top **/
.amz_control_top .carousel-control-prev,
.amz_control_top .carousel-control-next {
    left: auto;
    right: 60px;
    top: 10px !important;
}
.amz_control_top .carousel-control-next{
    right: 10px;
}
.amz_slider_component .carousel-control-prev, 
.amz_slider_component .carousel-control-next {
    width: 30px;
    height: 30px;
    background-color: var(--PrimaryColor);
    padding: 10px;
    border-radius: 5px;
    top: calc(50% - 15px);
    z-index: 99;
    max-width: 40px;
}
.text-white svg{
    fill: #fff;
}
/** Controlar Bottom **/
.amz_control_bottom .carousel-control-prev,
.amz_control_bottom .carousel-control-next {
    left: auto;
    right: 60px;
    top: auto;
    bottom:10px;
}
.amz_control_bottom .carousel-control-next{
    right: 10px;
}
.amz_control_bottom .carousel-indicators {
    display: none;
}
/****** Controler None *****/
.amz_control_none .carousel-control-prev, 
.amz_control_none .carousel-control-next {
    display: none;
}
/*********** Controler Top Left***********/
.amz_control_leftTop .carousel-control-prev,
.amz_control_leftTop .carousel-control-next{
    top: 10px !important;
}
.amz_control_leftTop .carousel-control-next{
    left: 60px;
}
/*********** Controler Bottom Left***********/
.amz_control_leftBottom .carousel-control-prev,
.amz_control_leftBottom .carousel-control-next{
    top: auto !important;
    bottom: 10px !important;
}
.amz_control_leftBottom .carousel-control-next{
    left: 60px;
}
/********** Controlar Bottom Center ***********/
.amz_control_bottomCenter .carousel-control-prev{
    top: calc(100% - 60px);
    z-index: 99;
    left: -60px;
    right: 0;
    margin: auto;
}
.amz_control_bottomCenter .carousel-control-next {
    right: -60px;
    left: 0;
    margin: 0 auto 0;
    top: calc(100% - 45px);
}
/********** Indicator None **********/
.carousel-indicators.amz_indicator_none{
    display: none;
}
/****** Indicator Right Top *****/
.carousel-indicators.amz_indicator_rightTop,
.carousel-indicators.amz_indicator_rightBottom {
    width: 20px;
    height: 100%;
    margin: 0 0 0  auto;
    display: block;
}
.amz_slider_component .amz_indicator_rightTop li {
    width: 10px;
    height: 10px;
    display: block;
    flex: 0 0 100%;
}
/****** Indicator Right Bottom *****/
.carousel-indicators.amz_indicator_rightBottom {
    width: 20px;
    height: auto;
    margin: 0 0 0 auto;
    display: table-cell;
    vertical-align: middle;
}
.amz_control_bottom .carousel {
    position: relative;
    display: table;
    height: 100%;
}
/********** Indicator Left Center **********/
.carousel-indicators.amz_indicator_leftCenter {
    width: 20px;
    height: 50px;
    display: table-cell;
    vertical-align: middle;
    top: 0;
    bottom: 0;
    flex: none;
    margin: auto 0 auto 0;
}
.amz_indicator_rightCenter{
    margin: auto 0 auto auto;
}
/********** Indicator Right Center **********/
.carousel-indicators.amz_indicator_rightCenter {
    width: 20px;
    height: 50px;
    display: table-cell;
    vertical-align: middle;
    top: 0;
    bottom: 0;
    flex: none;
    margin: auto 0 auto auto;
}
.amz_indicator_rightCenter{
    margin:auto 0 auto auto;
}
/********** Indicator Bottom Left **********/
.carousel-indicators.amz_indicator_leftBottom {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 10px;
}
/********** Indicator Bottom RIght **********/
.carousel-indicators.amz_indicator_rightBottom {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 10px;
}
.carousel-indicators.amz_indicator_rightBottom li {
    margin: 5px 5px 5px auto;
}
/****************************/
.carousel-indicators.amz_indicator_right {
    display: inline-block;
    width: 100%;
    margin: 0;
    text-align: right;
}
.carousel-indicators.amz_indicator_right li {
    margin: 5px 5px 5px auto;
    display: inline-block;
}
/****************************/
.carousel-indicators.amz_indicator_left {
    display: inline-block;
    width: 100%;
    margin: 0;
    text-align: left;
}
.carousel-indicators.amz_indicator_left li {
    margin: 5px;
    display: inline-block;
}
/***** SLider Fade Effect *******/
.amz_slider_component .amz_slideFadeIn .carousel-item {
    opacity: 0;
    transition: opacity ease-out .7s;
    /* height: 500px; */
}
.amz_slider_component .amz_slideFadeIn .carousel-item.active,
.amz_slider_component .amz_slideFadeIn .carousel-item-next.carousel-item-left,
.amz_slider_component .amz_slideFadeIn .carousel-item-prev.carousel-item-right {
    opacity: 1;
}
.amz_slider_component .amz_slideFadeIn .active.carousel-item-left,
.amz_slider_component .amz_slideFadeIn .active.carousel-item-right {
    opacity: 0;
}
.amz_slider_component .amz_slideFadeIn .carousel-item-next,
.amz_slider_component .amz_slideFadeIn .carousel-item-prev,
.amz_slider_component .amz_slideFadeIn .carousel-item.active,
.amz_slider_component .amz_slideFadeIn .active.carousel-item-left,
.amz_slider_component .amz_slideFadeIn .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}
/***** End SLider Fade Effect *******/
/************* SLide Top Effect ********/
.amz_slider_component .amz_slideBottom_Top .carousel-inner {
    height: 100%;
}
.amz_slider_component .amz_slideBottom_Top .active.carousel-item-right,
.amz_slider_component .amz_slideBottom_Top .carousel-item-next:not(.carousel-item-left) {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
    -webkit-transform: translateY(100%);
	transform: translateY(100%)
}
.amz_slider_component .amz_slideBottom_Top .active.carousel-item-left,
.amz_slider_component .amz_slideBottom_Top .carousel-item-prev:not(.carousel-item-right) {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
    -webkit-transform: translateY(-100%);
	transform: translateY(-100%)
}  
/************* End SLide Top Effect ********/
.ap_viewtemplate_laptop .amz_sliderItem {
    height: calc(430px);
}
.amz_slider_component .carousel-indicators li.active {
    border: 2px solid #fff;
}
.amz_slider_component.amz_slider.amz_sliderShort .container {
    max-width: 700px;
}
/*********************************************** End Slider Component ********************************************/
/* Countdown Compponent Css*/
.amz_gradient_contdown {
    background-color: transparent;
    padding: 20px 10px;
    max-width: 575px;
    margin: auto;
}
.amz_countdown_title {
    color: var(--PrimaryColor);
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
}
.amz_countdown_timer {
    list-style: none;
    display: block;
}
.amz_countdown_timer li {
    display: inline-block;
    font-size: 30px;
    padding: 10px;
    margin:auto;
    font-weight: bold;
    color: var(--AccentColor);
    /* background-color:#f9f9f9;
    border-radius:5px; */
}
.amz_countdown_timer li span {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    color: var(--AccentColor);
}
.amz_section .amz_countdown_title p {
    color: var(--PrimaryColor);
}
/* End Countdown Compponent Css*/

/* Notification Component */
.amz_notification_component .toast {
    opacity: 1;
}
/* Notification Component */
/* Testimonial Component */
.amz_testimonial_component {
    padding: 20px 0;
}
.amz_testimonial_component .container {
    padding: 0;
}
.amz_testimonial_slider .carousel-control-next svg, 
.amz_testimonial_slider .carousel-control-prev svg {
    width: 30px;
    fill: var(--PrimaryColor);
}
/* Testimonial Slicer */
.amz_testimonial_slider .client-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 4px solid #fff;
    margin: 0px auto 20px;
    border-radius: 100%;
}
.amz_testimonial_slider .carousel-content {
    padding: 50px 0px;
}
.amz_testimonial_slider .carousel-content h3 span {
    font-size: 17px;
    font-weight: normal;
    color: var(--SecondaryColor);
    text-transform: uppercase;
}
.client-img img {
    width: 100%;
}
.amz_testimonial_slider .carousel-control-prev, 
.amz_testimonial_slider .carousel-control-next {
    font-size: 36px;
    color: var(--blueColor) !important;
}
.amz_testimonial_slider h2 {
    font-size: 28px;
    border-bottom: 1px solid #7fbdff;
    padding-bottom: 20px;
    display: inline-block;
    font-weight: bold;
    color: var(--TextColor);
}
.amz_testimonial_slider{
    padding: 70px 0;
    text-align: center;
}
.amz_testimonial_slider .carousel-content p {
    font-size: 14px;
}
/* End Testimonial Component */
/* Iframe Component */
.amz_ifram_component .embed-responsive {
    margin: auto;
}
.ap_viewtemplate_laptop .amz_ifram_component iframe {
    min-height: 420px;
}
.amz_ifram_component iframe {
    border: 0px;
    min-height: 150px;
    /*min-height: 350px;*/
}
.amz_iframeTitle, .amz_iframeTitle p{
    color: var(--PrimaryColor);
}
.amz_header_holder + .amz_section {
    padding-top: 71px !important;
}
.amz_header_holder.amz_menuTop + .amz_section {
    padding-top: 110px !important;
}
section.amz_section.amz_focus_element {
    background-color: transparent;
}
/* Image Component */
.amz_imageTitle, .amz_videoTitle, .amz_iframeTitle, .amz_sliderTitle, .amz_formTitle, .amz_ratingTitle, .amz_mapTitle, .amz_socialLink,
.amz_imageTitle p, .amz_iframeTitle p, .amz_videoTitle p, .amz_formTitle p, .amz_sliderTitle p, .amz_ratingTitle> p, .amz_mapTitle> p, .amz_socialLink> p {
    color: var(--PrimaryColor);
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    /* padding: 0 5px; */
    white-space: normal;
    word-break: break-word;
    max-width: 700px;
    margin: 0 auto;
}
.amz_imageTitle > p:first-child,
.amz_iframeTitle > p:first-child, 
.amz_videoTitle > p:first-child,
.amz_sliderTitle > p:first-child,
.amz_ratingTitle> p:first-child,
.amz_mapTitle> p:first-child,
.amz_socialLink> p:first-child {
    padding-top: 20px;
}
.amz_imageTitle > p:last-child,
.amz_iframeTitle > p:last-child, 
.amz_videoTitle > p:last-child,
.amz_sliderTitle > p:last-child,
.amz_formTitle >  p:last-child,
.amz_ratingTitle> p:last-child,
.amz_mapTitle> p:last-child,
.amz_socialLink> p:last-child  {
    padding-bottom: 20px;
}
.amz_splash_screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    flex-direction: column;
}
.amz_splash_screen img {
    width: 100px;
    height: 100px;
}
.amz_splash_screen p {
    font-size: 20px;
    font-weight: bold;
    color: var(--SecondaryColor);
    text-align: center;
}
/* End Image Component */ 
.amz_audio_component {
    padding: 20px 5px;
}
/* Image Component */
.amz_imageTitle, .amz_videoTitle, .amz_iframeTitle, .amz_sliderTitle, .amz_formTitle,
.amz_imageTitle p, .amz_iframeTitle p, .amz_videoTitle p, .amz_formTitle p, .amz_sliderTitle p {
    color: var(--PrimaryColor);
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    padding: 0 5px;
    white-space: normal;
    word-break: break-word;
    max-width: 700px;
    margin: 0 auto;
}
.amz_imageTitle > p:first-child,
.amz_iframeTitle > p:first-child, 
.amz_videoTitle > p:first-child,
.amz_sliderTitle > p:first-child,
.amz_formTitle >  p:first-child {
    padding-top: 20px;
}
.amz_imageTitle > p:last-child,
.amz_iframeTitle > p:last-child, 
.amz_videoTitle > p:last-child,
.amz_sliderTitle > p:last-child,
.amz_formTitle >  p:last-child  {
    padding-bottom: 20px;
}
/* End Image Component */ 
.amz_audio_component {
    padding: 20px 5px;
}
/************************************
    Header Menu Right
**********************************/
.amz_menuRight .amz_main_menu {
    order: 3;
    max-width: 20px;
    left: auto;
    right: 20px;
}
.amz_menuRight .amz_main_logo {
    text-align: left;
    order: 1;
    width: calc(100% - 60px);
}
.amz_menuRight .amz_main_menu {
    order: 3;
    max-width: 20px;
    left: auto;
    right: 20px;
    bottom: 0;
    height: 70px;
}
.amz_menuRight .amz_main_menu.amz_open_menu .amz_mobile_menu {
    left: auto;
    right: -20px;
}
.amz_menuRight .amz_auto_nav_more_list,.amz_menuRight .amz_mobile_menu {
    /* left: auto; */
    right: -270px;
}
.amz_menuRight .amz_open_menu .amz_togglemenu {
    left: -205px;
}
.amz_menuRight .amz_togglemenu {
    left: 0;
    /* top: 15px; */
}
.ap_viewtemplate_laptop .amz_menuRight .amz_doticon {
    top: -13px;
}
.amz_menuRight .amz_rightmenu {
    max-width: 30px;
    order: 2;
    width: 60px;
    position: relative;
    left: -20px;
}
.amz_doticon {
    color: var(--PrimaryColor) !important;
}
/*****************************
    Menu Top
******************************/
.amz_menuTop .amz_main_menu {
    order: 2;
    width: 100%;
    max-width: calc(100% - 00px);
    padding: 0 10px;
    left: 0;
    right: 0;
    margin-left: auto;
    position: relative;
    display: flex;
    align-items: center;
    background-color: transparent;
}
.amz_menuTop .amz_main_logo {
    text-align: left;
    max-width: 300px;
}
.amz_menuTop .amz_rightmenu {
    order: 3;
    max-width: 40px;
    z-index: 999;
}
.amz_menuTop .amz_mobile_menu {
    position: fixed;
    max-width: 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 25px;
    height: 64px;
    top: 55px;
    overflow: auto;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 20%);
    white-space: nowrap;
    display: inline-block;
    justify-content: center;
    vertical-align: middle;
}
.amz_menuTop .amz_mobile_menu li{
    display: inline-block;
    align-items: center;
    vertical-align: middle;
}
.amz_menuTop .amz_mobile_menu li a {
    padding: 0px 10px;
    border-bottom: 1px solid transparent;
    line-height: 42px;
    font-size: 14px;
    font-weight: 500;
    height: 60px;
    vertical-align: middle;
    display: flex;
    align-items: center;
}
.amz_menuTop .amz_togglemenu {
    display: none !important;
}
.amz_header_holder ol{
    display: none;
}
.amz_menuTop  ol {
    position: absolute;
    right: 0; top: 0;
    overflow: visible;
    display: block;
    z-index: 9999;
    list-style: none;
    margin-bottom: 0;
}
.amz_menuTop .amz_mobile_menu::-webkit-scrollbar-track,
.amz_footer_menu ul::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
	background-color: transparent;
}
.amz_menuTop .amz_mobile_menu::-webkit-scrollbar,
.amz_footer_menu ul::-webkit-scrollbar{
	height: 4px;
	background-color: transparent;
}
.amz_menuTop .amz_mobile_menu::-webkit-scrollbar-thumb,
.amz_footer_menu ul::-webkit-scrollbar-thumb{
	background-color: var(--PrimaryColor);
}
/**********************************/
.amz_menuTop ol ul {
    position: absolute;
    top: 120%;
    right: 10%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    padding: 0px;
    border-radius: 10px;
    min-width: 150px;
    max-width: 150px;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
span.amz_dotted_menu:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: #E1E6F1;
    background-image: url(../images/svg/arrow_dark_icon.svg);
    background-repeat: no-repeat;
    background-size: 6px;
    background-position: center center;
    right: 0;
    top: 0px;
    transform: rotate(90deg);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
.amz_menuTop ol > li span.amz_dotted_menu {
    height: 30px;
    display: inline-block;
    width: 30px;
    margin-top: 5px;
    position: relative;
    margin-right: 5px;
}
.amz_menuTop ol li ul > li:hover a{
    background-color:var(--PrimaryColor);
    color: #fff;
}
.amz_menuTop ol li ul > li a{
    list-style: none;
    color: var(--PrimaryColor);
    padding: 0px 10px;
    display: block;
    font-size: 14px;
    text-overflow: ellipsis;
    height: 40px;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    line-height: 40px;
    text-transform: capitalize;
}
.amz_menuTop ol li:hover ul {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s;
}
/*************** Bottom Menu ********************/
.amz_header_holder.amz_menuBottom.amz_menuTop .amz_main_logo {
    width: 100%;
    max-width: 100%;
}
.amz_menuTop.amz_menuBottom .amz_main_menu {
    top: 605px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
.amz_menuBottom.amz_menuTop span.amz_dotted_menu:before {
    transform: rotate(-90deg);
}
.amz_menuTop.amz_menuBottom  ol ul {
    bottom: 120%; 
    top: auto;
}
.amz_menuTop.amz_menuBottom .amz_mobile_menu li a {
    padding: 0px 20px;
    line-height: 42px;
}
.amz_header_holder.amz_menuTop {
    max-height: 55px;
    padding: 20px 10px 10px;
}
.amz_menuTop.amz_menuBottom .amz_main_menu {
    max-width: calc(100%);
    position: fixed;
    top: auto;
    background-color: #fff;
    bottom: 0;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 30%);
}
.amz_header_holder.amz_menuBottom.amz_menuTop {
    padding: 20px 10px 15px;
}
.amz_menuTop .amz_main_logo {
    text-align: left;
    max-width: 100%;
    max-height: 30px;
}
.amz_mainComponent_holder + .amz_section {
    margin-top: 70px;
}
.amz_menuBottom.amz_menuTop ~ .amz_section:last-of-type {
    margin-bottom: 45px;
}
/************************************
    Header Menu End
*************************************/
.amz_formComponent > .container {
    padding: 0;
    width: 100%;
    margin: 0 auto 20px;
    border: 0px solid #edf1fa;
    border-radius: 10px;
    clear: both;
}
.amz_formComponent {
    padding: 15px;
    max-width: 850px;
    margin: auto;
}
.amz_formComponent .form-group.amz_checkbox {
    max-width: calc(100% - 30px);
    margin: 0 auto 10px;
}
/**************************************
    Rating Component
***************************************/
.amz_inner {
    padding: 0px 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.amz_rating {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0px 0px 15px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 15px;
}
.amz_rating_num {
    color: #333333;
    font-size: 75px;
    font-weight: 100;
    line-height: 1em;
}
.amz_rating_stars {
    font-size: 20px;
    color: #E3E3E3;
    margin-bottom: .5em;
}
.amz_rating_stars .amz_Ractive {
    color: #737373;
}
.amz_rating_users {
    font-size: 14px;
    color: #000;
    line-height: normal;
}
.amz_histo {
    float: left;
    width: calc(100%);
    font-size: 13px;
}
.amz_histo_star {
    padding: 0px;
    color: #333;
    display: inline-block;
    min-width: 40px;
    line-height: normal;
}
.amz_histo_rate {
    width: 100%;
    display: flex;
    clear: both;
    text-align: left;
    margin-bottom: 10px;
}
.amz_bar_block {
    margin-left: 5px;
    color: black;
    display: block;
    float: left;
    width: calc(100%);
    position: relative;
    background-color: rgb(189 189 189 / 20%);
    border-radius: 20px;
    height: 16px;
}
.amz_bar span {
    color: #fff;
    display: contents;
}
span.amz_totalRating {
    width: 65px;
    text-align: right;
    color: var(--PrimaryColor);
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    line-height: normal;
}
.amz_bar {
    display: inline-block;
    overflow: visible !important;
    border-radius: 20px;
    padding: 0px 10px;
    background-color: var(--PrimaryColor);
    font-size: 11px;
    min-width: 28px;
    vertical-align: top;
    line-height: normal;
}
.amz_histo_rate:first-child .amz_bar{
    background-color: var(--PrimaryColor);
    opacity:1;
}
.amz_histo_rate:nth-child(2) .amz_bar {
    background-color:  var(--PrimaryColor);
    opacity:0.9;
}
.amz_histo_rate:nth-child(3) .amz_bar {
    background-color:  var(--PrimaryColor);
    opacity:0.8;
}
.amz_histo_rate:nth-child(4) .amz_bar {
    background-color:  var(--PrimaryColor);
    opacity:0.7;
}
.amz_histo_rate:nth-child(5) .amz_bar {
    background-color:  var(--PrimaryColor);
    opacity:0.6;
}
.amz_histo_star svg {
    fill: #d69904;
    position: relative;
    top: -3px;
}
/* .ap_viewtemplate_laptop .amz_rating {
    float: left;
    width: 139px;
    text-align: center;
    margin: 0px 0px 15px;
    border-bottom: 0;
    padding-bottom: 15px;
}
.ap_viewtemplate_laptop .amz_histo {
    float: left;
    width: calc(100% - 150px);
    font-size: 13px;
    border-left: 1px solid #000;
} */
/**************************************
    End Rating Component
***************************************/
/********** Form Type Css ***********/
.amz_lineForm .form-control {
    border: 0px;
    background-color: transparent;
    border-bottom: 1px solid #e0e9f1;
    border-radius: 0px;
    line-height: normal;
    height: auto;
    padding: 0px;
    transition: all 0.5s;
}
.amz_radiusZero .form-control {
    border-radius: 0;
}
.amz_require label.amz_label:after {
    content: "*";
    color: #f90f0f;
}
.amz_require .amz_label {
    position: relative;
    display: block;
}
.amz_checkbox {
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--grayColor1);
}
/* .amz_checkbox input {
    display: none;
} */
.amz_checkbox span{
	height: 18px;
	width: 18px;
	border: 1px solid #E5E7F7;
	background-color: #f8fbfc;
	position: absolute;
	content: '';
	border-radius: 5px;    
	left: 15px;
    top: 0;
}
.amz_checkbox span:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 5px;
	border: 2px solid #ffffff;
	border-top: none;
	border-right: none;
	left: 3.1px;
	top: 4px;
	transform: rotate(-45deg) scale(0);
}
.amz_checkbox input:checked ~ span{
	border-color: var(--PrimaryColor);
	background-color: var(--PrimaryColor);
}
.amz_checkbox input:checked ~ span:after{
	transform: rotate(-45deg) scale(1);
}
.amz_checkbox input{
    position: absolute;
    width: 100%;
    height: 20px;
    left: 0;
    opacity: 0;
    z-index: 99;
    cursor: pointer;
}
.form-group.amz_checkbox{
    padding-left: 40px;
}
.amz_sliderAccordian_setting .ap_label_list span {
    font-weight: 500;
}
.amz_radio span {
    border-radius: 15px;
}
.amz_main_container> .amz_modal.show {
    top: 0;
    bottom: 0;
}
.amz_headerDescription p {
    color: #fff;
}
.amz_mainComponent_holder .amz_menuBottom.amz_menuTop ~ .amz_section:last-child {
    margin-bottom: 50px;
}
.amz_slider_component {
    position: relative;
}
/* Rating Modal Css */
ul.amz_starRating_list {
    padding: 0;
    display: block;
    list-style: none;
    text-align: center;
}
ul.amz_starRating_list li {
    display: inline-block;
}
ul.amz_starRating_list li a svg {
    width: 30px;
    height: 30px;
    fill: #ccc;
}
ul.amz_starRating_list li a svg:hover,
ul.amz_starRating_list li.amz_activeRating a svg{
    fill: #f0b706;
}
.amz_contactForm .amz_label.openMyModal {
    text-align: inherit;
    color: var(--TextColor);
}
p.respMessage.error {
    font-size: 12px;
    text-align: center;
    display: block;
    margin: 20px 0;
    color: #f90000;
}
/** Registration Form **/
.amz_countryCode span.input-group-text {
    background-color: #ecf1fa;
    border-radius: 4px 0px 0px 4px;
    padding: 0 5px;
    font-size: 12px;
    height: 40px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    border: 1px solid #dde7ff;
}
.amz_modal_dialog .amz_countryCode .amz_form_control {
    max-width: calc(100% - 55px);
    display: inline-flex;
    margin: 0px 0px;
    border-radius: 0px 4px 4px 0px;
    position: relative;
    top: 0px;
    vertical-align: text-bottom;
}
.amz_modal_dialog .amz_countryCode .amz_form_control {
    max-width: calc(100% - 55px);
    display: inline-flex;
    margin: 0px 0px;
    border-radius: 0px 4px 4px 0px;
    position: relative;
    top: 0px;
    vertical-align: text-bottom;
}
.amz_modalContent_text.amz_modalText_h2 {
    font-size: 26px;
    color: var( --PrimaryColor);
}
.amz_modalContent_text.amz_modalText_h2 {
    font-size: 20px;
    margin: 10px 0;
}
.amz_modalContent_text a.amz_btn {
    padding: 10px 20px;
}
.amz_modalImage img {
    max-height: 120px;
    max-width: 100%;
}
.amz_modalContent_text {
    text-align: center;
}
.amz_modal_dialog textarea.form-control {
    height: auto;
    line-height: normal;
}
.amz_modalContent_text.amz_modalText_p {
    font-size: 14px;
    margin-bottom: 15px;
}
.amz_modal .amz_modal_header .modal-title {
    font-size: 16px;
    font-weight: bold;
    color: var( --PrimaryColor);
}
/** Inline Popup **/
.amz_inlineModal_dv .amz_modal_body {
    display: flex;
    flex-wrap: wrap;
}
.amz_inlineModal_dv .amz_modalImage img{
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: 25px;
    left: 15px;
}
.amz_inlineModal_dv .amz_modalContent_text {
    padding-left: 70px;
    align-items: flex-start;
    align-self: flex-start;
    line-height: normal;
    text-align: left;
}
.amz_inlineModal_dv .optin.d-none + .amz_modalContent_text {
    padding-left: 0px;
}
.amz_inlineModal_dv .optin + .amz_modalContent_text {
    text-align: left;
    padding: 0;
}
.amz_inlineModal_dv .amz_contactForm .optin {
    text-align: left;
    padding: 15px;
    border: 1px solid #ffffff;
    margin: 20px 0 0;
    border-radius: 10px;
    width: 100%;
}
.amz_contactForm {
    text-align: left;
    width: 100%;
}
/** Block Popup **/
.amz_blockModal_dv .amz_modal_body {
    padding: 25px ​15px;
}
.amz_blockModal_dv .amz_modalContent_text a.amz_btn {
    padding: 10px 30px;
    max-width: 200px;
    width: 80%;
    border-radius: 40px;
    color: #fff;
}
.amz_blockModal_dv .optin {
    border: 1px solid #ffffff;
    padding: 15px;
    margin: 20px 0 0;
    border-radius: 10px;
}
.amz_blockModal_dv .amz_modalImage img{
    width: 100px;
    height: 100px;
    background-color: #ececec;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.amz_blockModal_dv  .amz_modalContent_text.amz_modalText_h2 {
    font-size: 18px;
    margin: 10px 00 0;
    font-weight: 700;
}
div#popUpPageWrapper .amz_modal {
    z-index: 99999;
}
.amz_blockModal_dv form .amz_modalContent_text {
    display: flex;
    justify-content: center;
    align-items: center;
}
.amz_blockModal_dv .amz_modal_header h5 {
    display: none;
}
.amz_blockModal_dv .amz_modal_header button.close {
    position: absolute;
    right: 10px;
}
.amz_blockModal_dv .amz_modal_header {
    padding: 0;
    border: 0px;
}
/************** Profile Page Css ******************/
.amz_profilePage_section {
    padding-top: 75px;
    text-align: left;
    min-height: 100vh;
    display: block;
}
.amz_userName img {
    max-width: 100%;
    margin-bottom: 20px;
}
.amz_userName h1 {
    font-size: 20px;
    font-weight: bold;
    /* color: var(--PrimaryColor); */
    margin-bottom: 0;
}
.amz_userName h1 span{
    font-weight: bold;
    color: var(--PrimaryColor);
}
.amz_userName h2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--SecondaryColor);
    margin-bottom: 0;
}
.amz_otherDetails ul {
    list-style: none;
    text-align: left;
    margin: 20px 0px 0px;
}
.amz_otherDetails ul li {
    font-size: 12px;
}
.amz_profile_details {
    width: 100%;
    text-align: left;
    display: inline-block;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
}
.amz_tabContentProfile {
    padding: 15px;
    width: calc(100% - 0px);
    margin-left: 0px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
}
.amz_tabContentProfile ul li a {
    color: #000;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    border: 0;
    margin-bottom: -1px;
    font-size: 12px;
}
.amz_tabContentProfile ul li a.active {
    color: #fff;
    border: 1px solid var(--PrimaryColor);
    background-color: var(--PrimaryColor);
}
.amz_tabContentProfile .tab-content>.active {
    display: block;
    opacity: 1;
}
.amz_tabContentProfile .amz_countryCode .amz_form_control {
    width: calc(100% - 70px);
    display: inline-block;
}
.amz_tabContentProfile .amz_countryCode span.input-group-text {
    height: 45px;
    width: 65px;
}
.amz_tabContentProfile .amz_form_control {
    height: 45px;
}
.amz_tabContentProfile .amz_contactForm {
    margin-top: 30px;
}
.amz_tabContentProfile button.amz_btn {
    height: 40px;
}
.amz_tabContentProfile .amz_form_control.amz_textarea {
    padding: 15px;
    height: auto;
    resize: none;
}
.amz_otherDetails ul li {
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: bold;
}
.amz_otherDetails ul li span {
    font-weight: normal;
}
.amz_addressSelect.amz_marginTop {
    margin-top: 30px;
}
.amz_address .amz_removeAddress {
    top: 5px;
    width: 20px;
    height: 20px;
    right: 10px;
    padding: 5px;
}
.amz_address .amz_removeCart.amz_editAddress {
    left: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    top: 23px;
}
.amz_address .amz_removeCart.amz_editAddress svg{
    fill: #7f728a;
}
a.amz_address.openMyAddressModal {
    font-size: 20px;
    color: #564f5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.amz_address.amz_active_address .amz_removeCart.amz_editAddress svg {
    fill: #4ca750;
}
/**************************************************/
/* iframe.ap_preview_iframe body::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 0px rgb(0 0 0 / 0%);
	background-color: transparent;
}
iframe.ap_preview_iframe body::-webkit-scrollbar{
	width: 0px;
	height: 0px;
	background-color: transparent;
}
iframe.ap_preview_iframe body::-webkit-scrollbar-thumb{
	background-color: var(--themeColor);
	/* border: 1px solid #e0f3fb; 
} */
/********* Product Component Css **************/
.amz_productTitle {
    font-size: 24px;
    line-height: normal;
    text-align: center;
    color: inherit;
    font-weight: bold;
    /* padding: 0 0 15px  0; */
}
.amz_productList {
    color: inherit;
    padding: 20px 0;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.amz_productImage {
    max-width: 100%;
    margin: 0px 0px;
    width: 100px;
    border-radius: 5px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    height: 100px;
    float: left;
    border: 1px solid #f9f9f9;
}
.amz_productImage iframe.amz_procuct_img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}
.amz_productContent {
    width: calc(100% - 100px);
    display: inline-block;
    text-align: left;
    padding: 0px 5px;
    float: left;
}
.amz_productHeading {
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    text-transform: capitalize;
    color: var(--PrimaryColor);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.amz_inlineList .amz_productImage {
    margin: 5px 0;
}
.amz_productCategory {
    font-size: 10px;
    line-height: normal;
    color: inherit;
    opacity: 0.8;
}
.amz_productDescription {
    font-size: 12px;
    line-height: normal;
}
.amz_productAmount {
    font-size: 14px;
    font-weight: bold;
    margin: 0px 0 0;
    color: #f93d5c;
}
button.amz_btn.amz_productButton {
    margin: 10px 0 0;
}
.amz_default {
    display: block;
    width: 100%;
}
.amz_default.amz_productList_item .carousel-item,
.amz_inlineList.amz_productList_item .carousel-item,
.amz_fullwidth_product.amz_productList_item .carousel-item{
    display: block !important;
    position: relative; 
    margin-right: 0px !important;
}
/* .amz_default.carousel-inner .carousel-item,
.amz_inlineList.carousel-inner .carousel-item,
.amz_fullwidth_product.carousel-inner .carousel-item,
.carousel-inner .carousel-item  {
    display: none !important;
    margin-right: -100px !important;
}  */
.amz_default.carousel-inner .carousel-item.active,
.amz_inlineList.carousel-inner .carousel-item.active,
.amz_fullwidth_product.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item.active  {
    display: block  !important;
}
/***** SLider Fade Effect *******/
/* .amz_product_listWrapper .carousel-item {
    opacity: 0;
    transition: opacity ease-out .3s;
    height: 500px;
}
.amz_product_listWrapper .carousel-item.active,
.amz_product_listWrapper  .carousel-item-next.carousel-item-left,
.amz_product_listWrapper  .carousel-item-prev.carousel-item-right {
    opacity: 1;
}
.amz_product_listWrapper  .active.carousel-item-left,
.amz_product_listWrapper  .active.carousel-item-right {
    opacity: 0;
}
.amz_product_listWrapper  .carousel-item-next,
.amz_product_listWrapper  .carousel-item-prev,
.amz_product_listWrapper  .carousel-item.active,
.amz_product_listWrapper  .active.carousel-item-left,
.amz_product_listWrapper  .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
} */
/************* SLide Top Effect ********/
.amz_product_listWrapper .carousel-inner {
    height: 100%;
}
.amz_product_listWrapper .active.carousel-item-right,
.amz_product_listWrapper .carousel-item-next:not(.carousel-item-left) {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}
.amz_product_listWrapper .active.carousel-item-left,
.amz_product_listWrapper .carousel-item-prev:not(.carousel-item-right) {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}  
/****************************************************/
.amz_procuctRightItem .amz_btn{
    margin: 10px 0;
    font-size: 12px;
    padding: 7px 7px;
    border-radius: 3px;
}
.amz_productImage img {
    max-width: 100%;
}
/** Full WIdth Product **/
.amz_fullwidth_product .amz_productImage {
    width: 100%;
    text-align: center;
    /* height: auto; */
    height: 230px;
}
.amz_fullwidth_product .amz_productContent {
    width: 100%; 
    padding: 10px;
    /* margin: 20px 0; */
}
.amz_fullwidth_product .amz_productHeading {
    font-size: 18px;
    margin-bottom: 0px;
    color: var(--PrimaryColor);
    max-width: calc(100% - 50px);
}
.amz_fullwidth_product .amz_procuctRightItem {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.amz_fullwidth_product .amz_productCategory {
    font-size: 12px;
    margin-bottom: 10px;
}
.amz_fullwidth_product .amz_productDescription {
    font-size: 13px;
}
p.amz_choosePC {
    padding: 20px 0;
    text-align: center;
    color: inherit;
    width: 100%;
}
.amz_fullwidth_product .amz_productImage, 
.amz_fullwidth_product .amz_productContent {
    width: 100%;
    text-align: left;
    margin: 0;
    position: relative;
}
.amz_fullwidth_product .amz_productAmount {
    position: absolute;
    right: 15px;
    top: 15px;
}
.amz_product {
    display: flex;
    flex-direction: column;
    color: #000000;
    /* padding: 20px 0; */
}
.amz_procuctRightItem .amz_btn {
    margin: 5px 0 0;
    font-size: 11px;
}
.amz_productImage img {
    max-width: 100%;
    height: 100%;
}
.amz_productList {
    padding: 4px;
    position: relative;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}
.amz_product_slide_handler a.carousel-control-prev,
.amz_product_slide_handler a.carousel-control-next {
    left: -15px;
    background-color: transparent !important;
    color: #000 !important;
    padding: 5px;
    width: 50px;
}
.amz_product_slide_handler a.carousel-control-next{
    left: auto;
    right: -15px;
}
.amz_product_slide_handler a.carousel-control-prev svg,
.amz_product_slide_handler a.carousel-control-next svg {
    fill: #000;
    width: 20px;
}
.carousel-inner  + .amz_product_slide_handler{
    display: block;
} 
.amz_procuct_img.amz_image_holder {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.amz_main_container.amz_without_footer_menu .amz_mainComponent_holder {
    margin-bottom: 0px;
}
/********** Inline List **********/
.amz_inlineList .amz_productText {
    width: calc(100% - 0%);
    display: inline-block;
    vertical-align: top;
}
.amz_inlineList .amz_procuctRightItem {
    width: 100%;
    display: inline-block;
    margin-left: 0%;
    text-align: left;
    vertical-align: top;
}
.amz_inlineList .amz_productAmount {
    margin: 0;
    position: absolute;
    right: 10px;
    top: 6px;
}
.amz_inlineList  button.amz_btn.amz_productButton {
    margin: 10px 0 0;
    padding: 5px 5px;
    font-size: 12px;
}
.amz_inlineList .amz_productHeading {
    font-size: 14px;
    max-width: calc(100% - 45px);
}
.amz_inlineList .amz_productCategory {
    font-size: 12px;
    margin-bottom: 15px;
}    
.amz_inlineList .amz_productDescription {
    font-size: 11px;
}  
.amz_inlineList .amz_btn.amz_productButton {
    font-size: 11px;
    padding: 9px 7px;
    text-align: center;
    margin-top: 10px;
}
.amz_fullwidth_product img.amz_procuct_img {
    height: auto;
    width: 100%;
}
.amz_ratingBtn {
    clear: both;
}
span.amz_ratingCount {
    display: block;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    line-height:normal;
    color: var(--PrimaryColor);
}
.ap_laptopscreen_template span.scroll {
    display: none !important;
}
.amz_default p {
    color: inherit;
    margin: 15px 0;
}
.amz_productDescription p {
    color: inherit;
    margin: 0;
}
.amz_btn.addToCard {
    border-color: var(--AlternateTextColor);
    background-color: var(--AlternateTextColor);
    color: #fff !important;
}
.amz_productText {
    text-align: left;
}
.amz_inlineList .amz_productImage, 
.amz_inlineList .amz_productImage >img {
    width: 80px;
    height: 80px;
    border-radius: 7px;
    display: inline-block;
}
.amz_inlineList .amz_productContent {
    width: calc(100% - 80px);
    display: inline-block;
    margin: 0;
    padding-left: 10px;
    padding-top: 0;
    padding-bottom: 0;
}
.amz_procuctRightItem {
    text-align: left;
}
.amz_inlineList .amz_productList,
.amz_inlineList.amz_remove_slider .amz_productList {
    padding: 5px;
}
/*********** Grid Component **************/
.amz_gridBox {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    padding: 5px;
    color: #fff;
    background-position: center top;
    background-size: cover;
    background-color: rgba(0 0 0 / 30%);
}
.amz_grid_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(255 208 208);
}
.amz_grid_innerText .amz_gridBox {
    position: relative;
    line-height: normal;
}
.amz_grid_innerText .amz_gridBox {
    position: relative;
    line-height: normal;
    color: inherit;
}
.amz_topcenterText .amz_gridBox {
    align-items: center;
}
.amz_centerText .amz_gridBox {
    align-items: center;
    justify-content: center;
}
.amz_topleftText .amz_gridBox .amz_grid_innerText,
.amz_bottomleftText .amz_gridBox .amz_grid_innerText {
    text-align: left;
}
.amz_toprightText .amz_gridBox .amz_grid_innerText,
.amz_bottomrightText .amz_gridBox  .amz_grid_innerText{
    text-align: right;
}
.amz_bottomcenterText .amz_gridBox , 
.amz_bottomleftText .amz_gridBox , 
.amz_bottomrightText .amz_gridBox  {
    justify-content: flex-end;
}
/** Grid Icons Css **/
.amz_onlyIcon .amz_gridBox .amz_grid_innerText i {
    font-size: 30px;
    display: block;
}
.amz_onlyIcon .amz_gridBox .amz_grid_innerText{
    font-size: 0px;
}
.amz_blockIcon .amz_gridBox .amz_grid_innerText i {
    display: block;
    font-size: 30px;
}
.amz_footer_menu ul.amz_onlyIcon {
    display: flex;
}
/** Top Menu Css **/
.amz_header_holder .amz_inlineIcon.amz_mobile_menu li a >i, 
.amz_mobile_menu li a >i {
    margin-right: 5px;
    min-width: 20px;
}
.amz_header_holder .amz_blockIcon.amz_mobile_menu li {
    vertical-align: top;
    text-align: center;
    padding: 0px 10px;
}
.amz_header_holder .amz_blockIcon.amz_mobile_menu li a{
    height: 60px;
}
/* .amz_header_holder .amz_blockIcon.amz_mobile_menu {
    height: 65px;
} */
.amz_header_holder .amz_blockIcon.amz_mobile_menu li a >i {
    margin-right: 0;
    display: block;
    min-width: 20px;
}
.amz_header_holder .amz_blockIcon.amz_mobile_menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: normal;
    padding: 5px;
}
.amz_header_holder .amz_onlyIcon.amz_mobile_menu li a {
    font-size: 0;
    align-items: center;
    justify-content: center;
    padding: 0px 15px;
    display: flex;
    border: 0;
}
.amz_header_holder .amz_onlyIcon.amz_mobile_menu li a >i {
    font-size: 20px;
}
.amz_header_holder .amz_blockIcon.amz_mobile_menu li a >i {
    font-size: 24px;
    margin-bottom: 5px;
    margin-right: 0;
    margin-left: 0;
}
/*************** Footer Menu Css ***********/
.amz_footer_menu {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0 5px;
    overflow: auto;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 35%);
    white-space: nowrap;
    min-width: 60px;
    bottom: 0;
    position: fixed;
    z-index: 999;
    height: 65px;
}
.amz_footer_menu ul {
    list-style: none;
    position: fixed;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    overflow: auto;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background-color: #fff;
}
.amz_footer_menu ul li {
    padding: 0 10px;
    line-height: 65px;
    color: var(--PrimaryColor);
    width: 100%;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background-color: transparent;
}
.amz_footer_menu ul li a{
    color: var(--PrimaryColor);
    display: inline-block;
    font-size: 14px;
}
.amz_footer_menu ul li a i {
    margin-right: 7px;
} 
/* Only Icon */
.amz_footer_menu .amz_onlyIcon {
    display: flex;
}
.amz_footer_menu.amz_onlyIcon ul li a {
    font-size: 0px;
}
.amz_footer_menu.amz_onlyIcon ul li a i {
    font-size: 24px;
    margin: 0;
}
/* Block Css */
.amz_footer_menu ul.amz_blockIcon {
    display: flex;
}
/* .amz_footer_menu.amz_blockIcon ul {
    display: block;
} */
/* .amz_footer_menu.amz_blockIcon ul li {
    display: inline-block;
} */
.amz_footer_menu .amz_blockIcon li a {
    line-height: normal;
}
/* .amz_footer_menu.amz_blockIcon ul li {
    padding: 6px 10px;
} */
.amz_footer_menu .amz_blockIcon li a i {
    display: block;
    align-items: center;
    line-height: normal;
    font-size: 24px;
    margin: 0 0 6px;
}
.amz_footer_menu ul.amz_inlineIcon {
    display: flex;
}
/***************************************************/
.amz_modal_dialog.amz_modal_dialog_bottom.amz_modal_dialog_scrollable {
    -ms-flex-pack: flex-end !important;
    justify-content: flex-end !important;
}
.amz_modal_dialog_bottom button.close {
    opacity: 1;
}
.amz_modal_dialog_bottom button.close span {
    color: #484848;
    text-shadow: none;
}
.amz_productDetail_dv img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.amz_productDetail_dv h2 {
    font-size: 20px;
    font-weight: bold;
}
.amz_modalLeftDv h5 {
    font-size: 13px;
    color: #757d8f;
    font-weight: 300;
    margin-bottom: 10px;
}
.amz_modalLeftDv p {
    font-size: 12px;
    line-height: 18px;
}
.amz_modalLeftDv {
    width: calc(100%);
    display: inline-block;
}
.amz_modalRightDv {
    padding: 0px 10px;
    height: 50px;
    background-color: #cfd7fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    vertical-align: top;
    margin-left: 10px;
    font-weight: bold;
}
div#amz_productModal_bottom {
    padding-bottom: 50px;
}
/*====================================
    Responsive Css Start
======================================*/
@media(min-width:991px){
    .amz_section img {
        max-width: 100%;
        /* max-height: 100vh; */
        /* width: auto;
        height: auto; */
    }
    .amz_ifram_component iframe {
        border: 0px;
        min-height: calc(100vh - 80px);
    }
    .amz_imageTitle, .amz_videoTitle, .amz_iframeTitle, .amz_sliderTitle, .amz_formTitle, 
    .amz_imageTitle p, .amz_iframeTitle p, .amz_videoTitle p, .amz_formTitle p, .amz_sliderTitle p {
        max-width: 991px;
        margin: 0 auto;
    }
    .amz_ratingBtn {
        float: left;
        width: 100%;
    }
    .amz_ratingTitle {
        margin-bottom: 30px;
    }
    .amz_rating {
        width: 200px;
        margin: 0px 30px 15px 0;
        border-bottom: 0px;
        border-right: 1px solid #000;
    }
    .amz_histo {
        width: calc(100% - 230px);
    }
    .amz_inner {
        display: inline-block;
        flex-direction: column;
        width: 100%;
    }
    .amz_menuTop .amz_mobile_menu {
        position: relative;
        top: -1px;
        box-shadow: none;
        /*background-color: transparent;*/
        margin: auto;
        justify-content: center;
    }
    .amz_header_holder.amz_menuTop + .amz_section {
        padding-top: 70px !important;
    }
    .amz_menuTop .amz_main_menu {
        /*max-width: calc(100% - 250px);*/
    }
    .amz_menuTop .amz_rightmenu {
        min-width: 120px;
    }
    .amz_hide_main_menu.amz_menuTop .amz_rightmenu {
        min-width: max-content;
    }
    .amz_menuTop .amz_main_logo {
        max-width: 120px;
    }
    .amz_hide_main_menu.amz_menuTop .amz_main_logo {
        max-width: 100%;
        text-align: center;
    }
}
@media(max-width:768px){
    .amz_menuTop .amz_mobile_menu li.amz_lastChild_menu {
        position: absolute;
        right: -5px;
        top: 0;
        display: block;
    }
    .amz_menuTop .amz_mobile_menu li.amz_lastChild_menu a {
        font-size: 20px;
        line-height: 24px;
    }
}
/** Menu Slide **/
/* .amz_menuTop .amz_main_menu{
    box-shadow: 0px 0px 1px rgb(0 0 0 / 30%);
} */
.amz_main_container.amz_without_footer_menu .amz_fixbottombar.d-nonea {
    bottom: 0;
}
.amz_menuTop .amz_main_menu.show-indicator {
    position: fixed;
    height: 65px;
    top: 55px;
}
.amz_header_holder.amz_menuTop .amz_main_logo img {
    max-height: 30px;
}
span.scroll {
    display: none;
}
.amz_menuTop  .scroll {
    position: absolute;
    background-color: var(--PrimaryColor);
    color: rgb(0, 0, 0);
    width: 25px;
    height: 42px;
    top: 0;
    bottom: 0;
    z-index: 999;
    left: 0;
    display: none;    
    opacity: 0.8;
}
.amz_menuTop  .scroll:last-child {
    left: auto;
    right: 0;
}
.amz_menuTop .scroll a {
    color: rgb(255, 255, 255);
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ap_mobilescreen_template .amz_menuTop .amz_mobile_menu {
    white-space: nowrap;
    padding: 0 25px;
    overflow: auto;
}
.amz_menuTop .show-indicator .scroll {
    display: block;
    height: 60px;
}
.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar,
.amz_menuBottom.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar{
    /* width: 100px; */
	height: 4px;
	background-color: transparent;
}
.amz_menuBottom.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar-track,
.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
	background-color: transparent;
}
.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar-thumb,
.amz_menuBottom.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar-thumb{
    background-color: var(--PrimaryColor);
}
.amz_header_holder.amz_menuTop.amz_hide_main_menu + section.amz_section {
    padding-top: 50px !important;
}
/************** Main Menu Css ****************/
.amz_menuTop ul.amz_mobile_menu.amz_blockIcon {
    height: 64px;
}
/************* Profile Menu Css ***************/
.amz_shareDropdown>ul.amz_blockIcon>li>a>i {
    width: 100%;
    font-size: 20px;
}
.amz_shareDropdown>ul.amz_onlyIcon>li>a>i {
    width: 100%;
    font-size: 20px;
}
.amz_shareDropdown>ul.amz_onlyIcon>li>a {
    font-size: 0;
    padding: 5px 12px;
    line-height: normal;
}
.amz_shareDropdown>ul.amz_onlyIcon>li {
    display: inline-block;
}
/************* Footer Menu Css *************/
.amz_footer_menu ul.amz_onlyIcon li a i {
    font-size: 24px;
}
.amz_footer_menu ul.amz_onlyIcon li a {
    font-size: 0px;
    line-height: 65px;
    align-items: center;
    display: flex;
    border-right: 1px solid #f9f9f9;
    width: 100%;
    justify-content: center;
}
.amz_footer_menu ul.amz_onlyIcon li {
    padding: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}
/************ Footer Menu Css******************/
.amz_footer_menu ul.amz_blockIcon li a i {
    display: block;
    font-size: 24px;
    margin: 0;
}
.amz_footer_menu ul.amz_blockIcon li a {
    line-height: normal;
    padding: 10px 0;
    font-size: 12px;
}
/*****************************/
.amz_menuRight ul.amz_mobile_menu.amz_onlyIcon li a,
.amz_menuRight ul.amz_mobile_menu.amz_blockIcon li a {
    font-size: 14px;
    align-items: center;
    justify-content: flex-start;
}
.amz_menuRight ul.amz_mobile_menu.amz_blockIcon li a i{
    display: inline-block;
}
/** Grid Column **/
.amz_col_1 .col {
    max-width: 100%;
    flex: 0 0 100%;
}
.amz_col_2 .col {
    max-width: 50%;
    flex: 0 0 50%;
}
.amz_col_3 .col {
    max-width: 33.3%;
    flex: 0 0 33.3%;
}
.amz_col_4 .col {
    max-width: 25%;
    flex: 0 0 25%;
}
.amz_padd_switch .col{
    padding: 0px;
}
.amz_padd_switch .col .amz_gridBox {
    border-radius: 0px;
}
.amz_col_4 .amz_grid_innerText,
.amz_col_3 .amz_grid_innerText  {
    font-size: 12px;
    line-height: normal;
}
.amz_col_4 .amz_gridBox{
    min-height: 75px;
}
.amz_col_3 .amz_gridBox {
    min-height: 100px;
}
.amz_grid_innerText {
    color: #fff;
    line-height: normal; 
    position: relative;
    /* text-shadow: 0 0 10px #555; */
}
/********* Cart Page Css ***********/
.amz_cartList iframe.product_image {
    width: 90px;
    height: 90px;
    max-width: 100%;
    max-height: 100%;
}
.amz_pageHeader_title {
    font-size: 20px;
    /* background-color: #fff; */
    text-align: center;
    padding: 15px 15px;
    box-shadow: none;
    position: relative;
    z-index: 9;
    margin-top: 55px;
}
.amz_cartList {    
    width: 100%;
    padding: 5px;
    position: relative;
    background-color: transparent;
    margin-bottom: 20px;
    border-radius: 0px;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 40%);
}
.amz_cartImage {
    max-width: 100%;
    margin: 0px 0;
    width: 90px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    background-size: cover;
    background-position: center;
    border: 2px solid #e4e4e4;
}
.amz_cart_img {
    max-width: 100%;
    max-height: 120px;
}
.amz_cartContent {
    width: calc(100% - 105px);
    display: inline-block;
    margin-left: 10px;
    text-align: left;
    vertical-align: top;
}
.amz_cartText,
.amz_cartRightItem {
    text-align: left;
}
.amz_carttHeading {
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
}
.amz_cartDescription {
    font-size: 13px;
    line-height: normal;
}
.amz_cartAmount {
    font-size: 14px;
    font-weight: bold;
    margin: 0px 0 5px;
}
.amz_cartQuentity {
    width: 100%;
    margin: 0;
    max-width: 105px;
}
.amz_input.amz_numberInput {
    border: 1px solid #efefef;
    padding: 0px 0px;
    height: 25px;
    width: 45px;
    font-size: 12px;
    border-radius: 5px !important;
    background-color: transparent !important;
    text-align: center;
    margin: 0 5px;
}
.amz_removeCart {
    position: absolute;
    width: 10px;
    height: 10px;
    right: 4px;
    top: -4px;
    left: auto;
    bottom: 0;
}
.amz_removeCart svg {
    fill: #f90000;
}
.amz_address .amz_removeAddress svg{
width: 10px;
height: 10px;
position: relative;
top: -6px;
}
.amz_cart_dv {
    padding: 15px;
    height: calc(100vh - 230px);
    overflow-y: auto;
    /* background-color: #fff; */
    max-width: 1200px;
    margin: auto;
}
.amz_cardCheckout {
    background-color: transparent;
    border: 0;
}
.amz_cardCheckout form.card-body {
    padding: 0;
}
.amz_cartHeading {
    width: calc(100% - 20px);
    font-weight: bold;
    color: var(--PrimaryColor);
}
.amz_cartQuentity button.btn.btn-outline-secondary {
    background-color: transparent;
    color: var(--PrimaryColor);
    padding: 0 5px;
    height: 25px;
    font-size: 16px;
    margin: 0px;
    border-radius: 5px !important;
    border: 0px;
    width: 25px;
}
.input-group-prepend {
    margin-right: 0;
}
.amz_cartQuentity button.btn.btn-decrement.btn-outline-secondary.btn-minus {
    margin-left: 0;
}
.amz_checoutbtn_holder {
    padding: 0;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    position: relative;
    z-index: 9;
}
.amz_checoutbtn_holder .amz_btn {
    width: 100%;
    max-width: 100%;
    padding: 15px 30px;
    margin: 0;
    border-radius: 0;
}
.amz_backarrow {
    position: absolute;
    width: 25px;
    left: 15px;
    top: 15px;
}
.amz_cart_table table tr td img {
    width: 90px;
    height: 90px;
    padding: 4px;
    border-radius: 4px;
    background-color: #e8e8e8;
    margin-bottom: 5px;
}
.amz_cart_table td {
    font-size: 14px;
}
.text-muted {
    font-size: 12px;
}
.list-group h6 {
    font-size: 14px;
    font-weight: bold;
}
.form-group.amz_checkbox {
    padding-left: 25px;
}
.amz_checkbox span {
    left: 0;
}
.amz_checkRadio {
    position: relative;
}
.amz_checkRadio .check {
    display: block;
    position: absolute;
    border: 1px solid #AAAAAA;
    border-radius: 100%;
    height: 17px;
    width: 17px;
    top: 34px;
    left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}
.amz_checkRadio .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 7px;
    width: 7px;
    top: 4px;
    left: 4px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}
form#otherForms button.amz_btn {
    margin-top: 0;
}
.amz_checkRadio input[type=radio]:checked ~ .check {
    border: 1px solid #03bd64;
}
.amz_checkRadio input[type=radio]:checked ~ .check::before {
    background: #03bd64;
}
.amz_checkRadio input[type=radio]:checked ~ label{
    color: #222222;
}
.amz_checkRadio input {
    opacity: 0;
}
.amz_checkRadio {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    width: 100%;
    padding: 0;
}
.amz_checkRadio label {
    position: relative;
    max-width: 100%;
    height: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 20px 50px;
    background-color: #ffffff;
    border-radius: 7px;
    border: 1px solid #efefef;
    width: 100%;
    cursor: pointer;
}
.amz_paymentName {
    width: 100%;
    font-weight: bold;
    color: var(--PrimaryColor);
}
.amz_productList {
    padding: 10px;
    position: relative;
    background-color: #fff;
    margin-bottom: 0px;
    border-radius: 5px;
    width: 100%;
    max-width: 500px;
}
.list-group-item, 
.list-groupTotal-item {
    padding: 20px;
}
.amz_imgProduct > img {
    width: 40px;
    height: 40px;
}
.amz_checkRadio label.active_pay {
    border: 1px solid #aaffd6;
    background-color: #f1fff7;
}
.amz_checkRadio img {
    max-width: 110px;
    max-height: 50px;
}
.amz_addressSelect h5, 
div#orderDetails > h5 > span,
div#selectPayment h5 {
    color: #484764;
    font-size: 16px;
    font-weight: 600;
}
.amz_address {
    padding: 24px 25px 25px 50px;
    background-color: #fdfeff;
    border-radius: 7px;
    margin-bottom: 30px;
    border: 1px solid #efefef;
    position: relative;
    cursor: pointer;
    color: #4ca750;
    font-size: 14px;
}
.amz_delevery_address svg {
    width: 20px;
    fill: #aaa;
}
.amz_delevery_address {
    font-size: 10px;
    position: absolute;
    right: 5px;
    bottom: 5px;
    cursor: pointer;
}
.amz_address.amz_active_address p{
    color: #4CA750;
}
.amz_address p {
    color: #7f728a;
    font-size: 14px;
}
.amz_address.amz_active_address {
    border: 1px solid #4CA750;
    background-color: #EAFFEB;
}
.amz_active_address .amz_delevery_address svg {
    fill: #03bd64;
}
.amz_addAddress_btn .amz_btn {
    font-size: 12px;
    border: 0px;
    font-weight: 300;
}
.badge.badge-secondary.badge-pill {
    font-size: 14px;
    background-color: var(--PrimaryColor);
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.amz_inputProduct .amz_form_control {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
}
.amz_cart_dv.amz_ty_dv {
    height: calc(100vh - 112px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.amz_ticon {
    display: block;
    margin-bottom: 20px;
}
.amz_thankyou_page h5 {
    font-weight: bold;
    margin-bottom: 10px;
}
.amz_thankyou_page p {
    max-width: 400px;
}
.amz_previews_order {
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgb(220 220 220 / 85%);
    margin-bottom: 20px;
    background-color: #ffff;
    vertical-align: top;
    position: relative;
}
.amz_previews_order .amz_btn {
    text-align: center;
    width: 100px;
    font-size: 11px;
    padding: 5px 5px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-top: 5px;
    font-weight: normal;
    margin-left: auto;
}
.amz_order_id {
    font-size: 12px;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: left;
}
.amz_order_amount {
    font-weight: bolder;
    font-size: 14px;
    color: var(--PrimaryColor);
}
.amz_order_date {
    font-size: 14px;
}
.amz_ticon svg {
    width: 100px;
    fill: #21b700;
}
ul.z-depth-1 span {
    font-size: 14px;
    font-weight: bold;
}
span.amz_green {
    color: #03ad56;
}
.amz_cardCheckout .amz_form_control {
    height: 40px;
    border-radius: 0;
}
span.amz_order_items {
    font-size: 14px;
}
.list-group-item, 
.list-groupTotal-item {
    border: 0;
    border-bottom: 1px solid rgb(239 239 239);
}
.list-group-item:first-child, 
.list-groupTotal-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.list-group-item:last-child, 
.list-groupTotal-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.list-group-item+.list-groupTotal-item {
    border-top-width: 0;
}
.amz_applyCoupon .amz_form_control {
    border-radius: 5px 0 0 5px;
    width: calc(100% - 160px);
    border-color: #ffffff;
    background-color: #fff;
}
.amz_applyCoupon button.amz_btn {
    margin: 0;
    height: 40px;
    border: 0;
    min-width: 130px;
    border-radius: 0 5px 5px 0;
}
.amz_cardCheckout ul.nav-tabs {
    text-align: center;
    width: 100%;
    margin: 0px auto 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e8e8e8;
}
.amz_cardCheckout ul.nav-tabs .nav-link {
    border: 1px solid var(--PrimaryColor) !important;
    width: 50px;
    height: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 50% !important;
    margin: 0px auto 10px;
    color: var(--PrimaryColor);
}
.amz_cardCheckout  .nav-tabs .nav-item {
    max-width: 25%;
    width: 100%;
    text-align: center;
    position: relative;
}
.amz_cardCheckout .nav-tabs .nav-item:last-child:after{
    display: none;
}
.amz_cardCheckout .nav-tabs .nav-item:after {
    content: "";
    width: calc(100% - 60px);
    height: 2px;
    position: absolute;
    left: calc(50% - (-30px));
    top: calc(50% - 15px);
    z-index: 999;
    background-color: var(--PrimaryColor);
}
.amz_cardCheckout ul.nav-tabs p {
    font-size: 14px;
}
.amz_cardCheckout ul.nav-tabs .nav-link.active {
    background-color: var(--PrimaryColor) !important;
    color: #fff !important;
}
ul.amz_order_itemList li {
    width: 60px;
    display: inline-block;
    margin: 5px 2px 10px;
    padding: 3px;
    background-color: #c3c3c3;
    border-radius: 4px;
    list-style: none;
}
.amz_modal_dialog .amz_checkbox .amz_label {
    font-size: 12px;
    padding-left: 15px;
}
.amz_checkbox span {
    left: 0px;
}
.list-group .amz_itemImage h6 {
    display: inline-block;
    text-transform: capitalize;
}
.list-group .amz_itemImage h6 small.text-muted {
    display: block;
}
.amz_itemImage img, .amz_itemImage iframe {
    width: 70px;
    height: 70px;
    padding: 0;
    background-color: #ccc;
    margin-right: 5px;
    border-radius: 10px;
}
.amz_itemImage {
    display: block;
    width: calc(100% - 105px);
}
.amz_cart_dv.amz_extraMarginDV {
    margin-top: 55px;
    height: calc(100vh - 120px);
}
.amz_remove_slider .amz_productList {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 0;
    max-width: calc(100% - 0px);
    padding: 10px;    
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.amz_product .amz_product_listWrapper {
    margin-top: 20px;
}
.amz_checkbox .form-group span {
    left: -15px;
}
.amz_checkbox .form-group {
    position: relative;
}
span.amz_status {
    display: inline-block;
    /* background-color: var(--PrimaryColor); */
    padding: 3px 20px 5px;
    border-radius: 20px;
    line-height: normal;
    color: #fff;
    font-weight: normal;
}
span.amz_status:before {
    display: none;
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    bottom: -10px;
    content: "";
    border-top: 10px solid var(--PrimaryColor);
    border-left: 0px solid var(--PrimaryColor);
    border-right: 5px solid transparent;
}
span.amz_status.amz_cancelled {
    background-color: #f90000;
}
span.amz_status.amz_delivered {
    background-color: #229e03;
}
span.amz_status.amz_shipped {
    background-color: #4ab7ad;
}
span.amz_status.amz_placed {
    background-color: #1a98d4;
}
span.amz_status.amz_in-complete {
    background-color: #ef7308;
}
span.amz_status.amz_approved {
    background-color: #D6FFD0;
    color: #4aa53f;
}
span.amz_status.amz_declinned {
    background-color: #ffd0d3;
    color: #a53f3f;
}
span.amz_status.amz_submitted {
    background-color: #d6d0ff;
    color: #403fa5;
}
span.amz_status.amz_canceled {
    background-color: #ffc9f6;
    color: #a00156;
}
/************/
span.amz_status.amz_cancelled:before  {
    /* color: #f90000; */
    border-top: 10px solid #f90000;
    border-left: 0px solid #f90000;
}
span.amz_status.amz_delivered:before  {
    /* color: #229e03; */
    border-top: 10px solid #229e03;
    border-left: 0px solid #229e03;
}
span.amz_status.amz_shipped:before  {
    /* color: #4ab7ad; */
    border-top: 10px solid #4ab7ad;
    border-left: 0px solid #4ab7ad;
}
span.amz_status.amz_placed:before  {
    /* color: #1a98d4; */
    border-top: 10px solid #1a98d4;
    border-left: 0px solid #1a98d4;
}
span.amz_status.amz_in-complete:before  {
    /* color: #ef7308; */
    border-top: 10px solid #ef7308;
    border-left: 0px solid #ef7308;
}
.amz_title_variant {
    display: inline-block;
    vertical-align: top;
    max-width: calc(100% - 60px);
}
.amz_variant > p {
    font-size: 11px;
}
.amz_addCartDetails {
    max-width: 1200px;
    margin: auto;
}
/* invoice */ 
.amz_fontInvoice {
    font-size: 11px;
}
.amz_fontInvoice h6 {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
}
.amz_invoice .table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid #dee2e6;
    font-size: 11px;
}
.amz_invoice .table td, .amz_invoice .table th {
    padding: 4px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: 11px;
}
.amz_invoice .card-header {
    padding: 10px;
    font-size: 13px;
}
.amz_cart_dv table th, .amz_cart_dv table td {
    font-size: 12px;
}
.amz_cart_dv table tbody tr:last-child td {
    border-bottom: 1px solid #dee2e6;
}
/* Social List */
.amz_socialsharing{
    padding-bottom: 10px;
}
.amz_socialLink {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    flex-wrap: wrap;
    padding: 0 !important;
}
.amz_socialLink li {
    display: inline-flex;
    flex-flow: column;
    margin: 10px 5px 10px;
    text-align: center;
    border: 0;
    /* width: 70px; */
    padding: 0px;
    max-width: calc(100% - 0px);
}
.social_link .amz_iconImage_holder {
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    justify-content: center;
    font-size: 12px;
    margin: 0 auto;
    color: #fff;
}
.amz_socialLink li p {
    margin-top: 0px;
    font-weight: normal;
    font-size: 12px;
    margin: 0;
    color: var(--PrimaryColor);
}
.amz_linkList .input-group-prepend {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--AlternateTextColor);
    border-radius: 0px;
    color: #fff;
}
/* Social amz_inlineLink Design */
.amz_inlineLink li p{
    margin-left: 10px;
}
.amz_inlineLink li a.social_link {
    margin: 0;
    display: flex;
    color: var(--AlternateTextColor);
}
.amz_inlineLink li {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
    margin: 10px 0;
    text-align: left;
}
/** Social Big Icon **/
.amz_bigIcon li {
    width: max-content;
    text-align: center;
    margin-left: 7px !important;
    margin-right: 7px !important;
}
.amz_socialsharing .amz_bigIcon li a p {
    display: block;
    width: 100% !important;
    text-align: center;
    max-width: 100%;
}
.amz_bigIcon li .social_link .amz_iconImage_holder {
    width: 70px;
    height: 70px;
}
.amz_bigIcon li .social_link .amz_iconImage_holder i{
    font-size: 24px;
}
.amz_bigIcon li, 
.amz_squareIcon li, 
.amz_smallIcon li, 
.amz_circleIcon li, 
.amz_squareIcon li, 
.amz_onlySocialIcon li,
.amz_onlySocialText li,
.amz_default li {
    /* min-width: 70px; */
    display: inline-flex;
    flex-direction: column;
    margin: 10px 5px;
}
/** Social Smalle Icon **/
.amz_smalle li .social_link .amz_iconImage_holder {
    width: 30px;
    height: 30px;
    font-size: 14px;
}
/** Social Without Test **/
.amz_socialsharing .amz_onlySocialIcon li a p {
    display: none;
}
/** Social Without Icon **/
.amz_onlySocialText li a .amz_iconImage_holder{
    display: none !important;
}
/** Social Circle Icon **/
.amz_circleIcon li a .amz_iconImage_holder{
    border-radius: 50%;
}
/** Social Square Icon **/
.amz_squareIcon li a .amz_iconImage_holder{
    border-radius: 0%;
}
.amz_mapTitle, .amz_socialTitle,
.amz_mapTitle> p, .amz_socialTitle> p {
    color: var(--PrimaryColor);
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    padding: 10px 5px;
    white-space: normal;
    word-break: break-word;
}
.amz_socialTitle {
    padding: 0;
}
.amz_socialLink .social_link, .amz_socialLink .social_link p {
    padding: 0;
    font-size: 10px;
    line-height: 18px;
    font-weight: normal;
}
.amz_mapTitle> p:first-child,
.amz_socialTitle> p:first-child {
    padding-top: 20px;
}
.amz_mapTitle> p:last-child,
.amz_socialTitle> p:last-child  {
    padding-bottom: 20px;
}
.amz_addLink {
    width: 75%;
}
.amz_innerSocial_box input {
    border: 1px solid #ededed;
    border-radius: 0px;
    font-size: 12px;
    height: 40px;
}
.amz_innerSocial_box .amz_btn {
    text-align: center;
    min-width: 150px;
    font-size: 12px;
    line-height: 40px;
    padding: 0px 10px;
    border: 0px;
}
.amz_social_link_sharing > h5 {
    margin: 20px 0 0;
    padding: 20px;
    border: 1px solid #ededed;
    border-bottom: 0;
}
.amz_mapTitle, .amz_socialLink,
.amz_mapTitle> p, .amz_socialLink> p {
    color: var(--PrimaryColor);
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    padding: 10px 5px;
    white-space: normal;
    word-break: break-word;
}
.amz_mapTitle> p:first-child,
.amz_socialLink> p:first-child {
    padding-top: 20px;
}
.amz_mapTitle> p:last-child,
.amz_socialLink> p:last-child  {
    padding-bottom: 20px;
}
.amz_socialsharing .amz_default p {
    margin: 0;
    font-size: 12px;
}
.amz_addLink {
    width: 75%;
}
.amz_innerSocial_box input {
    border: 1px solid #ededed;
    border-radius: 0px;
    font-size: 12px;
    height: 40px;
}
.amz_innerSocial_box .amz_btn {
    text-align: center;
    min-width: 150px;
    font-size: 12px;
    line-height: 40px;
    padding: 0px 10px;
    border: 0px;
}
.amz_social_link_sharing > h5 {
    margin: 20px 0 0;
    padding: 20px;
    border: 1px solid #ededed;
    border-bottom: 0;
}
.amz_linkList .amz_uploadSocial_icon:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(angle-arrow-down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    border-left: 1px solid #6d6d6d;
    background-color: #676767;
}
.amz_socialsharing ul li a p {
    font-size: 12px;
    max-width: calc(100px);
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}
/** Reservation Css **/
.amz_hotal_list ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 0px;
    list-style: none;
}
.amz_listBox {
    width: calc(20% - 20px);
    padding: 5px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border-radius: 0;
    margin: 0 10px 30px;
    position: relative;
}
li.amz_listBox:nth-child(5n) {
    margin-right: 0;
}
li.amz_listBox:first-child,
li.amz_listBox:nth-child(6n) {
    margin-left: 0;
}
.amz_bookImage{
    position: relative;
}
.amz_listBox h5 {
    font-size: 15px;
    margin: 20px 0 10px;
    font-weight: bold;
}
.amz_listBox h6 {
    font-size: 12px;
}
.amz_location input.amz_form_control {
    width: calc(100% - 153px);
    padding: 0 20px;
    border-radius: 0;
    float: left;
}
.amz_location span {
    width: 50px;
    display: inline-flex;
    text-align: center;
    background-color: var(--PrimaryColor);
    height: 50px;
    vertical-align: top;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 1px 0 0;
    float: left;
}
.amz_shareIcon_link, 
.amz_heartIcon {
    position: absolute;
    background-color: var(--PrimaryColor);
    display: inline-flex;
    align-items: center;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 50px;
    right: 10px;
    bottom: 10px;
    font-size: 14px;
}
.amz_heartIcon{
    right: 60px;
}
.amz_shareIcon_link.amz_activeIcon, 
.amz_shareIcon_link:hover{
    background-color: #0374ad;
}
.amz_heartIcon.amz_activeIcon,
.amz_heartIcon:hover{
    background-color: red;
    right: 60px;
}
.amz_reservation_time {
    display: flex;
    width: 100%;
}
.amz_reservation_dv {
    display: flex;
    flex-direction: column;
}
.amz_order_summery_box {
    display: inline-block;
    width: calc(100%);
}
.amz_order_summery_box span {
    display: block;
    width: 100%;
    margin: 10px 0 10px;
}
.amz_summeryBtn {
    display: flex;
    justify-content: space-between;
}
.amz_summeryBtn .amz_btn {
    margin-left: 0;
}
.amz_summeryBtn .amz_btn.amz_cancleBtn_dv {
    background-color: #2b2828;
    border: 0px;
}
.amz_order_itemList {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
    text-align: left !important;
}
.amz_guest_dropdown {
    width: 170px;
    color: #333;
    height: 50px;
    display: flex;
    margin: 0px 0px 15px 15px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadada;
}
.amz_guest_dropdown:hover  {
    color: var(--PrimaryColor);
}
.amz_guest_dropdown:hover +  {
    color: var(--PrimaryColor);
}
.varient_wrapper > .d-flex {
    flex-wrap: wrap;
}
.amz_selectGuest {
    position: absolute;
    left: auto;
    right: 0;
    top: 50px;
    bottom: 0;
    padding: 0px;
    width: 500px;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    z-index: 9999;
}
.amz_guestDv:hover  .amz_selectGuest {
    opacity: 1;
    visibility: visible;
}
.amz_selectGuest > .form-inline {
    width: 500px;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    padding: 15px;
    border-radius: 4px;
}
.amz_selectGuest .form-inline .custom-select, 
.amz_selectGuest .form-inline .input-group {
    width: calc(50% - 3px);
    padding-right: 15px;
    border-right: 1px solid #eee;
    display: inline-flex;
    vertical-align: top;
}
.amz_cartQuentity .input-group + .input-group {
    border: 0px;
    padding-right: 0;
    padding-left: 15px;
}
.amz_label_guest {
    display: block;
    width: 100%;
    text-align: left;
    margin: 15px 0 5px;
    position: relative;
    font-weight: 600;
    font-size: 14px;
}
.amz_selectGuest .amz_cartQuentity label {
    font-size: 12px;
    margin-right: 10px;
}
.amz_guestDv {
    position: relative;
}
.amz_addremove_btnHolder {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
    width: 100%;
}
.amz_addremove_btnHolder a.amz_btn {
    margin: 15px 10px 0 0px;
    font-size: 12px;
    padding: 5px 15px;
}
.amz_addremove_btnHolder a.amz_btn:last-child {
    margin: 15px 0 0 0;
}
.amz_btn.amz_grayBtn{
    background-color:var(--AlternateTextColor);
    border: 1px solid var(--AlternateTextColor);
}
.amz_reservation_time input {
    width: 100%;
    padding: 0 20px;
    border-radius: 0px;
}
.amz_label_guest .amz_removeCart {
    position: absolute;
    top: 0px;
}
.amz_shortingRightBar {
    position: fixed;
    width: 280px;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    top: 0;
    bottom: 0;
    right: -280px;
    left: auto;
    height: 100vh;
    z-index: 99999;
    padding: 20px;
    transition: all 0.5s;
}
.amz_shortingRightBar.amz_openRightBar{
    right:0px;
}
.amz_shortingRightBar ul {
    padding: 0px;
    list-style: none;
}
.amz_shortingRightBar ul li a {
    color: #000;
    padding: 15px 0;
    display: inline-block;
    border-bottom: 1px solid #eee;
    width: 100%;
}
.amz_shortingRightBar h5 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    line-height: 40px;
}
/** FontAwesome Modal Css **/
.amz_search_icon svg {
    fill: #a1a3ce;
}
.amz_search_icon {
    position: absolute;
    left: 18px;
    top: 14px;
}
.amz_position_r {
    position: relative;
}
.amz_modal_dialog .amz_modal_body h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--darkColor);
    margin-bottom: 20px;
}
.amz_iconlist_modal {
    max-height: 450px;
    overflow-y: auto;
}
.amz_position_r input.form-control {
    height: 50px;
    border-radius: 7px;
    padding: 0 20px 0px 50px;
    color: #454764;
    box-shadow: none !important;
    font-size: 14px;
    font-weight: 500;
    background-color: #fbfdff;
    border: 1px solid #e0e9f1;
    line-height: 50px;
}
/** Layout Box Radio **/
.amz_layoutScreen {
    display: inline-block;
    text-align: left;
    position: relative;
    width: 100%;
}
label.layout_label:nth-child(odd) {
    margin-left: 0;
}
.layout_label {
    width: calc(50% - 10px);
    display: inline-block;
    border: 1px solid #DCE3F3;
    border-radius: 5px;
    background-color: #EEF7FE;
    padding: 30px 5px;
    position: relative;
    margin-left: 15px;
    text-align: center;
    margin-bottom: 60px;
    cursor: pointer;
}
.layout_label img {
    max-width: 100%;
    display: inline-block;
    margin: auto;
    position: relative;
    z-index: 2;
}
.layout_label p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    color: var(--darkColor);
    font-weight: 500;
}
.select_box_radio {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
    cursor: pointer;
}
.amz_selected_radio:before {
    width: 22px;
    height: 22px;
    content: "";
    position: absolute;
    left: 7px;
    top: 10px;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 10px;
    border-radius: 50%;
    z-index: 3;
}
.select_box_radio:checked + .amz_selected_radio:before,
.select_box_radio:hover + .amz_selected_radio:before {
    background-color: #26D49B;
    background-image: url(arrow_checked.svg);
}
.amz_selected_radio:after {
    content: "";
    border: 1px solid #26D49B;
    border-radius: 5px;
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    display: none;
    z-index: 1;
}  
.select_box_radio:checked + .amz_selected_radio:after,
.select_box_radio:hover + .amz_selected_radio:after {
    display: block;
    background-color: #F5FBFF;
}
.select_box_radio:checked ~ p,
.select_box_radio:checked ~ p{
    color: #26D49B;
}
.amz_iconlist_modal label.layout_label {
    width: calc(25% - 13px);
    margin: 35px 5px 35px;
}
.amz_iconLabel_dv > i {
    position: relative;
    z-index: 2;
    font-size: 35px;
    cursor: pointer;
}
.select_box_radio:hover + .amz_selected_radio .amz_iconLabel_dv  i,
.amz_selected_radio:hover .amz_iconLabel_dv  i{
    color: #26D49B;
}
span.amz_iconLabel_dv p {
    font-size: 13px;
    line-height: 15px;
    bottom: -45px;
    min-height: 40px;
}
/** End FontAwesome Modal Css **/
/** Booking Page Css **/
.amz_checkInOut_details {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
}
.amz_dateDetaile {
    display: flex;
    position: relative;
    padding-left: 0px;
}
.amz_startDate {
    padding: 0 30px 0 0px;
}
.amz_dateDetaile svg {
    margin-right: 15px;
}
.amz_checkDate {
    color: var(--PrimaryColor);
    font-weight: 600;
}
.amz_checkTime {
    color: var(--AlternateTextColor);
    font-weight: 400;
    font-size: 12px;
}
.amz_checkInOut_details h5 {
    font-size: 20px;
    font-weight: bold;
}
.amz_checkInOut_details {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    margin: 20px 0 0;
    border-bottom: 1px solid #eee;
}
.amz_booking_dv {
    background-color: #eee;
    padding: 20px;
    border-radius: 10px;
}
h5.amz_pageTitle_dv {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}
.amz_hotelimg .img-fluid {
    width: 100%;
}
.amz_bookingName {
    padding: 20px 0;
}
.amz_bookingName h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.amz_bookingName p {
    font-size: 13px;
}
.amz_bookedHotel {
    padding: 10px;
    margin: 20px 0;
    border: 1px solid #eee;
    display: inline-block;
}
.amz_facility .layout_label {
    width: calc(150px);
    margin: 0 5px 50px !important;
}
.amz_hotelInfo {
    border: 1px solid #eee;
    padding: 10px;
    background-color: #f9f9f9;
}
.amz_hotelInfo h5 {
    margin: 0 0 10px;
    font-weight: bold;
    color: var(--PrimaryColor);
}
.amz_facility {
    margin-top: 20px;
}
span.amz_bookinamount {
    font-size: 21px;
    color: #000;
    font-weight: bold;
}
.amz_tableBooking {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #eee;
}
.amz_tableBooking h5 {
    padding: 0 0 15px;
    border-bottom: 1px solid #eee;
}
.amz_dateofbooking {
    padding: 10px 0;
}
.amz_selectTable {
    display: inline-flex;
    flex-direction: column;
    width: 120px;
    height: 120px;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 7px;
    margin: 10px 5px;
    font-size: 12px;
    position: relative;
}
.amz_tableAvailable {
    display: flex;
    flex-wrap: wrap;
}
.amz_tableIcon {
    position: relative;
    z-index: 3;
    text-align: center;
}
input.amz_date.amz_form_control {
    height: 40px;
    margin-bottom: 20px;
    padding: 0px 15px;
    width: 100%;
}
/********** Booking Component ***********/
.amz_bookingComponent_Dv {
    text-align: left !important;
    padding: 15px;
    /* background-color: var(--PrimaryColor); */
    position: relative;
    margin: 0;
    /* color: #fff; */
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.amz_bookingComponent_Dv .amz_imageTitle > p {
    padding: 10px 0 10px;
    /* text-align: left !important; */
    /* color: #fff; */
}
.amz_bookingComponent_Dv .amz_imageTitle{
    padding: 0px;
    /* text-align: left !important; */
}
.amz_bookingComponent_Dv .amz_textDescription {
    font-size: 12px;
    line-height: normal;
    margin-bottom: 10px;
    /* color: #fff; */
}
.amz_bookingTime {
    display: flex;
    font-size: 10px;
    width: 100%;
    justify-content: space-between;
}
.amz_payUnpay_booking {
    position: absolute;
    right: 0px;
    top: 5px;
    /* background-color: #fa395c;
    color: #ffffff; */
    padding: 0px 10px 0 20px;
    border-radius: 50px 0 0 50px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 22px;
}
.amz_bookingComponent_Dv .amz_btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 12px;
    /* background-color: #fff;
    color: var(--PrimaryColor); */
}
/* /* .amz_bookingComponent_Dv .amz_textDescription p {
    color: #fff;
} */
.amz_bookingComponent_Dv .amz_textDescription p {
    text-align: center;
} 
ul.amz_event_details {
    background-color: #ffffff;
    display: block;
    padding: 15px;
    list-style: none;
    border-radius: 10px;
    margin: 15px 0 0;
    width: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
ul.amz_event_details li b{
    display: block;
}
ul.amz_event_details li {
    margin-bottom: 10px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.amz_bookinEvent_holder {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
/** End Booking Page Css **/
textarea.amz_form_control {
    height: auto !important;
}
.amz_tableAvailable svg {
    width: 120px;
}
.amz_product .row {
    margin-right: -5px;
    margin-left: -5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}
.amz_addressSelect.amz_marginTop {
    margin-top: 30px;
}
.amz_addressModal .amz_checkbox span {
    left: 0px;
    top: 3px;
    border-radius: 50px;
}
/**************************/
span.amz_ticon {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
span.amz_ticon img {
    max-width: 100%;
    width: 50px;
}
span.amz_ticon.amz_success {
    background-color: #01ce01;
}
span.amz_ticon.amz_cancel {
    background-color: #e40000d8;
}
span.amz_ticon.amz_warning {
    background-color: #eb462a;
}
/**************Product Checkout Page Css ************/
.amz_cartList img.product_image {
    max-width: 90px;
    vertical-align: top;
}
.amz_cartList iframe.amz_procuct_img {
    max-width: 90px;
    height: auto;
    max-height: 90px;
}
.amz_checkbox.amz_bookingSlot {
    max-width: calc(100% - 30px);
    display: inline-block;
    margin: 0px 15px 10px 0;
}
#bookingPayment h5 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}   
.paymentBtn {
    display: flex;
    justify-content: space-between;
}
button.stripe-button-el span {
    height: 38px;
    line-height: 38px;
    background-color: var(--PrimaryColor) !important;
    background-image: none !important;
    font-size: 14px;
    color: #fff;
    font-weight: normal !important;
    text-shadow: none !important;
    box-shadow: none !important;
    padding: 0px 30px;
    outline: none !important;
    border: 0px !important;
}
button.stripe-button-el {
    border: 0px !important;
    background-image: none !important;
    box-shadow: none !important;
    margin-top: 5px;
    outline: none !important;
}
/******* Responsive Css *******/
@media(min-width:768px){
    .amz_previews_order {
        width: 250px;
        margin: 0 10px 20px;
        display: inline-block;
    }
    /** Grid Column **/
    .amz_col_1 .col {
        max-width: 25%;
        flex: 0 0 25%;
    }
    .amz_col_2 .col {
        max-width: 25%;
        flex: 0 0 25%;
    }
    .amz_col_3 .col {
        max-width: 25%;
        flex: 0 0 25%;
    }
    .amz_col_4 .col {
        max-width: 25%;
        flex: 0 0 25%;
    }
    .amz_col_4 .amz_grid_innerText, 
    .amz_col_3 .amz_grid_innerText {
        font-size: 16px;
        line-height: normal;
    }
    .amz_col_4 .amz_gridBox, 
    .amz_col_3 .amz_gridBox, 
    .amz_col_2 .amz_gridBox, 
    .amz_col_1 .amz_gridBox {
        min-height: 255px;
    }
    ul.amz_bigIcon li {
        max-width: max-content;
        padding: 0 10px;
    }
    .amz_fullwidth_product img.amz_procuct_img {
        height: 230px;
    }
}
@media(min-width:1200px){
    .amz_bookinEvent_holder .amz_event_details {
        max-width: calc(25% - 10px);
        margin: 15px 5px 5px;
        min-height: 90px;
    }
}
@media(max-width:1200px){
    .amz_listBox {
        width: calc(33.3% - 20px);
    }
    li.amz_listBox:nth-child(5n) {
        margin-right: 10px;
    }
    li.amz_listBox:first-child, li.amz_listBox:nth-child(6n) {
        margin-left: 10px;
    }
    .amz_bookinEvent_holder .amz_event_details {
        max-width: calc(50% - 10px);
        margin: 15px 5px 5px;
        min-height: 90px;
    }
}
@media(max-width:991px){
    .amz_personDetail {
        margin: 20px 0;
    }
    .amz_checkInOut_details,
    .amz_dateDetaile {
        flex-direction: column;
    }
    .amz_modify {
        margin-top: 20px;
    }
    .amz_dateDetaile svg {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .amz_startDate {
        padding: 0 0px 10px 0px;
    }
    
}
@media(max-width:768px) and (min-width:575px){
    .amz_col_3 .amz_gridBox {
        min-height: 250px;
    }
    .amz_col_4 .amz_gridBox {
        min-height: 200px;
    }
    .amz_col_2 .amz_gridBox {
        min-height: 300px;
    }
    .amz_col_1 .amz_gridBox {
        min-height: 350px;
    }
}
@media(max-width:768px){
    .amz_listBox {
        width: calc(50% - 20px);
    }
    .amz_innerSocial_box ul.list-group li.list-group-item,
    .amz_innerSocial_box ul.list-group li.list-groupTotal-item {
        width: 100%;
        display: block !important;
    }
    .amz_addLink {
        width: 100%;
        margin: 10px 0;
    }
    .amz_facility .layout_label {
        width: calc(120px);
        margin: 0px 5px 50px !important;
    }
    .amz_tabContentProfile ul li a {
        padding: 10px 10px;
        margin-right: 0px;
        font-size: 12px;
    }
    
    .amz_bookinEvent_holder .amz_event_details {
        max-width: calc(100% - 10px);
    }
}
@media(max-width:450px){
    .amz_listBox {
        width: calc(100% - 20px);
    }
    .amz_cart_table table tr td img {
        width: 50px;
        height: 50px;
    }
}
.amz_mainComponent_holder {
    margin-bottom: 65px;
    /* background-color: #fff; */
}
/* NotiFication Css Start */
.amz_notification_wrapper {
    position: fixed;
    bottom: 80px;
    right: 10px;
    max-width: 266px;
    width: 100%;
    z-index: 9999999;
    top: auto;
}
.amz_comman_noti {
    background-color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 7px solid;
    border-radius: 7px 0px 0px 7px;
    box-shadow: 15px 0 30px rgba(99 129 155 / 10%);
}
.amz_notification_wrapper .amz_inner {
    text-align: left;
    width: 100%;
    display: flex;
    flex-flow: row;
    padding: 0;
}
.amz_notification_wrapper .amz_inner img{
    max-width: 45px;
    margin-right: 5px;
    height: 45px;
}
.amz_notification_wrapper .amz_inner img,
.noti_content {
    /* height: 50px; */
    display: inline-block;
    vertical-align: middle;
}
.noti_content h3 {
    font-size: 14px;
    margin: 0;
    color: #3f3f59;
}
.noti_content {
    padding-left: 0px;
    width: calc(100% - 50px);
}
.noti_content p {
    font-size: 14px;
    color: #a1a3ce;
}
.amz_notication_success {
    border-color: #00E0A4;
}
.amz_notication_error {
    border-color: #F83A5C;
}
/* NotiFication Css End */
/******* Loading Css ************/
.amz_loading {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: #eeeeee;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
    background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background: linear-gradient(to right, #eeeeee 8%,#dddddd 18%,#eeeeee 33%);
    -webkit-background-size: 800px 104px;
    background-size: 800px 104px;
    height: 96px;
    position: relative;
    width: 100%;
}
@-webkit-keyframes placeHolderShimmer{
        0%{
            background-position:-468px 0
        }
        100%{
            background-position:468px 0
        }
    }
    @keyframes placeHolderShimmer{
        0%{
            background-position:-468px 0
        }
        100%{
            background-position:468px 0
        }
    }
/******* End Loading Css ************/
div#amz_viewOrderDetails iframe {
    width: 100%;
    border: 0px;
    height: 400px;
}
div#amz_viewOrderDetails .modal-title {
    font-weight: bold;
}
.amz_invoice img {
    max-height: 40px;
    width: auto;
}
/******************************************/
.amz_manageOrder {
    padding-top: 100px;
}
table.amz_table {
    border: 0px !important;
}
.table thead th {
    border-bottom: 0px;
    background: #fff;
    border-top: 0;
}
.table thead tr:first-child th:first-child {
    border-radius: 10px 0 0 0;
}
.table thead tr:first-child th:last-child {
    border-radius: 0px 10px 0 0;
}
.table td, .table th {
    padding: 20px;
    vertical-align: top;
    background-color: #fff;
}
.table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}
.table tbody tr:last-child td:last-child {
    border-radius: 0px 0 10px 0;
}
.ap_actions {
    display: flex;
}
.ap_actions .ap_icon {
    padding: 0px 20px;
    color: #fff !important;
    background-color: var(--PrimaryColor);
    margin: 0px 10px 0px 0px;
    border-radius: 5px;
    line-height: 35px;
    font-size: 13px;
}
.ap_actions .ap_icon:hover{
    background-color:var(--PrimaryColor)
}
.modal-body.amz_modal_body {
    max-height: 450px;
    overflow: auto;
}
.modal-body.amz_modal_body iframe {
    max-height: max-content;
}
.amz_backBtn{
    color:var(--PrimaryColor) !important;
    display:flex;   
    align-items:center;
    justify-content:flex-end;
    line-height: 45px;
    font-size: 12px;
}
/********************* Full WIdth Product Popup **********************/
div#amz_productModal_bottom {
    padding-bottom: 0;
    padding: 0 !important;
}
div#amz_productModal_bottom .amz_modal_dialog {
    max-width: 100%;
    padding: 0;
    max-height: 100vh;
}
div#amz_productModal_bottom .amz_modal_dialog_centered.amz_modal_dialog_scrollable .amz_modal_content {
    border: 0;
    height: 100vh;
    border-radius: 0px;
}
div#amz_productModal_bottom .amz_modal_dialog_bottom button.close {
    left: 0;
    border-radius: 0px;
    background-color: transparent;
    color: #333;
    position: relative;
    width: 25px;
    height: 50px;
}
div#amz_productModal_bottom .amz_modal_dialog_bottom button.close span {
    line-height: 0;
    display: inline-block;
    position: relative;
    top: 0px;
    color: #222;
    text-shadow: none;
    opacity: 1;
    height: 50px;
    display: flex;
}
div#amz_productModal_bottom .amz_modal_dialog_scrollable .amz_modal_body {
    overflow-y: auto;
    max-height: 100vh;
    /* padding: 0px 15px; */
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    border-radius: 10px;
}
div#amz_productModal_bottom .amz_productDetail_dv h2 {
    font-size: 16px;
    text-transform: capitalize;
}
.amz_productVarient_View {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
/*.amz_varientItem {*/
/*    padding: 0;*/
/*    min-width: 40px;*/
/*    min-height: 40px;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    display: block;*/
/*    height: 40px;*/
/*    max-width: calc(100% - 0px);*/
/*    text-overflow: ellipsis;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    margin-right: 10px;*/
/*    margin-bottom: 10px;*/
/*    position: relative;*/
/*}*/
.amz_varientItem {
    padding: 0;
    /* min-width: 40px; */
    /* min-height: 40px; */
    align-items: center;
    justify-content: center;
    display: block;
    /* height: 40px; */
    width:calc(50% - 10px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}
.amz_productVarient_View h5 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-top: 10px;
}
/*.amz_varientItem span {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*    text-overflow: ellipsis;*/
/*    overflow: hidden;*/
/*    white-space: nowrap;*/
/*    padding: 0px 20px;*/
/*    height: 30px;*/
/*    border-radius: 50px;*/
/*    border: 1px solid #edeefb;*/
/*    line-height: 27px;*/
/*}*/
input.amz_radioInput_p {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9;
}
.amz_varientItem .amz_radioInput_p:checked ~ .amz_variantDetail span {
    background-color: #26d49b;
    color: #fff;
    border: 1px solid rgb(38 212 155);
}
.amz_productVarient {
    margin-top: 10px;
}
.amz_productDetail_dv {
    height: calc(100vh - 120px);
    overflow: auto;
}
.amz_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 7px;
}
.amz_productDetail_dv .carousel-item iframe {
    max-width: 100%;
    width: 100%;
}
.amz_productDetail_dv .carousel-indicators {
    bottom: 15px;
}
.item_image {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

/********************* Full WIdth Product Popup **********************/
.datepicker.-bottom-left-.-from-bottom-.active {
    z-index: 9999;
}
.input_bookingDuration a {
    background-color: var(--PrimaryColor);
    display: flex;
    align-items: center;
    padding: 0px 20px;
    border-radius: 0px 4px 4px 0px;
    height: 40px;
}
.select2-container .select2-selection--single {
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
}
.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}
.btn-outline-secondary {
    border-color: #dadada;
}
div#amz_frontBooking button.amz_btn {
    padding: 10px 30px;
}
.amz_checkbox.amz_bookingSlot label.amz_label {
    padding: 0;
    margin-bottom: 0;
}
.amz_checkbox.amz_bookingSlot.amz_disableBook label.amz_label {
    color: #afafaf;
}
.amz_checkbox.amz_bookingSlot.amz_selectBook label.amz_label {
    color: #239813;
}
.amz_selectBook.amz_checkbox input:checked ~ span {
    border-color: #239813;
    background-color: #239813;
}
.amz_disableBook.amz_checkbox input:checked ~ span {
    border: 1px solid #E5E7F7;
    background-color: #f8fbfc;
}
.amz_disableBook.amz_checkbox span:after {
    border: 2px solid #f8fbfc;
}
.amz_checkbox.amz_bookingSlot .amz_form_control {
    height: 100%;
    width: 100%;
    line-height: normal;
    top: 0;
}
div#bookingSlot {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-flow: wrap;
}
.amz_checkbox.amz_bookingSlot {
    max-width: calc(100% - 15px);
    display: inline-flex;
    margin: 0px 15px 10px 0;
}
.amz_checkbox.amz_bookingSlot.amz_disableBook span {
    /* display: none; */
}
/************ Ratting Varient Design Css ************/
.amz_blockRating .amz_histo_rate {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.amz_blockRating span.amz_totalRating {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    margin-left: 0;
    width: 55px;
    border-top: 1px solid #f1f1f1;
}
.amz_blockRating .icon-star {
    font-size: 24px;
}
.amz_blockRating span.amz_histo_star {
    font-size: 24px;
    margin-bottom: 10px;
}
.amz_blockRating span.amz_bar_block {
    display: none;
}
.amz_blockRating .amz_histo {
    display: flex;
}
/************ Ratting Varient Design Css ************/
.amz_blockRating .amz_histo_rate {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.amz_blockRating span.amz_totalRating {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    margin-left: 0;
    width: 55px;
    border-top: 1px solid #f1f1f1;
}
.amz_blockRating .icon-star {
    font-size: 24px;
}
.amz_blockRating span.amz_histo_star {
    font-size: 24px;
    margin-bottom: 10px;
}
.amz_blockRating span.amz_bar_block {
    display: none;
}
.amz_blockRating .amz_histo {
    display: flex;
}
/* Inline Rating */
.amz_inlineRating .amz_rating {
    width: 75px;
    border-right: 1px solid #e9e9e9;
    border-bottom: 0px;
    display: inline-block;
    float: left;
}
.amz_inlineRating .amz_histo {
    width: calc(100% - 75px);
    padding-left: 10px;
}
.amz_inlineRating 
 span.amz_rating_num {
    font-size: 50px;
    line-height: 50px;
    vertical-align: middle;
}
.amz_inlineRating .icon-star {
    font-size: 12px;
    vertical-align: top;
}
.amz_inner.amz_inlineRating {
    display: block;
}
.amz_inlineRating svg {
    width: 10px;
    fill: #d69904;
}
.amz_inlineRating 
 .amz_rating_stars {
    margin: 0;
}
.amz_inlineRating 
 span.amz_histo_star {
    min-width: 24px;
    line-height: 12px;
    vertical-align: top;
}
.amz_inlineRating span.amz_bar {
    padding: 0px 5px;
    display: initial;
    min-width: 20px;
    vertical-align: top;
}
.amz_inlineRating span.amz_totalRating {
    width: 55px;
    margin-left: 5px;
    font-size: 12px;
    text-align: left;
    line-height: normal;
    vertical-align: top;
}
/************ End Ratting Varient Design Css ************/
/************* CounDown Timer Component Varient Design ***************/
.amz_bgbox_timmer .amz_gradient_contdown {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: var(--PrimaryColor);
} 
.amz_bgbox_timmer .amz_countdown_title, 
.amz_bgbox_timmer .amz_countdown_title p {
    color: #fff;
}
/* Timer Bg */
.amz_bgbox_timmer ul.amz_countdown_timer li {
    background-color: #000;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    margin:0px 2px;
    border-radius:10px;
    font-size:18px;
}
.amz_bgbox_timmer ul.amz_countdown_timer {
    display: flex;
}
/** Only Coundown Bg **/
.amz_coundownBg_timmer ul.amz_countdown_timer li {
    background-color: #000;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    margin:0px 2px;
    border-radius:10px;
    font-size:18px;
}
.amz_coundownBg_timmer ul.amz_countdown_timer {
    display: flex;
}
/****/
.amz_withColon_contdown .amz_countdown_timer li  {
    position:relative;
}
.amz_withColon_contdown .amz_countdown_timer li:after{
    content:":";
    position:absolute;  right:-5px;
    top:10px;
}
.amz_withColon_contdown .amz_countdown_timer li:last-child:after{
    display:none;
}
/***********/
.amz_withDash_contdown .amz_countdown_timer li  {
    position:relative;
}
.amz_withDash_contdown .amz_countdown_timer li:after{
    content:"-";
    position:absolute;  right:-7px;
    top:10px;
}
.amz_withDash_contdown .amz_countdown_timer li:last-child:after{
    display:none;
}
/***********/
.amz_withSlash_contdown .amz_countdown_timer li  {
    position:relative;
}
.amz_withSlash_contdown .amz_countdown_timer li:after{
    content:"/";
    position:absolute;  right:-5px;
    top:10px;
}
.amz_withSlash_contdown .amz_countdown_timer li:last-child:after{
    display:none;
}
/****/
.amz_textInline_contdown .amz_countdown_timer li{
    display:flex;
    align-items:center;
    justify-content:center;
}
.amz_textInline_contdown .amz_countdown_timer li span {
    margin-left:10px;
}
/*******/
.amz_spacebetween_contdown .amz_countdown_timer li{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width: 480px;
    position:relative;
}
.amz_spacebetween_contdown .amz_countdown_timer li span {
    margin-left:10px
}
.amz_spacebetween_contdown .amz_countdown_timer li:after{
    content:":";
    position:absolute;  
    right:0;
    left: 0;
    top:10px;
}
/* .amz_spacebetween_contdown .amz_countdown_timer li:last-child:after{
    display:none;
} */
.amz_spacebetween_Centercontdown .amz_countdown_timer li {
    max-width: 130px;
    margin: auto;
}
.amz_bordered_contdown .amz_countdown_timer li span {
    border-top: 5px solid var(--PrimaryColor);
    margin-top: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
/************ Shadow Box ************/
.amz_shadowBox_contdown .amz_countdown_title,
.amz_shadowBox_contdown .amz_countdown_timer  {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.amz_shadowBox_contdown .amz_countdown_timer li {
    display: flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    max-width:65px;
    width: 100%;
    height:65px;
    box-shadow:0px 0px 10px rgba(0 0 0 / 10%);
    border-radius:10px;
    margin:10px auto;
}
.amz_shadowBox_contdown .amz_countdown_timer li span{
    margin: 0px;
}
/************* End CounDown Timer Component Varient Design ***************/
.amz_searchbar {
    display: flex;
    max-width: 500px;
    margin: 0px auto 30px;
    align-items: center;
    position: relative;
}
.amz_searchbar span.amz_searchBtn {
    position: absolute;
    left: 10px;
    top: 10px;
}
.amz_searchbar .amz_form_control {
    padding-left: 40px;
}
.amz_searchbar span.amz_searchBtn svg {
    fill: #a1a3ce;
}
.amz_cartList.amz_not_found {
    border: 0;
    box-shadow: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 7px;
}
.amz_cartList.amz_not_found .amz_cartHeading {
    text-align: center;
    width: 100%;
    font-size: 16px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/********* Not Found Css ***********/
.amz_notiContent.amz_not_found {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    max-width: 100%;
}
.amz_textContent_noti > p {
    padding: 15px;
}
.amz_cartList.amz_not_found {
    border: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 7px;
    border: 1px solid #efefef;
    background-color: #ffffff;
}
.amz_cartList.amz_not_found .amz_cartHeading {
    text-align: center;
    width: 100%;
    font-size: 16px;
}
/* Loader */
.product_loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255 255 255 / 80%);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    vertical-align: middle;
    display: flex;
    align-items: flex-end;
}
.pos_relative {
    position: relative;
    min-height: 500px;
}
.vertical_center {
    display: table;
    height: 100vh;
    width: 100%;
    text-align: center;
}
.center_dv{
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.vertical_center span {
    width: 70px;
    height: 70px;
    position: relative;
    display: inline-block;
    border-radius: 50px;
    position: absolute;
    -webkit-animation: loadingCircles 1.5s infinite;
    -moz-animation: loadingCircles 1.5s infinite;
    animation: loadingCircles 1.5s infinite;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.vertical_center :nth-child(2){
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.vertical_center :nth-child(3){
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}
.product_loader.show_loader {
    opacity: 1;
    visibility: visible;
}
.product_loder span {
    box-shadow: 0px 0px 0px 0px var(--PrimaryColor);
}
@-webkit-keyframes loadingCircles{
    0%{-webkit-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--PrimaryColor);}
    100%{-webkit-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--PrimaryColor);}
}
@-moz-keyframes loadingCircles{
    0%{-moz-transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--PrimaryColor);}
    100%{-moz-transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--PrimaryColor);}
}
@keyframes loadingCircles{
    0%{transform: scale(0); opacity: 1; box-shadow: 0px 0px 0px 10px var(--PrimaryColor);}
    100%{transform: scale(1); opacity: 0; box-shadow: 0px 0px 0px 2px var(--PrimaryColor);}
}
/************ End Loader Css ************/
.amz_fixbottombar {
    display: flex;
    width: 100%;
    position: sticky;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background-color: var(--PrimaryColor);
    color: #fff;
    bottom: 65px;
    z-index: 9999;
    min-height: 70px;
}
.amz_bottomContent {
    width: 100%;
}
.amz_bottombtn_holder {
    width: 100%;
    text-align: right;
}
.amz_bottombtn_holder .amz_btn {
    margin: 0;
    font-size: 14px;
    border: 0;
    margin-left: 10px;
}
.amz_bottomContent h5 {
    font-size: 24px;
    font-weight: bold;
}
.amz_bottombtn_holder .amz_btn.amz_installBtn {
    background-color: #f90;
    max-width: max-content;
    float: right;
    box-shadow:0 0 10px rgba(0 0 0 / 30%) !important;
}
.amz_bottombtn_holder .amz_btn.amz_removeBtn {
    position: absolute;
    padding: 0;
    right: 5px;
    top: 5px;
    bottom: auto;
    left: auto;
}
.amz_bottombtn_holder .amz_btn.amz_removeBtn svg {
    fill: #fff;
    width: 13px;
    /* position: absolute;
    right: 0;
    top: -18px; */
}
.amz_loginpage_dv {
    padding: 70px 15px;
    height: calc(100vh - 65px);
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.amz_loginpage_dv .amz_contactForm {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
.amz_loginLogo {
    margin: 20px 0px 20px;
    width: 100%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background-color: transparent;
    overflow: hidden;
}
.amz_loginText h4 {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: var(--PrimaryColor);
}
.amz_loginText {
    margin-bottom: 30px;
    text-align: center;
}
.amz_loginLogo img.img-fluid, .amz_userName img {
    max-width: 250px;
    max-height: 70px;
}
/* .amz_fixbottombar.amz_installFixbar {
    padding-top: 50px;
    border-radius: 400px 400px 0 0;
    padding-bottom: 30px;
} */
/****** Notification Page Css **********/
.amz_notification_mainDv {
    padding: 55px 15px;
    /* background-color: #fff; */
    height: 100vh;
    overflow: auto;
}
div#getMyAppNotification {
    display: flex;
    flex-wrap: wrap;
}
.amz_notiContent {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #efefef;
    background-color: #ffffff;
    border-radius: 5px;
    max-width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
    vertical-align: top;
}
.amz_textContent_noti {
    max-width: calc(100% - 100px);
    width: 100%;
}
.amz_notiLonk {
    color: #222 !important;
    font-size: 14px;
}
.amz_notiLonk h6{
    color: var(--PrimaryColor);
    font-size: 14px;
    font-weight: 600;
}
.amz_notiLonk p {
    color: #222;
    font-size: 12px;
    margin: 5px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.amz_notiLonk span {
    color: #6f6f6f;
    font-size: 10px;
    display: block;
}
.amz_imgNotification_dv {
    width: 80px;
    height: 80px;
    margin-left: 15px;
}
.amz_imgNotification_dv {
    width: 70px;
    height: 70px;
    margin-left: 15px;
    border-radius: 7px;
    background-color: #e9e9e9;
    background-size: cover;
    background-position: center;
}
/*** Loade More ****/
.ap_loadmore_holder {
    text-align: center;
    position: relative;
    padding: 20px 0;
    width: 100%;
}
.ap_loadmore_holder:before, 
.ap_loadmore_holder:after {
    content: "";
    text-align: center;
    position: absolute;
    left: 0;
    height: 1px;
    width: 50%;
    right: 0;
    margin: auto;
    background-color: #E4E5F2;
    top: 50%;
    z-index: 1;
    border-radius: 50%;
}
.ap_loadmore_btn {
    display: inline-block;
    padding: 5px 30px;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #E4E5F2;
    color: var(--grayColor1);
    z-index: 3;
    position: relative;
    line-height: normal;
    font-size: 12px;
}
.ap_loadmore_btn:hover {
    color: #fff;
    background-color: var(--PrimaryColor);
}
.ap_loadmore_holder:before, 
.ap_loadmore_holder:after {
    width: 100%;
    border-radius: 100%;
}
.ap_loadmore_btn {
    width: auto;
    padding: 0 20px;
    line-height: 38px;
    height: 40px;
    font-size: 12px;
    font-weight: 400;
    outline: none !important;
}
/********************************/
.amz_cartAmount {
    text-align: center;
}
.amz_header_holder.amz_hide_main_menu .amz_rightmenu {
    max-width: 50px;
}
li.list-group-item.amz_coupon strong {
    color: #ff5373;
}
.list-group {
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
}
/**************** Listing Component CSS ***************/
.amz_listing_wrapper {
    width: 100%;
}
.amz_listingHolder {
    display: block;
    font-size: 12px;
    line-height: normal;
}
.amz_listingTitle {
    font-size: 16px;
    font-weight: bold;
    color: var(--PrimaryColor);
}
.amz_listingComponent {
    padding: 20px 0;
}
.amz_listingIcon i {
    /* font-size: 20px; */
    color: var(--PrimaryColor);
}
.amz_listingHolder {
    display: block;
    font-size: 12px;
    line-height: normal;
    padding: 20px;
    box-shadow: 0 0 1px rgb(0 0 0 / 20%) !important;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
    height: 100%;
}
.amz_listingIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #e3edf6;
    padding: 5px;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.amz_listingDescription {
    margin-top: 5px;
    color: var(--TextColor);
}
.amz_mainListingTitle {
    padding-top: 15px;
    color: var(--PrimaryColor);
}
/******** Inline Listing ***********/
.amz_inlineListing .amz_listingIcon {
    margin-right: 14px;
    margin-bottom: 0px;
}
.amz_inlineListing .amz_listingHolder {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    padding: 10px;
}
.amz_inlineListing {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
/** Inline RightImage Listing **/
.amz_inlineListing.amz_ImageRight .amz_listingIcon {
    order: 2;
    margin-left: 14px;
    margin-right: 0;
}
/*******************************/
/** Circle Icon **/
.amz_circleIcon .amz_listingIcon {
    border-radius: 50px;
}
.amz_squareIcon .amz_listingIcon {
    border-radius: 0px;
}
/*** Big Icon ***/
.amz_listingComponent.amz_TwoIconListing {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 20px 0px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: unset;
}
.amz_TwoIconListing .amz_listingIcon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    margin: 0 auto 10px;
}
.amz_TwoIconListing .amz_listingHolder {
    display: flex;
    vertical-align: top;
    width: 100%;
    flex-direction: column;
    line-height: normal;
    padding: 10px 5px;
    height: 100%;
}
.amz_TwoIconListing .amz_listingTitle {
    font-weight: bold;
    color: var(--PrimaryColor);
    line-height: normal;
    font-size: inherit;
}
.amz_TwoIconListing .amz_listing_wrapper {
    max-width: 100%;
    padding: 0 5px;
    width: 100%;
    /* height: 100%; */
    flex-wrap: wrap;
    display: flex;
}
.amz_listingComponent {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;    
    width: 100%;
}
.amz_listingContent {
    width: 100%;
}
.amz_listing_wrapper {
    width: 100%;
}
.amz_listingComponent {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
     justify-content: center;
    /* grid-gap: 20px 5px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: unset; */
}
/**************** End Listing Component CSS ***************/
div#bookingPayment .amz_checkRadio {
    max-width: 100%;
}
.datepickers-container {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999999;
}
div#confirmMe .amz_close.close {
    right: 20px;
    position: absolute;
    cursor: pointer;
    z-index: 99;
}
div#confirmMe .amz_modal_header {
    border-bottom: 0px;
}
div#confirmMe  button.amz_btn.ap_green_btn {
    background-color: #03b74b;
    border: 1px solid #03b74b;
    color: #fff !important;
}
div#confirmMe .amz_close.close img {
    filter: brightness(0.5);
}
span.select2-container.select2-container--default.select2-container--open {
    z-index: 1000000;
}
/*************** Tooltip *****************/
/* Tooltip Css*/
.amz_bottombtn_holder .amz_btn.amz_installBtn {
    position: relative;
}
.amz_tooltip_show {
    position: absolute;
    top: auto;
    background-color: #11122E;
    line-height: normal;
    color: #fff;
    padding: 3px 15px;
    border-radius: 4px;
    text-align: center;
    transform: translate(0px, 10px);
    transition: all linear 0.1s;
    opacity: 0px;
    visibility: hidden;
    left: auto;
    right: 0;
    white-space: normal;
    bottom: calc(100% + 10px);
    width: 250px;
}
.amz_tooltip_show p {
    white-space: normal;
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    text-transform: none;
}
.amz_tooltip_show svg {
    width: 16px;
    height: 15px;
    fill: #fff;
}
.amz_installBtn:hover .amz_tooltip_show {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    transition: all linear 0.1s;
}
.amz_tooltip_show::before {
    content: "";
    position: absolute;
    bottom: -7px;
    width: 7px;
    height: 7px;
    border-top: 5px solid #000;
    left: auto;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transition: all linear 0.1s;
    opacity: 0;
    visibility: hidden;
    right: 7px;
}
.amz_installBtn:hover .amz_tooltip_show:before{
    opacity: 1;
    visibility: visible;
    transition: all linear 0.1s;
}
.amz_itemImage .product_image.amz_image_holder {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    border-radius: 7px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.amz_without_footer_menu .amz_cart_dv {
    height: calc(100vh - 163px);
}
.amz_without_footer_menu .amz_cart_dv.amz_ty_dv {
    height: calc(100vh - 48px);
}
/**********************Last Pop Up Css*****************************/
#amz_productModal_Restricted .amz_modal_body {
    padding: 50px;
    position: relative;
    text-align: center;
}
#amz_productModal_Restricted button.close {
    position: absolute;
    right: 20px;
    top: 15px;
}
#amz_productModal_Restricted .amz_modal_body h4 {
    font-weight: bold;
    color: var(--PrimaryColor);
    margin-bottom: 10px;
    margin-bottom: 10px;
}
#amz_productModal_Restricted .amz_modal_body p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.amz_productBox {
    padding: 20px;
    margin: 15px 0;
    background-color: #FAFAFF;
    border: 1px solid #EFF0FC;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}
#amz_productModal_Restricted button.close svg {
    fill: #abacc7;
}
.amz_imgBox_left {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);    
    position: relative;
}
.amz_imgBox_left .amz_image_holder {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.amz_contentBox_right {
    width: calc(100% - 100px);
    padding-left: 20px;
}
div#amz_productModal_Restricted .amz_modal_content {
    border-radius: 10px;
    max-width: 500px;
}
.amz_contentBox_right h5 {
    font-size: 18px;
    line-height: 30px;
}
.amz_modalbtn {
    text-align: center;
    width: 100%;
}
.amz_modal_body .amz_modalbtn .amz_btn.amz_greenBtn {
    background-color: #26D49B;
}
.amz_modal_body .amz_modalbtn .amz_btn {
    background-color: #333340;
    padding: 13px 30px;
    margin: 10px;
    min-width: 110px;
    border-radius: 7px;
}
.amz_thankyou_page .openMyModal {
    color: var(--PrimaryColor);
}
.ap_link {
    color: var(--PrimaryColor);
}
div#amz_productModal_Restricted {
    background-color: transparent;
}
.amz_blurOverlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    filter: blur(10px);
    background-color: rgba(0 0 0 / 60%);
    z-index: 999;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
div#amz_productModal_Restricted .amz_modal_dialog {
    z-index: 1000;
    max-width: 100%;
    background-color: rgba(0 0 0 / 60%);
    max-height: 100vh;
    height: 100vh;
    margin: 0;
}
.amz_resendLink {
    color: var(--PrimaryColor) !important;
    display: block;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

/************ Loyalty Css ****************/
.loyaltyListing{
    display: block;
    width: 100%;
    max-width:768px;
    margin: 0 auto 10px;
}
.innerCol-2,.innerCol-3,.innerCol-4,.innerCol-5 {
    flex-wrap: wrap;
    justify-content: center;
    max-width:768px;
    margin: 0 auto 10px;
}
.innerCol-2>li>span {
    font-size: 65px;
    line-height: 100px;
    display: inline-block;
}
.innerCol-3>li>span {
    font-size: 50px;
    line-height: 64px;
    display: inline-block;
}
.innerCol-4>li>span {
    font-size: 30px;
    line-height: 38px;
    display: inline-block;
}
.innerCol-5>li>span {
    font-size: 18px;
    line-height: 24px;
    display: inline-block;
}
.listIcon_component >span.amz_loyalty_disabled {
    /*background-color: rgb(249 0 0 / 36%);*/
    opacity: 1;
    border: 5px solid rgb(249 0 0 / 80%) !important;
    position: relative;
    border-radius:50%;
}
.listIcon_component >span.amz_loyalty_disabled:after {
    content: '';
    position: absolute;
    left: -125%;
    right: 0;
    width: calc(100% + 150%);
    height: 5px;
    background-color: rgb(249 0 0);
    transform: rotate(45deg);
}
.listIcon_component {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:0 10px;
}
.listIcon_component> span{
    border: 1px solid;
    border-radius: 50%;
    margin-bottom:10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255);
    overflow:hidden;
}
.listIcon_component >span >span {
    width: 100%;
    height: 100%;
    border: 0;
    background-size: cover;
    position: relative;
    top: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}
.innerCol-2 .listIcon_component {
    width: 50%;
}
.innerCol-2 .listIcon_component >span{
    width:120px;
    height:120px;
}
.innerCol-3 .listIcon_component {
    width: 33.3%;
}
.innerCol-3 .listIcon_component >span{
    width:80px;
    height:80px;
}

.innerCol-4 .listIcon_component {
    width: 25%;
}
.innerCol-4 .listIcon_component> span{
    width:50px;
    height:50px;
}
.innerCol-5 .listIcon_component {
    width: 20%;
}
.innerCol-5 .listIcon_component> span{
    width:30px;
    height:30px;
}
/****************************************/
.amz_redeemPoints {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    justify-content: end;
}
.amz_loyalthPoints .amz_form_control {
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
}
.amz_loyalthPoints button.amz_btn {
    width:100%;
}
.amz_loyalthPoints {
    padding: 20px;
    border-radius: 10px;
    background-color: rgb(255 255 255);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    max-width: 250px;
    width: 100%;
}
.amz_loyalthPoints p {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}
.amz_loyalthPoints label.amz_label {
    color: var(--TextColor);
    font-size: 14px;
    font-weight: normal;
}
.amz_loyalthPoints .amz_checkbox span{
    top:3px;
}
.amz_centerImage > .loyaltySuccess {
    background-color: rgb(70 197 23);
    padding: 20px;
    width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.amz_centerImage > .loyaltyError {
    background-color: #f90000;
    padding: 15px;
    width: 65px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.loyaltyModalHeading{
    color:#000;
    font-size:20px;
    font-weight:700;
    margin-bottom: 10px;
}
.showLoyaltyMsg{
    margin-bottom: 20px;
    font-size:15px;
}
/******************************/
/*.amz_varientItem span b {*/
/*    width: max-content;*/
/*    display: inline-block;*/
/*    text-align: right;*/
/*    margin-left: 30px;*/
/*    background-color: var(--PrimaryColor);*/
/*    color: #fff;*/
/*    padding: 1px 9px;*/
/*    position: relative;*/
/*    right: -21px;*/
/*    font-size: 14px;*/
/*    line-height: 26px;*/
/*    font-weight: normal;*/
/*}*/
.amz_varientItem span b {
    width: max-content;
    display: inherit;
    text-align: right;
    margin: 0;
    /* background-color: var(--PrimaryColor); */
    /* color: rgb(255 255 255); */
    padding: 0;
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    right: 10px;
}
.amz_varientItem span {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 5px 50px 5px 40px;
    border-radius: 5px;
    border: 1px solid rgb(147 149 189);
    font-size: 16px;
    text-transform: capitalize;
}
 .amz_varientItem span:before {
    content: "";
    width: 13px;
    height: 13px;
    border: 1px solid #9395bd;
    position: absolute;
    left: 15px;
    top: 12px;
    border-radius: 20px;
}
.amz_varientItem span:after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    background-color: #9395bd;
    left: 18px;
    top: 15px;
    border-radius: 20px;
}
.amz_varientItem .amz_radioInput_p:checked ~ .amz_variantDetail span:before{
    border: 1px solid #fff;
}
.amz_varientItem .amz_radioInput_p:checked ~ .amz_variantDetail span:after{
    background-color: #fff;
} 
.carousel-indicators li {
    background-color: rgb(104 104 104);
}
#eventPayment .amz_checkRadio label img {
    max-width: 90px;
    max-height: 35px;
    position: relative;
    top: 8px;
}
#eventPayment .amz_checkRadio label .amz_paymentName {
    width: 100%;
    font-weight: bold;
    color: var(--PrimaryColor);
    position: absolute;
    top: 4px;
    font-size: 13px;
}
#eventPayment .amz_checkRadio label  .check {
    top: 40px;
    left: 15px;
}
div#cookieNotice {
    position: fixed;
    width: 300px;
    background-color: rgb(255 255 255);
    z-index: 9999;
    bottom: 150px;
    right: 20px;
    border: 1px solid rgb(225 225 225);
    border-radius: 10px;
    padding: 20px;
    font-size: 12px;
    box-shadow: 0 0 20px rgb(0 0 0 / 15%);
}
div#cookieNotice .title-wrap h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
div#cookieNotice .msg-wrap p {
    font-size: 11px;
    margin-bottom: 10px;
}
div#cookieNotice .btn-wrap button {
    background-color: var(--PrimaryColor);
    border-color: rgb(0 0 0 / 0%);
    border-radius: 3px;
    line-height: 18px;
}
div#cookieNotice a {
    color: var(--PrimaryColor);
}
/***************** Responsive Css ***************/
@media(min-width:575px){
    .amz_productDetail_dv {
        height: calc(100% - 60px);
    }
    div#amz_productModal_bottom .amz_modal_dialog_scrollable .amz_modal_body {
        max-width: 480px;
        margin: auto;
        width: 100%;
    }
    div#amz_productModal_bottom .amz_modal_dialog_centered.amz_modal_dialog_scrollable .amz_modal_content {
        height: 100vh;
        border-radius: 0px;
    }
    div#amz_productModal_bottom .amz_modal_dialog {
        max-width: 100%;
        height: calc(100vh);
        margin: 0px auto;
        border: 0;
    }
    .amz_productDetail_dv .carousel-item iframe {
        max-width: 100%;
        width: 100%;
        height: 250px;
    }
    .item_image {
        height: 250px;
        width: 100%;
    }
    .amz_address {
        max-width: 380px;
        display: inline-block;
        margin-right: 15px;
    }
    .amz_previews_order {
        width: calc(50% - 20px);
        display: inline-block;
        margin: 0 10px 20px;
    }
}
@media(min-width:768px){
    .amz_TwoIconListing .amz_listing_wrapper {
        max-width:100%;
        width: 100%;
    }
    .amz_inlineListing .amz_listing_wrapper {
        max-width: 50%;
        padding: 0 5px;
        width: 100%;
    }
    .amz_listing_wrapper {
        max-width: 50%;
        padding: 0px 5px;
        width: 100%;
    }
    .amz_col_1 .col, .amz_col_2 .col, 
    .amz_col_3 .col, .amz_col_4 .col {
        max-width: 25%;
        flex: 0 0 25%;
        /* margin: auto; */
    }
    .amz_fullwidth_product.carousel-inner {
        text-align: center;
        align-items: center;
        display: flex;
    }
    .amz_fullwidth_product .amz_productList {
        max-width: calc(100% - 20px);
        margin: 0 10px 20px;
    }
    .amz_fullwidth_product .amz_productImage {
        max-height: 230px;
        text-align: center;
    }
    .amz_fullwidth_product .amz_productHeading {
        height: 55px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .amz_productDescription p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .amz_productImage iframe.amz_procuct_img {
        width: 100%;
    }
    .amz_checkRadio {
        max-width: calc(33.3% - 0px);
        padding: 15px 15px 0 0;
    }
    form#otherForms .amz_btn, form#stripe_form  button.stripe-button-el{
        margin: 0px 15px 0 0;
    }
    .amz_previews_order {
        width: calc(33.3% - 20px);
        display: inline-block;
        margin: 0 10px 20px;
    }
    .modal-body.amz_modal_body form#checkBookingForm .amz_checkRadio {
        max-width: 100% !important;
    }
    .amz_notiContent {
        max-width: calc(50% - 20px);
    }
    .amz_product_listWrapper .carousel-inner {
        max-width: 450px;
        margin: 20px auto;
        padding: 15px;
    }
    .amz_fullwidth_product .amz_productList,
    .amz_fullwidth_product.carousel-inner{
        max-width: calc(100% - 20px);    flex: 0 0 100%;
    } 
    
    .amz_remove_slider.amz_fullwidth_product .amz_productList {
        max-width: calc(50% - 20px);  
    }
}
@media (min-width: 991px){
    .amz_listingComponent.amz_TwoIconListing {
        grid-template-columns: repeat(4, 1fr);
    }
    .amz_TwoIconListing .amz_listing_wrapper {
        max-width: 100%;
        width: 100%;
    }
    .amz_inlineListing .amz_listing_wrapper {
        max-width: 25%;
        padding: 0 5px;
        width: 100%;
    }
    .amz_listing_wrapper {
        max-width: 25%;
        padding: 0px 5px;
        width: 100%;
    }
    .amz_itemImage img, .amz_itemImage iframe {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }
    .amz_itemImage {
        display: flex;
        width: calc(100% - 150px);
        align-items: center;
    }
    .list-group {
        width: 250px;
        display: inline-flex;
        padding: 0px;
        box-shadow: 0 0 20px rgba(0 0 0 / 10%);
        border-radius: 10px;
        margin: 20px;
        height: fit-content;
        overflow: hidden;
    }
    .list-group:first-child {
        width: calc(100% - 330px);
    }
    ul#add_pro_list {
        padding: 20px;
    }
    .amz_cartRightItem {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .amz_cartRightItem .amz_cartAmount {
        width: calc(100% - 150px);
    }
    div#add_pro_list, div#myOdersDetails {
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
    }
    .amz_address {
        max-width: calc(33.3% - 15px);
        display: inline-flex;
        margin-right: 15px;
        flex-direction: column;
        width: 100%;
    }
    div#amz_shipping_addresses {
        display: flex;
        flex-wrap: wrap;
    }
    .amz_coupon_holder {
        display: inline-block;
        width: 100%;
        margin: 20px;
        text-align: right;
    }
    .amz_coupon_holder {
        display: flex;
        width: 100%;
        margin: 20px;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .amz_applyCoupon {
        max-width: 500px;
        width: 100%;
    }
    .list-group .amz_removeCart {
        position: relative;
        width: 25px;
        height: 25px;
        padding:6px 8px;
        display: flex;
        flex: 0 0 25px;
        margin-right: 15px;
        background-color: #F1EDF7;
        border-radius: 50px;
    }
    .list-group .amz_removeCart svg {
        fill: #504F6B;
    }
    .list-group-item, .list-groupTotal-item {
        padding: 15px 20px;
        align-items: center;
        border: 0px;
    }
    li.list-groupTotal-item {
        border-top: 1px solid #efefef !important;
        margin-top: 10px;
    }
    .amz_coupon_holder .amz_btn_holder {
        margin: 0 0 0 20px;
    }
    .amz_coupon_holder .amz_btn_holder .amz_btn {
        padding:12px 30px;
    }
    .amz_cartAmount {
        text-align: left;
    }
    .amz_btn {
        font-size: 14px;
    }
    .amz_previews_order {
        width: calc(25% - 20px);
        display: inline-block;
        margin: 15px 10px 15px;
    }
    .amz_remove_slider .amz_productList {
        margin-right: 10px;
        margin-left: 10px;
        max-width: calc(50% - 20px);
    }
    .amz_fullwidth_product .amz_productList, 
    .amz_fullwidth_product.carousel-inner .amz_productList {
        max-width: calc(100% - 20px);     flex: 0 0 100%;
    } 
    
    .amz_remove_slider.amz_fullwidth_product .amz_productList,
    .amz_remove_slider .amz_productList {
        max-width: calc(33.3% - 20px);  
    }
    .amz_fullwidth_product.amz_remove_slider,
    .amz_inlineList.amz_remove_slider {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media(max-width:768px){
    .amz_bottomContent h5 {
        font-size: 14px;
        text-align: center;
    }
    .amz_bottomContent p {
        font-size: 10px;
        text-align: center;
        margin: 0 0 5px;
    }
    .amz_bottombtn_holder {
        text-align: center;
    }
    .amz_bottombtn_holder .amz_btn.amz_installBtn {
        float: none;
        margin: auto;
        padding: 8px 15px;
        font-size: 10px;
    }
    .amz_fixbottombar {
        flex-direction: column;
        padding: 5px 15px;
    }
    .amz_register .amz_btn {
        padding: 10px !important;
    }
    .amz_loginLogo {
        /* margin: 10px 0px; */
    }
    .amz_loginText {
        margin-bottom: 15px;
    }
    .amz_loginpage_dv .amz_contactForm {
        padding: 30px 15px;
    }
    .amz_cardCheckout .nav-tabs .nav-item {
        max-width: 33.3%;
    }
    .amz_cardCheckout ul.nav-tabs p {
        font-size: 12px;
    }
    .amz_address {
        max-width: 100%;
        min-width: calc(100%);
    }
    div#selectPayment h5 {
        margin-bottom: 15px;
    }
    .amz_tooltip_show {
        left: calc(50% - 130px);
        right: 0;
    }
    .amz_tooltip_show::before {
        left: 0;
        right: 0;
        margin: auto;
    }
}
@media(max-width:450px){
    #amz_productModal_Restricted .amz_modal_body {
        padding: 30px 15px;
    }
    .amz_productBox {
        padding: 10px;
    }
    .amz_imgBox_left {
        width: 75px;
        height: 75px;
    }
    .amz_contentBox_right {
        width: calc(100% - 75px);
        padding-left: 15px;
    }
    .amz_contentBox_right h5 {
        font-size: 16px;
        line-height: 24px;
    }
    #amz_productModal_Restricted .amz_modal_body p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 5px;
    }
    .amz_modal_body .amz_btn {
        margin: 10px 1px;
    }
}