/*  */
* {
    outline: none;
}
*, ::after, ::before {
    box-sizing: border-box;
}
:root{
    --templateColor: #0d66a1;
    --PrimaryColor: #00A9FF;
    --SecondaryColor: #688FA9;
    --AccentColor:#f9f9f9;
    --TextColor:#222222;
    --AlternateTextColor: #414141;
    --transition: all 0.5s ease-in-out;
}
body{
    margin: 0px;
    padding: 0px;
    color: var(--AlternateTextColor);
    font-size: initial;
    font-family: 'Raleway', sans-serif;
}
a, a:hover{
    text-decoration: none;
    color: var(--PrimaryColor);
}
img{
    max-width: 100%;
}
h1,h2,h3,h4,h5,h6,p,ul,ol{
    margin: 0px;
    padding: 0px;
}
input, input:focus, textarea, textarea:focus, select, select:focus, a, a:hover{
    outline: none;
    box-shadow: none;
    text-decoration: none;
    color: var(--AlternateTextColor);
}
textarea.form-control {
    height: auto !important;
    line-height: normal;
    padding: 20px;
}
.form-control{
    font-weight: normal;
}
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: 14px;
    color: var(--TextColor);
    font-weight: 500;
}
.amz_form_control:focus {
    border: 1px solid var(--PrimaryColor);
    box-shadow: none;
}
.amz_section {
    text-align: center;
    padding: 0px 0 0px;
    background-color: #fff;
    clear: both;
}
/* Main Menu Css */
.amz_header_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px 10px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;   
     z-index: 99999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 35%);
}
.amz_main_menu {
    max-width: 250px;
    display: inline-block;
    padding: 0px ;
    z-index: 100;
    min-height: 50px;
    position: relative;
}
.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;
    background: #fff;
    border-radius: 0;
    z-index: 99;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    left: -270px;
    width: 250px;
    height: 100%;
    top: -20px;
    max-width: 250px;
    height: 647px;
    bottom: 0;
    z-index: 998;
}
.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: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0 0 0 / 35%);
    z-index: 99;
}
.amz_togglemenu {
    position: absolute;
    left: 0px;
    top: 25px;
    z-index: 999;
}
.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: 205px;
}
.amz_mobile_menu li a {
    padding: 0px 0;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--AlternateTextColor);
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid #f3f3f3;
    text-overflow: ellipsis;
    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 {
    left: -15px;
}

/* End Main Menu Css */

/* Main Logo */
.amz_main_logo {
    display: inline-block;
    max-width: calc(100%);
    width: 100%;
    text-align: center;
}
.amz_main_logo img {
    max-width: 120px;
    max-height: 30px;
    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: 300px;
}
.amz_doticon svg {
    width: 25px;
    fill: var(--PrimaryColor);
}
.amz_doticon {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 0px;
    width: 25px;
    height: 25px;
    text-align: center;
    color: var(--PrimaryColor) !important;
}
.amz_doticon > i {
    /* font-size: 24px; */
    color: var(--PrimaryColor);
}
.amz_sharedots {
    position: relative;
    z-index: 9;
}
.amz_shareDropdown {
    position: absolute;
    top: 35px;
    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: 5px;
    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: inline-block;
    width: 100%;
    font-size: 12px;
    color: var(--AlternateTextColor);
}
.amz_shareDropdown>ul>li:hover a{
    color: var(--PrimaryColor);
}
.amz_shareDropdown>ul>li>a>svg, 
.amz_shareDropdown>ul>li>a>i {
    width: 18px;
    margin-right: 5px;
    fill: var(--PrimaryColor);
}
.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: 570px;
}
.ap_viewtemplate_laptop .amz_pages_wrapper {
    position: absolute;
    top: 56px;
    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 0;
    color: var(--TextColor);
}
.amz_text_component p, .amz_text_component h1, 
.amz_text_component h2, .amz_text_component h3, 
.amz_text_component h4, .amz_text_component h5, 
.amz_text_component h6{
    color: var(--TextColor);
}
/* End Text Component */

/* Banner Component */
.amz_banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(11, 83, 148);
}
.ap_viewtemplate_laptop .amz_banner {
    height: calc(430px);
}
.amz_banner.amz_onefourthbanner {
    height: 70vh;
}
.amz_banner.amz_shortbanner {
    height: 50vh;
}
.amz_banner .amz_header_overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
}
.p_relative{
    position: relative;
}
.amz_banner h1 {
    margin: 0;
    font-size: 48px;
    font-weight: normal;
    color: #fff;
}
.amz_banner h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    font-weight: 300;
}
.amz_btn {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 0;
    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;
}
.amz_headerHeading, .amz_headerHeading p {
    font-size: 20px;
    color: var(--PrimaryColor);
    font-weight: bold;
}
.amz_headerSubHeading, .amz_headerSubHeading p {
    font-size: 16px;
    line-height: normal;
    margin-top: 10px;
    color: var(--SecondaryColor);
}
.amz_headerDescription {
    font-size: 12px;
    line-height: normal;
    margin-top: 10px;
}
/* End Banner Component */

/* Form Component */
.amz_validate {
    color: #f90000;
    font-size: 12px;
    display: none;
}
.amz_form_control {
    height: 50px;
    font-size: 14px;
    border-radius:4px;
    border: 1px solid #dadada;
}
.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;
}
.amz_btn.amz_radius_btn {
    border-radius: 5px;
}
.amz_btn.amz_straight_btn {
    border-radius: 0px;
}
/* Ens Button Component Css */

/* Video Component Css*/
.amz_video_component video {
    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_pages_wrapper .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: absolute;
}
.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;
}
.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;
}
.amz_modal_dialog_centered.amz_modal_dialog_scrollable .amz_modal_content {
    max-height: none;
}
.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: calc(100vh - 100px);
}
.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: 35px;
    line-height: 35px;
    border-radius: 4px;
}
.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 8px;
}
.amz_main_container> .amz_modal.show {
    top: 0;
    bottom: 0;
}
.amz_modal_dialog_centered .amz_modal_content {
    max-height: 80%;
    overflow: auto;
}
/** 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: 35px;
}
.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;
    line-height: normal;
    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);
}
.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 {
    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,
.amz_product_listWrapper .carousel-control-prev,
.amz_product_listWrapper .carousel-control-next{
    height: 30px;
    background-color: var(--PrimaryColor);
    padding: 10px;
    border-radius: 5px;
    top: calc(50% - 15px);
    z-index: 99;
    max-width: 30px;
}
.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;
}
.amz_slider_component .carousel-indicators li.active {
    border: 2px solid #fff;
}
/****************************/
.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);
}
/*********************************************** End Slider Component ********************************************/

/* Countdown Compponent Css*/
.amz_gradient_contdown {
    background-color: transparent;
    padding: 20px 10px;
}
.amz_countdown_title {
    color: var(--PrimaryColor);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.amz_countdown_timer {
    list-style: none;
    display: block;
}
.amz_countdown_timer li {
    display: inline-block;
    font-size: 30px;
    padding: 10px;
    font-weight: bold;
    color: var(--AccentColor);
}
.amz_countdown_timer li span {
    display: block;
    font-size: 12px;
    font-weight: bold;
    margin-top: 15px;
    color: var(--AccentColor);
}
/* End Countdown Compponent Css*/

/* Notification Component */
.amz_notification_component .toast {
    opacity: 1;
}
/* Notification Component */


/* Testimonial Component */
.amz_testimonial_component {
    padding: 20px 0;
    color: var(--PrimaryColor);
}
.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: 20px 0px;
    color: var(--PrimaryColor);
}
.amz_testimonial_slider .carousel-content h3 span {
    font-size: 17px;
    font-weight: normal;
    color: var(--SecondaryColor);
    text-transform: uppercase;
}
.amz_testimonial_slider .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: 0px 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;
}
.amz_iframeTitle, .amz_iframeTitle p{
    color: var(--PrimaryColor);
}
/* 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;
}
.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;
}
/* End Image Component */ 
.amz_audio_component {
    padding: 20px 5px;
}
.amz_formComponent {
    padding: 20px 0;
}
/************************************
    Header Menu Right
**********************************/
ul#amz_submenu li {
    line-height: normal;
    border-radius: 0px;
    overflow: hidden;
}
ul#amz_submenu li:first-child{
    border-radius:10px 10px 0 0;
}
ul#amz_submenu li:last-child{
    border-radius:0 0 10px 10px;
}
.amz_menuRight .amz_main_menu {
    order: 3;
    max-width: 20px;
    width: 100%;
}
.amz_menuRight .amz_main_logo {
    text-align: left;
    order: 1;
}
.amz_menuRight .amz_rightmenu {
    order: 1;
    max-width: 30px;
    width: 30px;
}
.amz_menuRight .amz_main_menu.amz_open_menu .amz_mobile_menu {
    left: auto;
    right: -10px;
}
.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: 0px;
}
.ap_viewtemplate_laptop .amz_menuRight .amz_doticon {
    top: -1px;
}
.ap_mobilescreen_template .amz_menuRight .amz_doticon {
    top: 4px;
}
/*****************************
    Menu Top
******************************/
.ap_viewtemplate_laptop .amz_menuTop .amz_mobile_menu {
    text-align: center;
    padding-right: 75px;
}
.amz_menuTop .amz_main_menu {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 30%);
}
.amz_menuTop .amz_main_logo {
    text-align: left;
    max-width: calc(100% - 30px);
}
.amz_menuTop .amz_rightmenu {
    order: 3;
    max-width: 40px;
    width: 40px;
}
.amz_menuTop .amz_mobile_menu {
    position: relative;
    max-width: 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    padding: 0;
    height: 30px;
    top: 0;
    overflow: hidden;
}
.amz_menuTop .amz_mobile_menu li{
    display: inline-flex;
    align-items: center;
}
.amz_menuTop .amz_mobile_menu li a {
    padding: 0px 10px;
    border-bottom: 0;
    font-size: 12px;
    font-weight: 500;
}
.amz_menuTop .amz_togglemenu {
    display: none !important;
}
.amz_header_holder ol{
    display: none;
}
.ap_viewtemplate_laptop .amz_menuTop .amz_main_logo {
    max-width: 150px;
}
.ap_mobilescreen_template .amz_menuTop .amz_main_logo {
    max-width: 100%;
}
.ap_viewtemplate_laptop .amz_header_holder.amz_menuBottom.amz_menuTop .amz_main_logo {
    max-width: 100%;
}
.amz_menuTop  ol {
    position: absolute;
    right: 0; top: 0;
    overflow: visible;
    display: block;
    z-index: 9999;
    list-style: none;
    margin-bottom: 0;
}
.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;
    text-align: left;
    background-color: #fff;
    margin-bottom: 0;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    max-width: 150px;
}
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_main_menu 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: 12px;
    font-weight: bold;
    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;
}
.ap_mobilescreen_template .amz_menuTop .amz_main_menu {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    position: absolute;
    top: 76px;
    min-height: 40px;
    background-color: #ffff;
}
.ap_mobilescreen_template .amz_menuTop .amz_mobile_menu {
    position: absolute;
    margin: 0;
    height: 44px;
    left: 0px;
    width:calc(100% - 0px);
    white-space: nowrap;
}
.amz_menuTop .amz_mobile_menu li.amz_lastChild_menu {
    position: absolute;
    right: -5px;
    top: 0;
    cursor: pointer;
}
.amz_menuTop .amz_mobile_menu li.amz_lastChild_menu a {
    font-size: 20px;
    line-height: 24px;
    background-color: #fff;
    padding: 0 5px;
}
.ap_mobilescreen_template .amz_menuTop ul#amz_mobilemenu.slideTopMenu {
    height: auto !important;
    position: relative;
}
.ap_mobilescreen_template .amz_menuTop .amz_sharedots {
    z-index: 999;
}
.ap_mobilescreen_template .amz_menuTop .amz_main_logo img {
    top: 0px;
}
.ap_mobilescreen_template .amz_menuTop .amz_doticon {
    top: 0px;
}
.amz_rightmenu {
    height: 25px;
}
.ap_mobilescreen_template .amz_header_holder{
    min-height: 75px;
}
.ap_mobilescreen_template .amz_header_holder.amz_menuTop + .amz_pages_wrapper {
    top: 115px;
    height: 530px;
}
/*************** Bottom Menu ********************/
.amz_header_holder.amz_menuBottom.amz_menuTop + .amz_pages_wrapper {
    top: 75px;
}
.ap_mobilescreen_template .amz_menuBottom.amz_menuTop .amz_doticon {
    top: 5px;
    right: 0;
}
.ap_mobilescreen_template .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_header_holder.amz_menuBottom.amz_menuTop {
    padding: 20px 10px 15px;
}
.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;
}
.ap_viewtemplate_laptop .amz_menuBottom.amz_menuTop .amz_main_menu {
    top: 442px;
    width: 100%;
    position: absolute;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%) !important;
    height: 42px;
    background-color: #fff;
}
.ap_viewtemplate_laptop .amz_menuBottom.amz_menuTop  ol > li span.amz_dotted_menu {
    margin-top: 8px;
    margin-right: 10px;
}
.amz_header_holder.amz_menuTop {
    padding: 30px 10px 15px;
}
.ap_viewtemplate_laptop .amz_header_holder {
    padding: 10px 10px 10px;
    height: 56px;
}
.amz_header_holder.amz_menuBottom.amz_menuTop + .amz_pages_wrapper .amz_section:last-child {
    margin-bottom: 35px;
}
.ap_viewtemplate_laptop .amz_header_holder.amz_menuBottom.amz_menuTop + .amz_pages_wrapper {
    top: 46px;
}
.ap_viewtemplate_laptop .amz_main_menu {
    box-shadow: none !important;
}
.amz_menuBottom.amz_menuTop ol > li span.amz_dotted_menu {
    margin-right: 15px;
}
.ap_mobilescreen_template .amz_menuBottom.amz_menuTop .amz_main_logo img {
    top: 5px;
}
.ap_mobilescreen_template .amz_header_holder.amz_menuTop {
    min-height: 75px;
}
/************************************
    Header Menu End
*************************************/
.ap_pageContent_menu.ap_AddNewComponent .menu__item.ap_actions img {
    max-width: 150px;
    max-height: 30px;
}
/**************************************
    Rating Component
***************************************/
.amz_inner {
    padding: 20px 0;
    position: relative;
}
.amz_rating {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0px 0px 15px;
    border-bottom: 1px solid #000;
    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 {
    float: left;
    padding: 3px;
    color: #333;
    width: 40px;
}
.amz_histo_rate {
    width: 100%;
    display: block;
    clear: both;
    text-align: left;
}
.amz_bar_block {
    margin-left: 5px;
    color: black;
    display: block;
    float: left;
    width: 75%;
    position: relative;
}
.amz_bar {
    padding: 4px;
    display: block;
    overflow: visible !important;
}
.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: #737373;
}
.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: contents;
}
.amz_checkbox {
    position: relative;
    padding: 0 0 0 30px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--grayColor1);
}
.amz_checkbox span{
	height: 18px;
	width: 18px;
	border: 1px solid #E5E7F7;
	background-color: #f8fbfc;
	position: absolute;
	content: '';
	border-radius: 5px;    
	left: 15px;
    top: 3px;
}
.amz_checkbox span:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 5px;
	border: 2px solid #ffffff;
	border-top: none;
	border-right: none;
	left: 4.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_slider_component {
    position: relative;
}
/* Share Modal */
.amz_socialShareList {
    text-align: center !important;
    display: block !important;
}
.amz_socialShareList li {
    display: inline-block;
    margin: 5px;
}
/* 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;
}
ul.amz_starRating_list li a svg:hover,
ul.amz_starRating_list li.amz_activeRating a svg{
    fill: #f0b706;
}
/******** Form Field Css ********/
ul.ap_viewAllFields li>span {
    display: inline-block;
    font-size: 12px;
    position: absolute;
    left: 0;
}
ul.ap_viewAllFields li{
    font-size: 12px;
    padding-left: 100px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    text-align: left;
}
.amz_contactForm a.amz_label.openMyModal {
    text-align: inherit;
    color: #222;
}

/** 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;
}
.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;
}
/********* Product Component Css **************/
.amz_productTitle {
    font-size: 24px;
    line-height: normal;
    text-align: center;
    color: inherit;
    font-weight: bold;
    padding: 15px  0;
}
.amz_productList {
    color: inherit;
    padding: 20px 0;
}
.amz_productImage {
    max-width: 100%;
    margin: 0px 0;
    width: 27%;
    border-radius: 4px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}
.amz_productContent {
    width: calc(100% - 32%);
    display: inline-block;
    margin-left: 3%;
    text-align: left;
}
.amz_productHeading {
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
}
.amz_productCategory {
    font-size: 10px;
    line-height: normal;
    color: inherit;
    opacity: 0.8;
}
.amz_productDescription {
    font-size: 13px;
    line-height: normal;
}
.amz_productAmount {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 0;
}
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.active,
.amz_inlineList.carousel-inner .carousel-item.active,
.amz_fullwidth_product.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item.active  {
    display: block  !important;
}
/************* 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: 8px 8px;
    border-radius: 3px;
}
.amz_productImage img {
    max-width: 100%;
}
/** Full WIdth Product **/
.amz_fullwidth_product .amz_productImage {
    width: 100%;
    text-align: center;
}
.amz_fullwidth_product .amz_productContent {
    width: 100%;
}
.amz_fullwidth_product .amz_productHeading {
    font-size: 18px;
    margin-bottom: 0px;
}
.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;
}
.amz_product {
    display: flex;
    flex-direction: column;
    color: #000000;
    padding: 20px 0;
}
.amz_procuctRightItem .amz_btn{
    margin: 10px 0;
    font-size: 12px;
}
.amz_productImage img {
    max-width: 100%;
    width: 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: 5px;
    background-color: transparent !important;
    color: #000 !important;
    padding: 5px;
}
.amz_product_slide_handler a.carousel-control-next{
    left: auto;
    right: 5px;
}
.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;
} 
/********** 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;
}
.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: 6px 5px;
    text-align: center;
    margin-top: 10px;
    font-weight: 400 !important;
}
.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(--SecondaryColor);
    background-color: var(--SecondaryColor);
    color: #fff;
}
.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% - 85px);
    display: inline-block;
    margin: 0;
    padding-left: 10px;
}
.amz_procuctRightItem {
    text-align: left;
}

/*********** Grid Component **************/
.amz_gridBox {
    height: 130px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    padding: 5px;
    color: #fff;
    background-position: center top;
    background-size: cover;
}
.amz_grid_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(255 219 219);
}
.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;
}
/** Top Menu Css **/
.amz_header_holder .amz_inlineIcon .amz_mobile_menu li a >i, 
.amz_header_holder .amz_mobile_menu li a >i {
    margin-right: 5px;
}
.amz_header_holder .amz_blockIcon.amz_mobile_menu li {
    vertical-align: top;
    text-align: center;
    padding: 0 10px;
}
.amz_header_holder .amz_blockIcon.amz_mobile_menu li a >i {
    margin-right: 0;
    display: block;
}
.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::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
	background-color: transparent;
}
.amz_footer_menu::-webkit-scrollbar{
	height: 4px;
	background-color: transparent;
}
.amz_footer_menu::-webkit-scrollbar-thumb{
	background-color: var(--PrimaryColor);
}
.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 6px 10px rgb(0 0 0 / 20%);
    white-space: nowrap;
    min-width: 60px;
    bottom: 0;
    position: relative;
    z-index: 9999;
}
.amz_footer_menu ul {
    list-style: none;
    display: block;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    overflow: auto;
}
.amz_footer_menu ul li {
    padding: 0 10px;
    line-height: 65px;
    color: var(--PrimaryColor);
    align-items: center;
    display: inline-flex;
    justify-content: center;
    background-color: transparent;
    width: 100%;
}
.amz_footer_menu ul li a{
    color: var(--PrimaryColor);
    display: inline-block;
    font-size: 14px;
    line-height: 40px;
    text-transform: uppercase;
}
.amz_footer_menu ul li a i {
    margin-right: 7px;
}
/* Only Icon */
.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.amz_blockIcon ul {
    display: block;
}
.amz_footer_menu.amz_blockIcon ul li {
    display: inline-block;
}
.amz_footer_menu.amz_blockIcon ul li a {
    line-height: normal;
}
.amz_footer_menu.amz_blockIcon ul li {
    padding: 6px 10px;
}
.amz_footer_menu.amz_blockIcon ul li a i {
    display: block;
    align-items: center;
    line-height: normal;
    font-size: 24px;
    margin: 0 0 6px;
}
.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);
}
/*************************************/
.scroll {
    display: none;
}
.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 {
    position: absolute;
    line-height: 30px;
    padding: 0px;
    width: 30px;
    float: right;
    height: 30px;
    z-index: 99;
    opacity: 1;
    background-color: #3e5df2;
    border-radius: 0 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0px;
    top: 0px;
}
.amz_modal_dialog_bottom button.close span {
    line-height: 0;
    display: inline-block;
    position: relative;
    top: -3px;
    color: #fff;
    text-shadow: 0 0 black;
    opacity: 1;
}
.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% - 65px);
    display: inline-block;
}
.amz_modalRightDv {
    width: 50px;
    height: 50px;
    background-color: #cfd7fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    vertical-align: top;
    margin-left: 10px;
}
div#amz_productModal_bottom {
    padding-bottom: 50px;
    z-index: 9999999;
}
.ap_viewtemplate .modal-backdrop.show {
    opacity: .5;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    z-index: 99999;
    height:100%;
}
/** Grid Column **/
.amz_gridBox {
    height: 100px;
}
.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 !important;
}
.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{
    height: 75px;
}
.amz_col_3 .amz_gridBox {
    height: 100px;
}
.amz_grid_innerText {
    color: #fff;
    line-height: normal;
    position: relative;
    /* text-shadow: 0 0 10px #555; */
}
.ap_viewtemplate_laptop .amz_col_3 .amz_gridBox {
    height: 250px;
}
.ap_viewtemplate_laptop .amz_col_4 .amz_gridBox {
    height: 200px;
}
.ap_viewtemplate_laptop .amz_col_2 .amz_gridBox {
    height: 300px;
}
.ap_viewtemplate_laptop .amz_col_1 .amz_gridBox {
    height: 350px;
}

/*====================================
    Responsive Css Start
======================================*/
@media(min-width:768px){
     
}
@media(max-width:1850px){
    .rightbar_open  .ap_viewtemplate_laptop {
        height: 335px;
        width: 535px;
        top: 70px;
        right: -7px;
    }
    .rightbar_open .ap_laptopscreen_template {
        max-width: 710px;
        margin: auto;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_pages_wrapper {
        height: 280px;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_menuBottom.amz_menuTop .amz_main_menu {
        top: 295px;
    }
}
@media(max-width:1550px){
    .rightbar_open .ap_viewtemplate_laptop {
        height: 225px;
        width: 353px;
        top: 64px;
        right: -4px;
    }
    .rightbar_open .ap_mobileScreen_image {
        position: relative;
        max-width: 455px !important;
    }
    .rightbar_open .ap_mobilescreen_template .ap_viewtemplate {
        height: 590px;
        width: 272px;
        position: absolute;
        top: 64px;
        right: 0;
        left: -7px;
        border-radius: 25px;
    }
    .rightbar_open .ap_mobilescreen_template .main-wrapper:before {
        top: 63px;
    }
    .rightbar_open .ap_mobilescreen_template .amz_countdown_timer li {
        padding: 5px;
    }
    .rightbar_open .ap_mobilescreen_template .amz_pages_wrapper, .rightbar_open .ap_mobilescreen_template .amz_sliderItem {
        height: 515px;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_pages_wrapper {
        height: 185px;
        top: 40px;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_main_logo img {
        max-height: 30px;
    }
    .rightbar_open .ap_mobilescreen_template .amz_menuTop.amz_menuBottom .amz_main_menu {
        top: 547px;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_header_holder.amz_menuTop {
        padding: 10px 10px 15px;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_header_holder.amz_menuBottom.amz_menuTop + .amz_pages_wrapper {
        top: 51px;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_menuBottom.amz_menuTop .amz_main_menu {
        top: 184px;
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_banner {
        height: calc(240px);
    }
    .rightbar_open .ap_viewtemplate_laptop .amz_sliderItem {
        height: calc(280px);
    }
}
@media (max-width: 1400px){
    .rightbar_open .ap_viewtemplate_laptop .amz_pages_wrapper {
        height: 170px;
        top: 55px;
    }
    .rightbar_open .ap_mobilescreen_template .amz_pages_wrapper {
        top: 80px;
        height: 515px;
    }
    .ap_mobilescreen_template .amz_header_holder.amz_menuTop + .amz_pages_wrapper {
        height: 520px;
    }
}
@media(max-width:768px){
    .amz_doticon {
        right: 0px;
    }
    .ap_viewtemplate_laptop .amz_pages_wrapper {
        top: 41px;
        height: 186px;
    }
    .ap_viewtemplate_laptop .amz_header_holder.amz_menuTop {
        padding: 5px 10px 5px;
    }
    .ap_viewtemplate_laptop .amz_header_holder.amz_menuBottom.amz_menuTop + .amz_pages_wrapper {
        top: 35px;
        height: 196px;
    }
    .amz_menuBottom.amz_menuTop .amz_main_menu {
        top: 189px;
    }
}
@media(max-width:575px){
    .amz_togglemenu {
        left: 0px;
        top: 13px;
    }
    .amz_togglemenu span {
        width: 14px;
    }
    .amz_auto_nav_more_list, .amz_mobile_menu {
        left: -190px;
        width: 175px;
        top: -20px;
        max-width: 175px;
        height: 430px;
        padding: 27px 10px 20px;
    }
    .amz_mobile_menu li a {
        padding: 5px 0;
        font-size: 12px;
    }
    .amz_open_menu .amz_togglemenu {
        left: 135px;
    }
    .amz_doticon {
        top: 0px;
        right: 0px;
        width: 20px;
        height: 20px;
    }
    .amz_doticon svg {
        width: 20px;
    }
    .amz_main_menu {
        max-width: 160px;
        padding: 0px 0;
        min-height: 25px;
    }
    .amz_shareDropdown>ul {
        padding: 5px 0;
        width: 120px;
    }
    .amz_shareDropdown>ul>li> a {
        padding: 0px 15px;
    }
    .amz_shareDropdown {
        top: 25px;
    }
    .amz_shareDropdown:before {
        right: 3px;
        top: -5px;
    }
    .amz_shareDropdown>ul>li>a>svg {
        width: 14px;
    }
    .amz_pages_wrapper {
        top: 56px;
        height: 360px;
    }
    .ap_viewtemplate_laptop .amz_pages_wrapper {
        top: 36px;
        height: 123px;
    }
    .amz_banner h1 {
        font-size: 28px;
    }
    .amz_banner h2 {
        font-size: 18px;
    }
    .amz_btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    .amz_main_logo img {
        max-width: 75px;
    }
    .ap_mobilescreen_template .amz_banner {
        height: calc(395px - (16vh - 80px));
    }
    .ap_mobilescreen_template .amz_banner.amz_shortbanner {
        height: calc(395px - (50vh - 80px));
    }
    .ap_mobilescreen_template .amz_banner.amz_onefourthbanner {
        height: calc(395px - (25vh - 80px));
    }
    .ap_viewtemplate_laptop .amz_btn {
        font-size: 10px;
        padding: 5px 10px;
    }
    .ap_viewtemplate_laptop .amz_banner h2 {
        font-size: 11px;
    }
    .ap_viewtemplate_laptop .amz_banner h1 {
        font-size: 16px;
    }
    .ap_viewtemplate_laptop .amz_banner {
        height: calc(200px - (16vh - 25px));
    }
    .ap_viewtemplate_laptop .amz_banner.amz_shortbanner {
        height: calc(200px - (50vh - 80px));
    }
    .ap_viewtemplate_laptop .amz_banner.amz_onefourthbanner {
        height: calc(200px - (25vh - 80px));
    }
    .ap_viewtemplate_laptop .amz_ifram_component h2, 
    .ap_viewtemplate_laptop .amz_image_component h2 {
        color: var(--PrimaryColor);
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: 0px !important;
    }
    .amz_countdown_timer li {
        font-size: 20px;
        padding: 5px;
    }
    .amz_countdown_timer li span {
        font-size: 10px;
        font-weight: normal;
        margin-top: 0px;
    }
    .ap_splash_preview img {
        max-width: 80px;
        max-height: 80px;
    }
    .ap_mobilescreen_template .amz_btn {
        font-size: 11px;
    }
    .menu__level, .ap_rightSidebar {
        padding: 15px;
    }
    .ap_laptopscreen_template {
        padding: 50px 0px;
    }
    .amz_menuRight .amz_open_menu .amz_togglemenu {
        left: 0;
    }
    .ap_mobilescreen_template .amz_menuTop .amz_main_menu {
        top: 63px;
    }
    .ap_mobilescreen_template .amz_menuTop.amz_menuBottom .amz_main_menu {
        top: 374px;
        box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    }
    .amz_headerHeading, .amz_headerHeading p {
        font-size: 14px;
        line-height: normal;
    }
    .amz_headerSubHeading, .amz_headerSubHeading p {
        font-size: 12px;
    }
    .amz_headerDescription {
        font-size: 10px;
    }
    .amz_header_holder.amz_menuTop {
        padding: 23px 10px 10px;
    }
    .amz_sliderItem {
        height: calc(350px);
    }
    .ap_mobilescreen_template .amz_header_holder.amz_menuTop + .amz_pages_wrapper {
        top: 105px;
        height: 310px;
    }

}
@media(max-width:380px){
    .ap_mobilescreen_template .amz_togglemenu {
        top: 10px;
    }
    .ap_mobilescreen_template .amz_main_logo img {
        top: 4px;
    }
}
.amz_menuTop  .scroll {
    position: absolute;
    background-color: var(--PrimaryColor);
    color: #fff;
    width: 25px;
    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: #fff;
    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;
}
.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar,
.amz_menuBottom.amz_menuTop .show-indicator .amz_mobile_menu::-webkit-scrollbar{
	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_menuTop .amz_mobile_menu::-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{
	height: 4px;
	background-color: transparent;
}
.amz_menuTop .amz_mobile_menu::-webkit-scrollbar-thumb{
	background-color: var(--PrimaryColor);
}
/************** Main Menu Css ****************/
.ap_mobilescreen_template .amz_menuTop ul.amz_mobile_menu.amz_blockIcon {
    height: 65px;
}
/************* 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: normal;
}
.amz_footer_menu ul.amz_onlyIcon li {
    padding: 10px;
}
/************ 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;
    text-transform: uppercase;
}
/*****************************/
.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;
}








/********* Cart Page Css ***********/
.amz_pageHeader_title {
    font-size: 20px;
    background-color: #fff;
    text-align: center;
    padding: 15px 15px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    position: relative;
    z-index: 9;
}
.amz_cartList {
    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;
}
.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: 18px;
    font-weight: bold;
    margin: 0px 0 5px;
}
.amz_cartQuentity {
    width: 130px;
    margin: 0;
}
.amz_input.amz_numberInput {
    border: 1px solid #efefef;
    padding: 0 10px;
    height: 25px;
    min-width: 50px;
    font-size: 12px;
    border-radius: 50px !important;
    background-color: transparent !important;
    text-align: center;
}
.amz_removeCart {
    position: absolute;
    width: 10px;
    height: 10px;
    right: 10px;
    top: 10px;
    left: auto;
    bottom: 0;
}
.amz_removeCart svg {
    fill: #f90000;
}
.amz_cart_dv {
    padding: 15px;
    height: calc(100vh - 108px);
    overflow-y: 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: var(--PrimaryColor);
    color: #fff;
    padding: 0 5px;
    height: 25px;
    font-size: 12px;
    margin: 0 5px;
    border-radius: 0px !important;
    border: 0px;
    width: 25px;
}
.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: 16px;
    width: 16px;
    top: 5px;
    left: 5px;
    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: 8px;
    width: 8px;
    top: 3px;
    left: 3px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}
.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: 5px;
    background-color: #f5f5f5;
    border-radius: 0;
    border: 1px solid #efefef;
    width: 100%;
}
.amz_paymentName {
    width: 100%;
}
.amz_productList {
    padding: 5px;
    position: relative;
    background-color: #fff;
    margin-bottom: 0px;
    border-radius: 5px;
    width: 100%;    
    display: block;
    margin: 0 0px 10px;
}
.amz_remove_slider .amz_productList {
    display: inline-block;
    margin-right: 0;
}
.list-group-item, 
.list-groupTotal-item {
    padding: 10px;
}
.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: 75px;
}
.amz_address {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 0;
    margin-bottom: 10px;
    border: 1px solid #e8e8e8;
    position: relative;
}
.amz_delevery_address svg {
    width: 20px;
    fill: #aaa;
}
.amz_delevery_address {
    font-size: 10px;
    position: absolute;
    right: 5px;
    bottom: 5px;
}
.amz_address p {
    font-size: 12px;
}
.amz_address.amz_active_address {
    border: 1px solid #aaffd6;
    background-color: #f1fff7;
}
.amz_active_address .amz_delevery_address svg {
    fill: #03bd64;
}
.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_ty_dv {
    height: calc(100vh - 108px);
    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 {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 0;
    box-shadow: 0px 4px 10px rgb(220 220 220 / 85%);
    margin-bottom: 20px;
}
.amz_previews_order .amz_btn {
    text-align: center;
    width: 100px;
    font-size: 12px;
    padding: 0 5px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-top: 5px;
    font-weight: normal;
}
.amz_order_id {
    font-size: 12px;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: right;
}
.amz_order_amount {
    font-weight: bolder;
    font-size: 20px;
    color: var(--PrimaryColor);
}
.amz_order_date {
    font-size: 12px;
}
.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: 12px;
}
.list-group-item, 
.list-groupTotal-item {
    border: 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: 0px;
    width: calc(100% - 112px);
    border-color: #efefef;
}
.amz_applyCoupon button.amz_btn {
    margin: 0;
    height: 40px;
}
.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 var(--PrimaryColor);
}
.amz_cardCheckout ul.nav-tabs .nav-link {
    border: 1px solid var(--PrimaryColor) !important;
    width: 40px;
    height: 40px;
    font-size: 12px;
    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: 90px;
    width: 100%;
    text-align: center;
}
.amz_cardCheckout ul.nav-tabs p {
    font-size: 11px;
}
.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;
}
.list-group .amz_itemImage h6 small.text-muted {
    display: block;
}
.amz_itemImage img {
    width: 50px;
    height: 50px;
    padding: 2px;
    background-color: #ccc;
    margin-right: 5px;
}
.amz_itemImage {
    display: block;
}









/* 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 0;
    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 .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_onlySocialIcon li p{
    display: none;
}
/** Social Without Icon **/
.amz_onlySocialText li a .amz_iconImage_holder{
    display: none;
}
/** 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_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_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;
}
.amz_reservation_dv {
    display: flex;
    flex-direction: column;
}

/**********************************************/
.amz_product .row {
    margin-right: -5px;
    margin-left: -5px;
}
/*************/
@media(max-width:768px){
    .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;
    }
}
@media(max-width:450px){
    .amz_cart_table table tr td img {
        width: 50px;
        height: 50px;
    }
}


