/* AD LIVE */
@charset "utf-8";
/*
    Theme Name: CNTraveller
    Theme URI: http://cntraveller.in
    Description: CNTraveller Theme
    Version: 1.0
    Author: CNTraveller Team

*/
/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */
/*@import url("css/reset.css");*/

/*! http://responsiveslides.com v1.54 by @viljamis */
.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0
}

b {
    font-weight: 700 !important;
}

a {
    transition: ease-in-out 300ms;
    -webkit-transition: ease-in-out 300ms;
    -moz-transition: ease-in-out 300ms;
    -ms-transition: ease-in-out 300ms;
    -o-transition: ease-in-out 300ms;
}

a:hover {
    opacity: .8;
}

body {
    overflow-x: hidden;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0
}

/* Start Font Awesome */

/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/

/*
CONTENTS: 
    1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
    2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
    3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
    4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
    5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
    6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
        6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/

/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

.mCustomScrollbar {
    -ms-touch-action: none;
    touch-action: none;
    /* MSPointer events - direct all pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar {
    -ms-touch-action: auto;
    touch-action: auto;
}

.mCustomScrollBox {
    /* contains plugin's markup */
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: none;
    direction: ltr;
}

.mCSB_container {
    /* contains the original content */
    overflow: hidden;
    width: auto;
    height: auto;
}

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_inside>.mCSB_container {
    margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
}

/* non-visible scrollbar */

.mCS-dir-rtl>.mCSB_inside>.mCSB_container {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0;
}

/* RTL direction/left-side scrollbar */

.mCSB_scrollTools {
    /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
}

.mCSB_outside+.mCSB_scrollTools {
    right: -26px;
}

/* scrollbar position: outside */

.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,
.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    /* RTL direction/left-side scrollbar */
    right: auto;
    left: 0;
}

.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */

.mCSB_scrollTools .mCSB_draggerContainer {
    /* contains the draggable element and dragger rail markup */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
}

.mCSB_scrollTools a+.mCSB_draggerContainer {
    margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
    /* the draggable element */
    cursor: pointer;
    width: 100%;
    height: 30px;
    /* minimum dragger height */
    z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    /* the dragger element */
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px;
    /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-right: 0;
    margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside>.mCSB_container {
    min-height: 100%;
}

.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/* non-visible scrollbar */

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
}

.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px;
}

/* scrollbar position: outside */

.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer {
    margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px;
    /* minimum dragger width */
    height: 100%;
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    /* auto-expanded scrollbar */
    margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px;
    /* auto-expanded scrollbar */
    margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    margin-bottom: 30px;
}

.mCSB_container_wrapper>.mCSB_container {
    padding-right: 30px;
    padding-bottom: 30px;
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px;
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0;
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper {
    /* RTL direction/left-side scrollbar */
    margin-right: 0;
    margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container {
    padding-right: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container {
    padding-bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
    /* non-visible scrollbar */
    margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
/* auto-expanded scrollbar */
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
    -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s,
        margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,
        margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
        opacity .2s ease-in-out, background-color .2s ease-in-out;
    -moz-transition: width .2s ease-out .2s, height .2s ease-out .2s,
        margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,
        margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
        opacity .2s ease-in-out, background-color .2s ease-in-out;
    -o-transition: width .2s ease-out .2s, height .2s ease-out .2s,
        margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,
        margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
        opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: width .2s ease-out .2s, height .2s ease-out .2s,
        margin-left .2s ease-out .2s, margin-right .2s ease-out .2s,
        margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
        opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

/* 
    ----------------------------------------
    6.1 THEMES 
    ----------------------------------------
*/

/* default theme ("light") */

.mCSB_scrollTools {
    opacity: 0.75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools {
    opacity: 0;
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover>.mCSB_scrollTools,
.mCustomScrollBox:hover~.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
    filter: "alpha(opacity=85)";
    -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/images/mCSB_buttons.png);
    /* css sprites */
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0;
    /* 
        sprites locations 
        light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
        dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
    */
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px;
    /* 
        sprites locations
        light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
        dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
    */
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px;
    /* 
        sprites locations 
        light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
        dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
    */
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px;
    /* 
        sprites locations 
        light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
        dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
    */
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
    opacity: 0.75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
    opacity: 0.9;
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)";
}

/* theme: "dark" */

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}

/* ---------------------------------------- */

/* theme: "light-2", "dark-2" */

.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px;
}

/* theme: "dark-2" */

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px;
}

/* ---------------------------------------- */

/* theme: "light-thick", "dark-thick" */

.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px;
}

/* theme: "dark-thick" */

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}


.cnt-search input[type=search] {
    background-color: #fafafa;
    border: 1px solid #e6e6e6;
    padding: 15px;
    margin: 0 5px 0 0;
    width: 89%;
    height: 52px;
    font: 400 24px/52px Lato, sans-serif;
    color: rgba(0, 0, 0, .3);
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-border-radius: none;
    border-radius: 0;
    float: left;
    padding: 0;
    margin: 0;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.search-pnl-heading {
    font: 400 38px/42px savoybold;
    margin-bottom: 25px;
}

.cnt-search input[type=submit] {
    width: 11%;
    height: 52px;
    font: 400 18px/52px Lato, sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background-color: #999999;
    display: inline-block;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-border-radius: none;
    border-radius: 0;
    border: 0;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px;
}

/* ---------------------------------------- */

/* theme: "light-thin", "dark-thin" */

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto;
}

/* theme "dark-thin" */

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px;
}

/* ---------------------------------------- */

/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
    height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 14px;
    margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 14px;
    margin: 1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 16px;
    /* auto-expanded scrollbar */
    height: 16px;
    margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 4px;
    /* auto-expanded scrollbar */
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px;
    /* auto-expanded scrollbar */
    width: 16px;
    margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 4px;
    /* auto-expanded scrollbar */
    margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -128px;
}

/* theme "rounded-dark", "rounded-dots-dark" */

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -128px;
}

/* theme "rounded-dots", "rounded-dots-dark" */

.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-color: transparent;
    background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
    background-repeat: repeat-y;
    opacity: 0.3;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0;
    background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -128px;
}

/* theme "rounded-dots-dark" */

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -128px;
}

/* ---------------------------------------- */

/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-y;
    background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-x;
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

/* theme "3d", "3d-dark" */

.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    width: 8px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 8px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 8px;
    margin: 4px 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 8px;
    margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "3d-dark" */

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */

/* theme: "3d-thick", "3d-thick-dark" */

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
    box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    bottom: 1px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
    width: 12px;
    margin: 2px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme: "3d-thick-dark" */

.mCS-3d-thick-dark.mCSB_scrollTools {
    box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #fff;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */

/* theme: "minimal", "minimal-dark" */

.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical {
    right: 0;
    margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    margin: 0 12px;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical {
    left: 0;
    right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)";
}

/* theme: "minimal-dark" */

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)";
}

/* ---------------------------------------- */

/* theme "light-3", "dark-3" */

.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 6px;
    margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "dark-3" */

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* ---------------------------------------- */

/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */

.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    width: 12px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin: 3px 5px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px 3px;
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 12px;
    margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px;
}

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px;
}

/* theme "inset-2", "inset-2-dark" */

.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-color: #000;
    border-color: rgba(0, 0, 0, 0.2);
}

/* theme "inset-3", "inset-3-dark" */

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.9);
}

/* theme: "cnt-theme" */

.mCS-cnt-theme.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #DBDBDB;
    background-color: rgba(219, 219, 219, 0.1);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 10px;
}

.mCS-cnt-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #DBDBDB;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    width: 10px;
}

.mCS-cnt-theme.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #DBDBDB;
}

.mCS-cnt-theme.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-cnt-theme.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #DBDBDB;
}

.mCS-cnt-theme.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0;
}

.mCS-cnt-theme.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px;
}

.mCS-cnt-theme.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px;
}

.mCS-cnt-theme.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px;
}

#sectionCarouselWithSidebar {
    background: white !important;
}

/* ---------------------------------------- */

/* Owl carousel */

/* 
 *  Core Owl Carousel CSS File
 *  v1.3.2
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* display none until init */
.owl-carousel {
    /*display: none;*/
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
    cursor: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
    display: none;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* 
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
}

/* 
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

/*
*   Owl Carousel Owl Demo Theme 
*   v1.3.2
*/

.owl-theme .owl-controls {
    text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #869791;
    filter: Alpha(Opacity=50);
    /*IE7 fix*/
    opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    opacity: 1;
    text-decoration: none;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    filter: Alpha(Opacity=50);
    /*IE7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    /*IE7 fix*/
    opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
    min-height: 150px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/AjaxLoader.gif) no-repeat center center
}

/* Owl carousel */


/* light slider */
.lSSlideWrapper,
.lSSlideWrapper .lSFade {
    position: relative
}

.lSSlideWrapper .lSSlide,
.lSSlideWrapper.usingCss .lSFade>* {
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important
}

.lSSlideOuter,
.lSSlideOuter .lSPager.lSGallery {
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none
}

.lSSlideOuter .lSPager.lSGallery:after,
.lSSlideWrapper>.lightSlider:after {
    clear: both
}

.lSSlideOuter {
    overflow: hidden;
    user-select: none
}

.lightSlider:after,
.lightSlider:before {
    content: " ";
    display: table
}

.lightSlider {
    overflow: hidden
}

.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden
}

.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform, height;
    -moz-transition-property: -moz-transform, height;
    transition-property: transform, height
}

.lSSlideWrapper .lSFade>* {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%
}

.lSSlideWrapper.usingCss .lSFade>* {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

.lSSlideWrapper .lSFade>.active {
    z-index: 10
}

.lSSlideWrapper.usingCss .lSFade>.active {
    opacity: 1
}

.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center
}

.lSSlideOuter .lSPager.lSpg>li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px
}

.lSSlideOuter .lSPager.lSpg>li a {
    background-color: #222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all .5s linear 0s;
    transition: all .5s linear 0s
}

.lSSlideOuter .lSPager.lSpg>li.active a,
.lSSlideOuter .lSPager.lSpg>li:hover a {
    background-color: #428bca
}

.lSSlideOuter .media {
    opacity: .8
}

.lSSlideOuter .media.active {
    opacity: 1
}

.lSSlideOuter .lSPager.lSGallery {
    list-style: none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    user-select: none
}

.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius .12s linear 0s .35s linear 0s;
    transition: border-radius .12s linear 0s .35s linear 0s
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px
}

.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%
}

.lSSlideOuter .lSPager.lSGallery:after,
.lSSlideOuter .lSPager.lSGallery:before {
    content: " ";
    display: table
}

.lSAction>a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    margin-top: -16px;
    opacity: .5;
    -webkit-transition: opacity .35s linear 0s;
    transition: opacity .35s linear 0s
}

.lSAction>a:hover {
    opacity: 1
}

.lSAction>.lSPrev {
    background-position: 0 0;
    left: 10px
}

.lSAction>.lSNext {
    background-position: -32px 0;
    right: 10px
}

.lSAction>a.disabled {
    pointer-events: none
}

.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden
}

.lSSlideOuter.vertical {
    position: relative
}

.lSSlideOuter.vertical.noPager {
    padding-right: 0 !important
}

.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0
}

.lSSlideOuter.vertical .lightSlider>* {
    width: 100% !important;
    max-width: none !important
}

.lSSlideOuter.vertical .lSAction>a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0
}

.lSSlideOuter.vertical .lSAction>.lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto
}

.lSSlideOuter.vertical .lSAction>.lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px
}

.lSSlideOuter.lSrtl {
    direction: rtl
}

.lSSlideOuter .lSPager,
.lSSlideOuter .lightSlider {
    padding-left: 0;
    list-style: none
}

.lSSlideOuter.lSrtl .lSPager,
.lSSlideOuter.lSrtl .lightSlider {
    padding-right: 0
}

.lSSlideOuter .lSGallery li,
.lSSlideOuter .lightSlider>* {
    float: left
}

.lSSlideOuter.lSrtl .lSGallery li,
.lSSlideOuter.lSrtl .lightSlider>* {
    float: right !important
}

@-webkit-keyframes rightEnd {

    0%,
    100% {
        left: 0
    }

    50% {
        left: -15px
    }
}

@keyframes rightEnd {

    0%,
    100% {
        left: 0
    }

    50% {
        left: -15px
    }
}

@-webkit-keyframes topEnd {

    0%,
    100% {
        top: 0
    }

    50% {
        top: -15px
    }
}

@keyframes topEnd {

    0%,
    100% {
        top: 0
    }

    50% {
        top: -15px
    }
}

@-webkit-keyframes leftEnd {

    0%,
    100% {
        left: 0
    }

    50% {
        left: 15px
    }
}

@keyframes leftEnd {

    0%,
    100% {
        left: 0
    }

    50% {
        left: 15px
    }
}

@-webkit-keyframes bottomEnd {

    0%,
    100% {
        bottom: 0
    }

    50% {
        bottom: -15px
    }
}

@keyframes bottomEnd {

    0%,
    100% {
        bottom: 0
    }

    50% {
        bottom: -15px
    }
}

.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd .3s;
    animation: rightEnd .3s;
    position: relative
}

.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd .3s;
    animation: leftEnd .3s;
    position: relative
}

.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd .3s;
    animation: topEnd .3s;
    position: relative
}

.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd .3s;
    animation: bottomEnd .3s;
    position: relative
}

.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd .3s;
    animation: leftEnd .3s;
    position: relative
}

.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd .3s;
    animation: rightEnd .3s;
    position: relative
}

.lightSlider.lsGrab>* {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.lightSlider.lsGrabbing>* {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing
}

/*End Plugin css*/

#circularG {
    display: none;
    position: relative;
    width: 58px;
    height: 58px;
    margin: auto;
}

.circularG {
    position: absolute;
    background-color: rgb(0, 0, 0);
    width: 14px;
    height: 14px;
    border-radius: 9px;
    -o-border-radius: 9px;
    -ms-border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    animation-name: bounce_circularG;
    -o-animation-name: bounce_circularG;
    -ms-animation-name: bounce_circularG;
    -webkit-animation-name: bounce_circularG;
    -moz-animation-name: bounce_circularG;
    animation-duration: 1.1s;
    -o-animation-duration: 1.1s;
    -ms-animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    -moz-animation-duration: 1.1s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#circularG_1 {
    left: 0;
    top: 23px;
    animation-delay: 0.41s;
    -o-animation-delay: 0.41s;
    -ms-animation-delay: 0.41s;
    -webkit-animation-delay: 0.41s;
    -moz-animation-delay: 0.41s;
}

#circularG_2 {
    left: 6px;
    top: 6px;
    animation-delay: 0.55s;
    -o-animation-delay: 0.55s;
    -ms-animation-delay: 0.55s;
    -webkit-animation-delay: 0.55s;
    -moz-animation-delay: 0.55s;
}

#circularG_3 {
    top: 0;
    left: 23px;
    animation-delay: 0.69s;
    -o-animation-delay: 0.69s;
    -ms-animation-delay: 0.69s;
    -webkit-animation-delay: 0.69s;
    -moz-animation-delay: 0.69s;
}

#circularG_4 {
    right: 6px;
    top: 6px;
    animation-delay: 0.83s;
    -o-animation-delay: 0.83s;
    -ms-animation-delay: 0.83s;
    -webkit-animation-delay: 0.83s;
    -moz-animation-delay: 0.83s;
}

#circularG_5 {
    right: 0;
    top: 23px;
    animation-delay: 0.97s;
    -o-animation-delay: 0.97s;
    -ms-animation-delay: 0.97s;
    -webkit-animation-delay: 0.97s;
    -moz-animation-delay: 0.97s;
}

#circularG_6 {
    right: 6px;
    bottom: 6px;
    animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -ms-animation-delay: 1.1s;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
}

#circularG_7 {
    left: 23px;
    bottom: 0;
    animation-delay: 1.24s;
    -o-animation-delay: 1.24s;
    -ms-animation-delay: 1.24s;
    -webkit-animation-delay: 1.24s;
    -moz-animation-delay: 1.24s;
}

#circularG_8 {
    left: 6px;
    bottom: 6px;
    animation-delay: 1.38s;
    -o-animation-delay: 1.38s;
    -ms-animation-delay: 1.38s;
    -webkit-animation-delay: 1.38s;
    -moz-animation-delay: 1.38s;
}

@keyframes bounce_circularG {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(.3);
    }
}

@-o-keyframes bounce_circularG {
    0% {
        -o-transform: scale(1);
    }

    100% {
        -o-transform: scale(.3);
    }
}

@-ms-keyframes bounce_circularG {
    0% {
        -ms-transform: scale(1);
    }

    100% {
        -ms-transform: scale(.3);
    }
}

@-webkit-keyframes bounce_circularG {
    0% {
        -webkit-transform: scale(1);
    }

    100% {
        -webkit-transform: scale(.3);
    }
}

@-moz-keyframes bounce_circularG {
    0% {
        -moz-transform: scale(1);
    }

    100% {
        -moz-transform: scale(.3);
    }
}

.top-arrow a {
    color: blue;
    text-decoration: none;
}

.story article a {
    color: #999;
    text-decoration: none !important;
}

.in-story-slideshow {
    margin: 15px 0 45px;
    position: relative;
    margin-bottom: 10px;
    clear: both;
}

.in-story-slideshow .top {
    border-bottom: solid 1px #e8e6e6;
    border-top: solid 1px #e8e6e6;
    border-right: 0;
    /* 03:23 PM 27-04-2016 */
    position: relative;
    width: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.in-story-slideshow .top .instory-slide-counter {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    color: #a1a0a0;
    float: left;
}

.in-story-slideshow .top .instory-slide-counter span {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    color: #000;
}

.in-story-slideshow .top .instory-slide-toggle {
    float: right;
}

.in-story-slideshow .top .instory-slide-toggle a {
    display: block;
    font-size: 32px;
    line-height: 34px;
    width: 22px;
    height: 34px;
    cursor: pointer;
}

.in-story-slideshow .top .instory-slide-toggle a.to-thumb {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/instory-thumb.png) center no-repeat;
}

.owl-counter {
    display: block;
    padding: 0 0 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    color: #a1a0a0;
    text-align: center;
}

.owl-counter span {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    color: #000;
}

.in-story-slideshow .bottom {
    position: relative;
}

.in-story-slideshow .bottom .slide {
    width: 100%;
}

.in-story-slideshow .bottom .slide figure {
    width: 63%;
    float: left;
    height: auto;
}

.in-story-slideshow .bottom .slide figure img {
    width: 100%;
    height: auto;
    display: block;
}

.in-story-slideshow .bottom .slide .content {
    width: 34%;
    float: right;
    padding-left: 20px;
    font-family: 'VerlagBook';
    font-size: 22px;
    line-height: 24px;
    color: #000;
}

.in-story-slideshow .bottom .slide .content .scoll-cont,
.in-story-slideshow .bottom .slide .content .slide-content {
    max-height: inherit;
    overflow: auto;
    color: #030202;
    font-family: 'savoyregular';
    font-size: 20px;
    line-height: 26px;
}

.in-story-slideshow .bottom .slide .content .slide-content {
    display: inline;
}

.in-story-slideshow .bottom .slide .content h3 {
    font-family: "savoybold", sans-serif;
    font-size: 26px;
    line-height: 1em;
    text-transform: none;
    color: #000;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.in-story-slideshow .bottom .slide .content p {
    margin-bottom: 20px;
    padding: 0;
}

.in-story-slideshow .bottom .slide .content span,
.in-story-slideshow .bottom .slide .content span.img-caption {
    color: #757575;
    display: block;
    margin: 0;
    font-size: inherit;
    text-align: left;
}

.img-caption {
    margin: 10px 0 0;
    color: #ccc;
    font-size: small;
    display: block;
}

.in-story-slideshow .bottom .slide-nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    /*z-index: 1000;*/
}

.in-story-slideshow .bottom .instory-slide-nav {
    display: block;
    cursor: pointer;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.1;
}

.in-story-slideshow .bottom:hover .instory-slide-nav {
    opacity: 0.3;
}

.in-story-slideshow .bottom .instory-slide-nav.prev {
    left: 0;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/inner-slide-prev.png) 0 50% no-repeat;
    z-index: 33333;
    width: 30%;
}

.in-story-slideshow .bottom .instory-slide-nav.next {
    right: 0;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/inner-slide-next.png) 100% 50% no-repeat;
    z-index: 33333;
    width: 30%;
}

.in-story-slideshow.show-thumb {
    margin: 15px auto 35px;
}

.in-story-slideshow.show-thumb .top {
    width: 100%;
    padding-bottom: 0px;
}

.in-story-slideshow.show-thumb .top .instory-slide-counter,
.in-story-slideshow.show-thumb .top .top-arrow {
    display: none !important;
}

.in-story-slideshow.show-thumb .top .instory-slide-toggle a.to-thumb {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/instory-slide.png) center no-repeat;
}

.in-story-slideshow.show-thumb .bottom .cycle-slideshow:after {
    clear: both;
    content: '';
    display: block;
    height: 0;
    width: 100%;
    float: none;
}

.in-story-slideshow.show-thumb .bottom .slide {
    width: 30%;
    float: left;
    padding: 10px 10px;
}

.in-story-slideshow.show-thumb .bottom .slide figure {
    width: 100%;
    float: none;
    cursor: pointer;
    overflow: hidden;
    background-color: #000;
    background-size: cover;
    background-position: center;
    position: relative;
}

.in-story-slideshow.show-thumb .bottom .slide figure img {
    display: none;
}

.in-story-slideshow.show-thumb .bottom .slide figure:hover {
    opacity: 0.7;
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -o-transform: scale(1.03);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.in-story-slideshow.show-thumb .bottom .slide figure .image-credit {
    display: none;
}

.in-story-slideshow.show-thumb .bottom .slide .content {
    display: none;
}

.in-story-slideshow.show-thumb .bottom .slide-nav-wrapper {
    display: none !important;
}

.in-story-slideshow.show-thumb .bottom .withoutTextTitle {
    display: none;
}

.in-story-slideshow .bottom .slide .content .mCSB_inside>.mCSB_container {
    margin-right: 30px;
    margin-left: 0;
}

.in-story-slideshow .bottom .slide .content .mCSB_scrollTools {
    left: auto;
    right: 0px;
    width: 10px;
    background: #f4f3f3;
}

.in-story-slideshow .bottom .slide .content .mCSB_draggerRail {
    background: none;
}

.in-story-slideshow .bottom .slide .content .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin-left: 0;
    margin-right: 0;
    width: 9px;
    background: #c5c5c5;
    border-radius: 0;
}

/* 08.07.2015 */

.in-story-slideshow.full-with-slider .bottom .slide-nav-wrapper,
.in-story-slideshow.full-with-slider .bottom .slide figure {
    width: 100%;
}

.in-story-slideshow.full-with-slider .bottom .slide figure img {
    width: auto;
    max-width: 100%;
    margin: 0px auto;
}

.in-story-slideshow.full-with-slider .bottom .slide .content {
    width: 100%;
    padding-left: 0px;
    /*margin-top: 20px;*/
    margin-top: 10px;
}

.in-story-slideshow.full-with-slider .bottom .slide .content p {
    display: inline-block;
    margin-bottom: 0px;
    margin-right: 5px;
}

.in-story-slideshow.full-with-slider .bottom .slide .content span,
.in-story-slideshow .image-credit p {
    display: inline-block;

}

.in-story-slideshow.full-with-slider {
    margin-bottom: 20px;
}

.in-story-slideshow.full-with-slider .bottom .slide .content span,
.in-story-slideshow .image-credit p {
    display: inline-block;
    font-family: 'savoyregular';
}

.in-story-slideshow.full-with-slider .bottom .slide .content span:before {
    content: "|";
    font-size: 24px;
    line-height: 24px;
    margin-right: 6px;
}

.in-story-slideshow.full-with-slider .bottom .slide .content span span {
    margin-left: 5px;
}

.in-story-slideshow.full-with-slider .bottom .slide .content h3 {
    color: #030202;
    font-family: "savoyregular";
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 0;
    margin-right: 7px;
    /*float: left;*/
    display: inline;
    margin-bottom: 0;
}

/* 13.07.2015 */

.loader {
    position: relative;
    padding: 30px 0;
    text-align: center;
}

.loader .fa-li {
    font-size: 60px;
    position: static;
    color: #494849;
    left: auto;
    right: auto;
    top: 0;
    width: auto;
}

/****************************************************************************************
@
@   HOMEPAGE SLIDER STYLES
@
****************************************************************************************/

.home-slider {
    display: block;
    width: 100%;
    position: relative;
}

.home-slider {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slider-loading.gif) center no-repeat;
}

.home-slider.home-slider-activated {
    background: none;
}

.home-slider .init-slider article {
    display: none;
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.home-slider .init-slider article:nth-child(1) {
    display: block;
}

.home-slider.home-slider-activated .init-slider article {
    display: block;
    opacity: 1;
    transition-delay: 0.8s;
    -webkit-transition-delay: 0.8s;
    -moz-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
}

/* 06.08.2015 */

/* 07.08.2015 */

.in-story-slideshow.full-with-slider .bottom .slide .content span.no-title:before,
.in-story-slideshow.full-with-slider .bottom .slide .content p.no-title:before {
    content: "" !important;
    margin-right: 0 !important;
}

/* End Collections Page */

/* 14-08-2015 Abir */
body.section .main.no-padding {
    padding-top: 0;
}

/* END 14-08-2015 Abir */

/* 15-08-2015 Abir | Collection Single */
.in-story-slideshow .bottom.collection-slider {
    position: relative;
}

.in-story-slideshow .bottom.collection-slider:after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
    height: 0;
}

.in-story-slideshow .bottom.collection-slider .instory-slideshow {
    width: 65%;
    float: left;
}

.in-story-slideshow .bottom.collection-slider .instory-slideshow .slide figure {
    width: 100%;
    float: none;
}

.in-story-slideshow .bottom.collection-slider .collection-pager-container {
    width: 35%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: auto;
}

.in-story-slideshow .bottom.collection-slider .collection-slider-pager {
    width: 100%;
    padding: 0 15px 0 10px;
}

.in-story-slideshow .bottom.collection-slider .collection-slider-pager:after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
    height: 0;
}

.in-story-slideshow .bottom.collection-slider .collection-slider-pager a {
    display: block;
    float: left;
    width: 47%
        /*50%*/
    ;
    /*background:#000;*/
    border-right: 5px solid #fff;
    margin-bottom: 10px;
    position: relative;
    padding-top: 50%;
    overflow: hidden;
}

.in-story-slideshow .bottom.collection-slider .collection-slider-pager a:nth-child(2n) {
    border-left: 5px solid #fff;
    border-right: none;
}

.in-story-slideshow .bottom.collection-slider .collection-slider-pager a img {
    display: block;
    width: 100%;
    opacity: 0.98;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.in-story-slideshow .bottom.collection-slider .collection-slider-pager a:hover img {
    opacity: 0.8;
}

.in-story-slideshow .bottom.collection-slider .collection-slider-pager a.cycle-pager-active img {
    opacity: 1;
}

.in-story-slideshow .bottom.collection-slider .collection-pager-container .slimScrollRail {
    border-radius: 0 !important;
    height: 90% !important;
}

.in-story-slideshow .bottom.collection-slider .collection-pager-container .slimScrollBar {
    border-radius: 0 !important;
    cursor: pointer;
}

.in-story-slideshow .bottom.collection-slider .collection-pager-container .slimScrollBar:hover {
    background: #ababab !important;
}

.in-story-slideshow.show-thumb .bottom.collection-slider .instory-slideshow {
    width: 100%;
}

.in-story-slideshow.show-thumb .bottom.collection-slider .collection-pager-container {
    display: none;
}

/* END 15-08-2015 Abir | Collection Single */

/* 17.08.2015 */

.instory-slideshow {
    min-height: 400px;
    max-height: 400px;
    overflow: hidden;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slider-loading.gif) center no-repeat;
}

.in-story-slideshow .bottom .slide .content .scoll-cont.slide-content {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
}

//}

.description h3 {
    color: #030202;
    font-family: 'savoyregular';
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 20px;
}

/* 18.08.2015 */

.sponsered_icon {
    display: block;
    font-size: 10px;
    padding: 2px 3px;
    margin-top: 8px;
    background: #9e794c;
    color: #fff;
    display: inline-block;
}

/* 22.08.2015 */

.in-story-slideshow .image-credit {
    overflow: hidden;
    margin-top: -10px;
}

.in-story-slideshow.full-with-slider .image-credit {
    margin-top: 0px;
}

.in-story-slideshow .collection-slider .image-credit {
    margin-top: 0px;
}

.in-story-slideshow .image-credit p {
    font-family: 'savoyregular';
    color: #757575;
    display: block;
    margin: 0;
    text-align: left;
}

.in-story-slideshow .withoutTextTitle {
    font-family: 'savoyregular';
    display: inline-block;
    width: 100%;
}

/* 24.08.2015 */

/* 03.09.2015 */

.instory-slideshow .slide {
    opacity: 0;
}

.cycle-slider-active .instory-slideshow .slide {

    opacity: 1;
}

/* End MAin Content Area */

.in-story-slideshow.cycle-slider-active .instory-slideshow {
    background: none;
    max-height: none;
    z-index: 25555;
}

/* END search lightbox */

/* 05-08-2015 */
.in-story-slideshow.show-thumb:after {
    content: '';
    display: block;
    clear: both;
    width: 100%;
    height: 0;
    float: none;
}

/* 06-08-2015 */
.instory-top-header {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 10px;
}

.instory-top-header .post-tag {
    margin-bottom: 15px;
}

.instory-top-header .description {
    color: #030202;
    font-family: 'savoyregular';
    font-size: 20px;
    line-height: 26px;
    padding: 15px 0 15px 5px;
}

/* 07-08-2015 */
.in-story-slideshow.full-with-slider .bottom .slide .content .slide-content p {
    color: #757575;
}

.in-story-slideshow.full-with-slider .bottom .slide .content span:before {
    display: none;
}

.in-story-slideshow.full-with-slider .bottom .slide .content .slide-content p:before {
    content: "|";
    font-size: 24px;
    line-height: 24px;
    margin-right: 6px;
}

/************************************************************************************
*
*   FIXES FOR MOBILE (767PX)
*
************************************************************************************/
@media only screen and (max-width: 1024px) {}

@media only screen and (min-width: 960px) {
    .main-nav-scrolled .mlogo {
        margin-top: 10px;
    }

    .main-nav-scrolled .fly-menu-btn {
        margin-top: 21.5px;
    }

}

@media only screen and (max-width: 960px) {
    .main-nav-scrolled {
        height: 57px;
        padding: 0 !important;
    }

    .mlogo img {

        /* 03:24 PM 22-04-2016 */
        min-height: 35px;
        max-height: 35px;
    }

    .cnt-subscribe-form {
        margin: 0 auto !important;
    }

    .story article .nextbutton {
        display: table;
        width: 100%;
    }

    .portfolio_search_bars .select_label {
        width: 100%;
        border-bottom: 1px solid #E3E3E3;
        border-right: 0
    }

    .portfolio_search_bars .select_label select {
        width: 100%;
    }

    .portfolio_search_bars .select_label:nth-child(2) {
        margin-bottom: 10px
    }

    .portfolio_search_bars .search_box {
        margin-left: 0;
        width: 100%;
    }

    .port_search_btn {
        display: table;
        margin: 0 auto
    }

    .portfolio_search_wrapper .portfolio_featured_designers_carousel {
        display: block !important
    }

    .profile_image_wrap {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .profile_image_wrap .top-social-btn-blk {
        text-align: center
    }

    .profile_details_wrap {
        width: 100%;
        float: left;
    }

    .profile_details_wrap .p_name {
        font-size: 16px;
        margin-bottom: 5px;
        text-align: center;
    }

    .profile_details_wrap .p_designation {
        text-align: center;
    }

    .profile_details_wrap .p_desc {
        margin-bottom: 10px
    }

    .portfolio_featured_carousel .owl-controls .owl-nav .owl-prev {
        top: 40% !important;
        background-size: contain
    }

    .portfolio_featured_carousel .owl-controls .owl-nav .owl-next {
        top: 40% !important;
        background-size: contain
    }

}

#owl8 .desc {
    bottom: 8% !important;
}

@media only screen and (max-width: 767px) {

    #owl8 .desc {
        bottom: 5% !important;
    }

    .social-share:hover .social_icon_wrapper {
        width: 100% !important;
        /*width: 216px!important*/
    }

    .social-share:hover .social_icon_wrapper2 {
        width: 216px !important
    }

    /* 04-08-2015 - Instory Slide Fix */
    .in-story-slideshow .top .instory-slide-counter {
        float: none;
        text-align: center;
        font-size: 20px;
        line-height: 34px;
    }

    .in-story-slideshow .top .instory-slide-counter span {
        font-size: 20px;
        line-height: 34px;
    }

    .nwcover {
        margin: 0;
    }

    .in-story-slideshow .slide .content h3 {
        font-family: "savoybold", sans-serif;
        font-size: 20px;
        line-height: 24px;
        margin: 10px 0;
        color: #000;
        text-align: left;
        display: block;
    }

    .nwcover .midContent a.tag {
        font-family: 'savoybold', sans-serif;
        font-size: 13px;
        line-height: 34px;
        color: #000;
        text-align: left;
        display: block;
    }

    .scoll-cont.slide-content {
        padding-bottom: 0px;
        font-size: 1em;
        line-height: 23px;
        color: #030202;
        font-family: 'savoybold', sans-serif;
    }

    .scoll-cont.slide-content span {
        font-size: 13px;
        color: #ccc;
        line-height: 20px;
    }

    /* 05-08-2015 */
    .in-story-slideshow .top {
        padding-right: 0;
    }

    .row .col:nth-child(2) .social_icon_wrapper {
        left: -45px;
        top: 36px;
    }

    .newsrow .row:nth-child(2) .three-cols:last-child {
        width: 100%;
        min-height: auto !important;
        max-height: 50px;
    }

    .newsrow .row:nth-child(2) .small-ad-banner {
        height: 50px;
        max-width: 320px;
        margin: 0 auto;
        overflow: hidden;
    }

    #subscribe_email1 {
        width: 71%;
        float: left;
    }

    .signup-block form input[type=submit] {
        width: 29% !important;
        margin-top: 0 !important;
    }

    .signup-block form input[type=submit] {
        width: 29% !important;
        line-height: 46px !important;
        float: left;
        position: relative;
        margin: 0 !important;
        height: 57px !important;
    }

    .story aside .related-articles {
        margin: 0 auto;
    }

    .topadbnr>div {
        width: 100%
    }

    /*.topadbnr>div iframe{ width: 100% }*/
    #innerbanner .inner-pg-title {
        font-size: 3.5em !important;
    }

    .cnt-search input[type=search] {
        width: 80%;
        height: 38px;
        font: 400 15px/38px Lato, sans-serif;
    }

    .cnt-search input[type=submit] {
        width: 20%;
        height: 38px;
        font: 400 15px/38px Lato, sans-serif;
    }



}



.story article .top-arrow {
    float: right;
    margin-right: 10px;
    border-left: solid 1px #e8e6e6;
}

.story article .top-arrow a {
    font-family: 'FontAwesome';
    font-size: 40px;
    line-height: 34px;
    color: #999999;
    width: 40px;
    text-align: center;
    border-right: solid 1px #e8e6e6;
}

.story article .top-arrow a:hover {
    color: #000;
}

@media only screen and (max-width: 850px) {

    /* collections */
    .light-slider-nav .lSAction>.lSNext {
        background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/two-vid-slide-nav-next.png") no-repeat scroll center center rgba(0, 0, 0, 0);
        right: 22.5px;
    }

    .light-slider-nav .lSAction>.lSPrev {
        background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/two-vid-slide-nav-prev.png") no-repeat scroll center center rgba(0, 0, 0, 0);
        left: 22.5px;
    }

    .light-slider-nav .lSAction>a {
        width: 12px;
        height: 20px;
    }

}

@media only screen and (max-width: 767px) {

    .cycle-slide.cycle-slide-active {
        z-index: 200 !important;
    }

    header.mainHeader {
        z-index: 10000;
    }

    #bannerWrap {
        padding: 0 20px 20px;
    }

    header.mainHeader div.topSec {
        display: none;
    }

    nav ul.menu {
        display: none;
    }

    .mainContent h1 {
        Font-size: 28px;
        line-height: 32px;
        padding-bottom: 10px;
    }

    .linkWrapper {
        font-size: 15px;
        line-height: 18px;
    }

    .left-feature-right-image .blockWrap,
    .right-featured-left-image .blockWrap {
        position: relative;
    }

    .articalBlock.left-feature-right-image .featured,
    .articalBlock.right-featured-left-image .featured,
    .fullwidth-featured .featured {
        display: none;
    }

    .fullwidth-featured.video-sec .featured,
    .fullwidth-featured.single-item .featured {
        display: block;
    }

    .articalBlock .listing.custom-scroll {
        padding: 0;
        background: none;
    }

    .articalBlock .listing.custom-scroll section,
    .fullwidth-featured .listing section {
        width: 100%;
        padding: 0;
    }

    .fullwidth-featured div.featured .caption .tag {
        display: block;
    }

    .fullwidth-featured .listing {
        background: none;
    }

    .fullwidth-featured.carousel .listing {
        padding: 10px 0;
    }

    .cycle-sentinel.cycle-slide {
        display: none !important;
    }

    .arrow {
        top: 40%;
    }

    .arrow a,
    .carousel .owl-nav div,
    .owl-nav div,
    .mobiSldNav {
        display: block;
        position: absolute;
        top: 50%;
        z-index: 1000;
        background-image: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/slider-arrow.png");
        text-indent: -300000px;
        background-color: rgba(0, 0, 0, 0.5);
        background-repeat: no-repeat;
        width: 31px !important;
        height: 39px !important;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    .mobiSldNav {
        top: 40%;
    }

    .arrow a.prev,
    .carousel .owl-nav div.owl-prev,
    .owl-nav div.owl-prev,
    .mobiSldNav.prev {
        background-size: 13px auto;
        background-position: 50% 7px;
        left: 0;
    }

    .arrow a.next,
    .carousel .owl-nav div.owl-next,
    .owl-nav div.owl-next,
    .mobiSldNav.next {
        background-size: 13px auto;
        background-position: 50% -29px;
        right: 0;
    }

    body .bannerWrap .owl-carousel .owl-controls,
    body .articalBlock .owl-carousel .owl-controls {
        top: 40%;
        transform: translateY(-40%);
        -webkit-transform: translateY(-40%);
        -moz-transform: translateY(-40%);
        -ms-transform: translateY(-40%);
        -o-transform: translateY(-40%);
    }

    body .bannerWrap .owl-carousel .owl-controls div.owl-nav .owl-prev,
    body .articalBlock .owl-carousel .owl-controls div.owl-nav .owl-prev {
        left: 0;
    }

    body .bannerWrap .owl-carousel .owl-controls div.owl-nav .owl-next,
    body .articalBlock .owl-carousel .owl-controls div.owl-nav .owl-next {
        right: 0;
    }

    .socialShare ul li a,
    .socialShare ul li a.pinterest {
        width: 38px;
        height: auto;
        padding: 0 8px;
        font-size: 24px;
        line-height: 30px;
    }

    .in-story-slideshow {
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .in-story-slideshow .top,
    .in-story-slideshow .bottom .slide-nav-wrapper,
    .in-story-slideshow .bottom .slide,
    .in-story-slideshow .bottom .slide figure,
    .in-story-slideshow .bottom .slide .content {
        width: 100%;
        border: none;
    }

    .top-arrow,
    .instory-slide-toggle {
        display: none;
    }

    .owl-carousel.owl-loaded {
        height: auto !important;
    }

    .slide-nav-wrapper {
        display: none;
    }

    .in-story-slideshow .bottom .slide .content {
        padding-left: 0;
        padding-top: 10px;
    }

    .in-story-slideshow .bottom .slide .content h3 {
        font-family: "savoybold", sans-serif;
        font-size: 24px;
        line-height: 26px;
        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .in-story-slideshow .bottom .slide .content .mCSB_inside>.mCSB_container {
        margin-right: 0;
    }

    .carousel .owl-controls,
    .owl-controls {
        top: 32%;
    }

    .fullslide .in-story-slideshow .bottom .slide .content span:before {
        content: "";
        margin: 0;
    }

    .in-story-slideshow .bottom .slide .content .slide-content p {
        display: none;
    }

    .in-story-slideshow .bottom .slide .content .slide-content p:first-child {
        display: block;
    }

    .owl-carousel .owl-controls .owl-nav .owl-prev {
        left: 0px;
    }

    .owl-carousel .owl-controls .owl-nav .owl-next {
        right: 0px;
    }

    .fullslide .in-story-slideshow .bottom .slide .content {
        margin-top: 15px;
    }

    .fullslide .in-story-slideshow .bottom .slide .content h3 {
        float: none;
    }

    .instory-slideshow .owl-controls {
        display: none;
    }

    .in-story-slideshow.full-with-slider .bottom .slide .content {
        margin-top: 10px;
    }

    /* Start New Home Page */
    .single-grid-block .leadrebord-ad img,
    .eight-grid-block .mpuAd img {
        height: 50px;
    }

    .leadrebord-ad {
        padding: 15px 0;
    }

    .dark-slider-nav .lSAction>a {
        width: 46px;
        height: 70px;
    }

    S

    /* Slideshow Section */
    .in-story-slideshow .top,
    .in-story-slideshow .bottom .slide-nav-wrapper,
    .in-story-slideshow .bottom .slide,
    .in-story-slideshow .bottom .slide figure,
    .in-story-slideshow .bottom .slide .content {
        width: 100%;
    }

    .in-story-slideshow .bottom .slide .content .scoll-cont {
        max-height: 100%;
    }

    /***********************************************************/
    /* Start New Home Page */
    .for-Desktop,
    .subscribe-instory-image.desktop {
        /* display: none !important; */
    }

    .for-Mobile,
    .subscribe-instory-image.mobile {
        display: inline-block !important;
    }

    .dark-slider-nav .lSAction>.lSPrev {
        background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-prev-mob.png) center center no-repeat rgba(0, 0, 0, 0);
        left: 0;
    }

    .dark-slider-nav .lSAction>.lSPrev:hover {
        background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-prev-mob.png) center center no-repeat rgba(0, 0, 0, .2);
    }

    .dark-slider-nav .lSAction>.lSNext {
        background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-next-mob.png) center center no-repeat rgba(0, 0, 0, 0);
        right: 0;
    }

    .dark-slider-nav .lSAction>.lSNext:hover {
        background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-next-mob.png) center center no-repeat rgba(0, 0, 0, .2);
    }

}

#innerbanner {
    text-align: center;
    background-size: cover;
    background-position: center center;
    margin-bottom: 15px;
}

#innerbanner .inner-pg-title {
    font-family: "savoybold", sans-serif;
    font-weight: 300;
    font-size: 4.5em;
    color: #fff;
    text-transform: uppercase;
}

.socialShare ul li a {
    text-decoration: none;
}

.story-cover-full iframe {
    width: 100%;
}

.story-cover-column iframe {
    width: 100%;
}

.story-cover-full img {
    width: 100%;
    height: auto;
    z-index: 10;
    position: relative;
}

.story-cover-column img {
    width: 100%;
    height: auto;
}

/*right slide*/
@media only screen and (min-width: 768px) and (max-width: 850px) {
    .tag-slider {
        width: 50%;
        float: left;
        margin-bottom: 0;
        padding: 0 15px 0 0;
    }

    .right-sidebar .tag-slider {
        width: 100%;
    }
}

.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0
}

.right-sidebar {
    width: 300px;
    /* position: absolute; */
    /*top: 0;*/
    right: 0;
    z-index: 100;
    background: #fff;
}

.right-sidebar .tag-slider {
    position: relative;
    border-bottom: none;
    text-align: center;
    font-family: "Lato", sans-serif;
    margin-bottom: 5px;
    font-size: 14px;
}

.right-sidebar .tag-slider h3 {
    font-size: 14px;
    line-height: 24px;
    color: #818181;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.right-sidebar .tag-slider .tagSlider-inner {
    background: #e9e9e9;
    height: 90px;
    padding: 8px 26px;
    overflow: hidden;
    position: relative;
}

.right-sidebar .tag-slider ul:before,
.right-sidebar .tag-slider ul:after {
    content: "";
    font-size: 0;
    line-height: 0;
    clear: both;
}

.right-sidebar .tag-slider li {
    text-align: left;
    display: table !important;
    opacity: 0;
}

.right-sidebar .tag-slider li a {
    text-decoration: none;
    color: black;
    position: relative;
    top: 27%;
}

.right-sidebar .tag-slider li a:nth-child(2) {
    vertical-align: middle;
    width: calc(100% - 85px);
    float: none;
    display: table-cell;
}

.right-sidebar .tag-slider li img {
    margin-right: 10px;
    width: 75px;
    height: 75px;
}

.right-sidebar .tag-slider .umay-like_nav {
    display: block;
    width: 14px;
    height: 26px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.right-sidebar .tag-slider .umay-like_nav.prev {
    left: 5px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-prev.png) center no-repeat;
}

.right-sidebar .tag-slider .umay-like_nav.next {
    right: 5px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-next.png) center no-repeat;
}


.coverstory .lSAction>a {
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    opacity: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.coverstory .lSAction>.lSPrev {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-prev.png) center center no-repeat rgba(0, 0, 0, 0);
    left: 0;
}

.coverstory .lSAction>.lSPrev:hover {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-prev.png) center center no-repeat rgba(0, 0, 0, 0.2);
}

.coverstory .lSAction>.lSNext {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-next.png) center center no-repeat rgba(0, 0, 0, 0);
    right: 0;
}

.coverstory .lSAction>.lSNext:hover {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-next.png) center center no-repeat rgba(0, 0, 0, 0.2);
}

.owl1-cols {
    padding: 5%;
}

#owl1 .owl-controls .owl-nav .owl-next,
.bigSlider .owl-controls .owl-nav .owl-next,
#owl3 .owl-controls .owl-nav .owl-next,
#owl4 .owl-controls .owl-nav .owl-next,
#owl5 .owl-controls .owl-nav .owl-next,
#owl7 .owl-controls .owl-nav .owl-next,
#owl8 .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    opacity: 0.5;
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-next.png") center center no-repeat;
    right: 0;
    color: transparent;
}

#owl1 .owl-controls .owl-nav .owl-prev,
.bigSlider .owl-controls .owl-nav .owl-prev,
#owl3 .owl-controls .owl-nav .owl-prev,
#owl4 .owl-controls .owl-nav .owl-prev,
#owl5 .owl-controls .owl-nav .owl-prev,
#owl7 .owl-controls .owl-nav .owl-prev,
#owl8 .owl-controls .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    opacity: 0.5;
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/home-slide-nav-prev.png") center center no-repeat;
    right: 0;
    color: transparent;
}

#owl2-wrap {
    position: relative;
}

.bigSlider .item img {
    display: block;
    width: 100%;
    height: auto;
}

.bigSlider .item a,
#vsrollSidebar li a {
    display: block;
    line-height: 1.2;
    font-family: "savoybold", sans-serif;
    font-size: 19px;
    border: 0
}

.caption {
    position: absolute;
    bottom: 0%;
    left: 0px;
    width: 100%;
    display: block;
    color: #fff;
    padding: 10px;
    font-size: 2em;
    letter-spacing: 0.1em;
    line-height: 1.2;
    opacity: 1;

    position: absolute;
    left: 0;
    width: 100%;
    padding: 200px 20px 20px;
    text-align: center;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, .5)), color-stop(100%, rgba(0, 0, 0, .72)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%)
}

.animate-me {
    opacity: 1;
    -webkit-transition: opacity 1500ms linear;
    -moz-transition: opacity 1500ms linear;
    -o-transition: opacity 1500ms linear;
    -ms-transition: opacity 1500ms linear;
    transition: opacity 1500ms linear;
}

.caption5 {

    position: absolute;
    bottom: 0%;
    width: 80%;

    display: block;
    color: #fff;
    padding: 10px;
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    opacity: 1;
    position: absolute;
    padding: 200px 20px 20px;
    text-align: center;
}

/* owl inner content */
.bigSlider.owl-carousel .desc,
.bigSlider .desc,
#vsrollSidebar .desc,
#videoSliderMain .desc {
    width: 100%;
    padding-top: 0;
    padding-left: 20px;
    text-align: center;
    /*background: rgba(255, 255, 255, 0.62) !important;*/
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 3.2% !important;
    padding: 3%;
    box-sizing: border-box;
    position: absolute;
    /* background: rgba(255, 255, 255, 0.62) !important; */
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0% !important;
    padding: 22px 20px;
    position: absolute;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, .5)), color-stop(100%, rgba(0, 0, 0, .72)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
}

#owl5.owl-carousel .owl-item img {
    width: 100%;
    height: 100%;
}

#owl5.desc .desc-wrap {
    max-width: 1070px;
    margin: 0 auto
}

.owl-carousel .desc .tag {
    display: block;
    font-family: 'savoybold', sans-serif;
    font-size: 0.8125em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.owl-carousel .desc .tag a,
#vsrollSidebar li a {
    display: inline-block;
    font-family: 'savoybold', sans-serif;
    font-size: 14px;
    line-height: 14px;
    /* 
    border-bottom: 2px solid #a78048; */
    text-transform: uppercase;
    cursor: pointer;
    /*color: #999999;*/
    /*padding-bottom: 0px;*/
    text-decoration: none;
}

/*.owl-carousel .desc .tag a:hover {
    color: #a78048;
    border-bottom: 2px solid #fff
}*/
.bigSlider.owl-carousel .desc h5 {
    font-size: 16px;
    line-height: 23px;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'savoybold', sans-serif;
}

.bigSlider.owl-carousel .desc h5 a {
    color: #fff;
    text-decoration: none;
}

#owl5 .desc h5 a {
    color: #fff;
    text-shadow: 2px 2px 3px #000;
    font-weight: 200;
}

/*.owl-carousel .desc h5 a:hover {
    color: #a78048
}*/

/* owl caraousal 8 */


#owl8 .desc .tag a {
    border-bottom: 0;
}

#owl8 .desc h5 {
    font-size: 23px;
    line-height: 23px;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'savoybold', sans-serif;
}

#owl8 .desc h5 a {
    color: #fff;
    text-decoration: none;
    text-shadow: 2px 2px 3px #000;
    font-weight: 200;
    font-size: 32px;
    line-height: 38px;
}

#owl8 {
    background: rgba(0, 0, 0, 0.9);
}

#owl5 .desc h5 a {
    font-family: "savoybold", sans-serif;
    line-height: initial;
    letter-spacing: initial;
    font-size: 26px;
    line-height: 33px;
}

.vscrollwrap {
    float: left;
    height: 600px;
    ;
    overflow: auto;
}

@media only screen and (max-width: 767px) {
    .story article .in-story-slideshow img {
        max-width: 100%;
        height: auto;
    }
}

/* Tejas */
.mobile-fixed-social-sharebar {
    width: 100%;
    position: fixed;
    z-index: 100;
    left: 0;
    bottom: 0;
    display: none;
}

.mobile-fixed-social-sharebar ul {
    width: 100%;
    float: left;
}

.mobile-fixed-social-sharebar ul li {
    width: 20%;
    float: left;
}

.mobile-fixed-social-sharebar ul li a {
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 38px;
}

.mobile-fixed-social-sharebar .whatsapp-icon {
    display: block;
}

.social-icon a {
    color: #fff;
    text-decoration: none;
    line-height: 36px;
    text-align: center;
    font-size: 19px;
    width: 34px;
    height: 34px;
    margin-right: 0;
    float: left;
}

.social-icon a.facebookShare {
    background: #3A589B;
}

.social-icon a.twitterShare {
    background: #588DCA;
}

.social-icon a.pinterestShare {
    background: #CB2129;
}

.social-icon a.mailShare {
    background: #494949;
}

.social-icon a.whatsappShare {
    background: #25A918;
}

.socialbtnCont {
    float: left;
}

.social-share {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    width: 43px;
    height: 37px !important;
    margin-bottom: 0 !important;
    line-height: 37px;
}

.socialbtnCont {
    display: block;
    width: 41px;
    height: 37px;
    float: left;
    margin-right: 2px;
    text-align: center;
    line-height: 37px;
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 10;
    transition: ease-in-out 300ms;
    -webkit-transition: ease-in-out 300ms;
    -moz-transition: ease-in-out 300ms;
    -ms-transition: ease-in-out 300ms;
    -o-transition: ease-in-out 300ms;
    border: 1px solid #dfdfdf;
    z-index: 0
}

.socialbtnCont:hover {
    background-position: 50% -40px !important;
}

.social_icon_wrapper {
    overflow: hidden;
    transition: ease-in-out 1500ms;
    -webkit-transition: ease-in-out 1500ms;
    -moz-transition: ease-in-out 1500ms;
    -ms-transition: ease-in-out 1500ms;
    -o-transition: ease-in-out 1500ms;
    position: absolute;
    width: 0;
    left: 36px;
    top: 0;
    height: 36px;
}

.social_icon_wrapper a {
    display: block;
    width: 41px;
    height: 37px;
    float: left;
    margin-right: 2px;
    text-align: center;
    line-height: 37px;
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 10;
    transform: translateX(-220px);
    -webkit-transform: translateX(-220px);
    -moz-transform: translateX(-220px);
    -ms-transform: translateX(-220px);
    -o-transform: translateX(-220px);
    transition: ease-in-out 600ms;
    -webkit-transition: ease-in-out 600ms;
    -moz-transition: ease-in-out 600ms;
    -ms-transition: ease-in-out 600ms;
    -o-transition: ease-in-out 600ms;
}

.social-share:hover {
    width: auto;
    height: auto
}

.social-share:hover .social_icon_wrapper {
    transition: ease-in-out 600ms;
    -webkit-transition: ease-in-out 600ms;
    -moz-transition: ease-in-out 600ms;
    -ms-transition: ease-in-out 600ms;
    -o-transition: ease-in-out 600ms;
    width: 200px;
}

.social-share:hover .social_icon_wrapper a {
    transform: translateX(0);
}

.bigSlider.owl-carousel .desc h2 a,
#vsrollSidebar .desc h5 a {
    font-family: "savoybold", sans-serif !important;
    /*font-size: 27px !important;*/
    font-size: 43px;
    line-height: 60px;
    color: #fff;
    font-weight: 200;
    text-decoration: none;
    line-height: 1.2 !important;
}

#owl5 .desc,
#owl4 .desc {
    margin-bottom: 1.7%;
    width: 100%;
    /* background: rgba(255, 255, 255, 0.62)!important; */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, .5)), color-stop(100%, rgba(0, 0, 0, .72)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .72) 100%);
}

#staticImage {
    overflow: hidden;
    width: 46%;
    margin-left: 2%;
    margin-right: 2%;
}

#vsrollSidebar .vscrolldiv>div {
    position: relative;
    margin-bottom: 4%;
}

#vsrollSidebar {
    overflow-x: hidden;
    float: left;
    width: 48%;
}

#vsrollSidebar li a {
    margin-bottom: 8px;
    border-bottom: 0;
}

#vsrollSidebar .desc h5 a {
    display: block;
    word-wrap: break-word;
    font-size: 26px;
    line-height: 34px;
}

#videoSliderMain {
    overflow: hidden;
    width: 100% !important;
}

#owl8 img {
    height: auto !important
}

.videoIcon {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/playVid.png) no-repeat center/cover;
    z-index: 111111;
    position: absolute;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}

.bigSlider .desc h2 a {
    color: #fff !important;
    text-shadow: 2px 2px 3px #000;
    font-weight: 200;
}

.bigSlider .desc h2 a:hover,
#owl8 .desc h5 a:hover,
#owl5 .desc h5 a:hover {
    color: #999999 !important;
}

.desc .tag a {
    border-bottom: 0 !important
}

.mobileSocialShare {
    display: none
}

@media only screen and (max-width: 1070px) {

    #wrapper header {
        /* -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out; 
        transition: all 0.5s ease-in-out; */
        background: #fff;
        z-index: 33335;
    }

    .home-slider.home-slider-activated.padding-12-5-gray {
        min-height: inherit;
    }

    .bigSlider.owl-carousel .desc {
        width: 100% !important;
        padding: 18px 16px !important;
    }

    #owl5 .desc,
    #owl4 .desc {
        width: 87% !important;
    }

    .bigSlider.owl-carousel .desc h2 a {
        font-size: 21px !important
    }

    .owl-controls .owl-nav .owl-next,
    .owl-controls .owl-nav .owl-prev {
        margin-top: initial !important
    }

    #vsrollSidebar .desc h5 a {
        font-size: 15px
    }

    #owl3 img {
        height: auto !important;
    }
}


#owl7.owl-carousel .desc h5 a {
    color: #fff;
    font-weight: 200;
    text-shadow: 2px 2px 3px #000;
    font-size: 30px;
    line-height: 34px;
}

.collectionSearch .select-box {
    width: 48% !important;
    margin: 0 1% !important;
    box-sizing: border-box;
}

.collectionSearch {
    width: 90%;
    float: left;
    margin: 0 5%;
}

@media only screen and (max-width: 640px) {

    .bigSlider .item a,
    #vsrollSidebar li a {
        font-size: 13px !important;
        line-height: initial !important;
    }

    .bigSlider .desc {
        width: 100% !important;
        padding: 12px 10px !important
    }

    .bigSlider.owl-carousel .desc,
    .bigSlider .desc,
    #vsrollSidebar .desc,
    #videoSliderMain .desc {
        bottom: 0% !important
    }

    #owl5 .desc,
    #owl4 .desc {
        margin-bottom: 0 !important;
        bottom: 5% !important;
    }

    .bigSlider .desc h2 a {
        font-size: 14px !important
    }

    .owl-carousel .desc .tag {
        margin-bottom: 8px;
    }

    #vsrollSidebar .desc h5 a {
        font-size: 12px
    }

    .videoIcon {
        width: 35px;
        height: 35px
    }

    .coverstory .fullwdt-slider-block article .desc h2,
    .inner-coverstory .fullwdt-slider-block article .desc h2,
    .coverstory .fullwdt-slider-block article .desc .tag,
    .inner-coverstory .fullwdt-slider-block article .desc .tag {
        margin-bottom: 8px
    }

    /*  .coverstory .subscribe .subscribe-details .innerwrap p, .inner-coverstory .subscribe .subscribe-details .innerwrap p {
        font-size: 13px;
        line-height: initial;
        margin-top: 30px 
    }
    
    .coverstory .subscribe .vertical-img, .inner-coverstory .subscribe .vertical-img,.coverstory .subscribe .subscribe-details, .inner-coverstory .subscribe .subscribe-details{ width: 50% }
    .coverstory .subscribe .subscribe-details .innerwrap h4, .inner-coverstory .subscribe .subscribe-details .innerwrap h4{font-size: 22px;}
    .coverstory .subscribe .subscribe-details .innerwrap a, .inner-coverstory .subscribe .subscribe-details .innerwrap a{font-size: 16px;    margin-top: 20px;}
    .coverstory .subscribe .subscribe-details .innerwrap, .inner-coverstory .subscribe .subscribe-details .innerwrap{ padding-top:0;   padding: 20px;} */
    .subscribe.squareFeatureMobile {
        height: 330px !important;
    }

    /* .coverstory .subscribe .vertical-img, .inner-coverstory .subscribe .vertical-img,.coverstory .subscribe .subscribe-details, .inner-coverstory .subscribe .subscribe-details{ 
    position: absolute;
    top: 72px;
    width: 120px;
    left: 30px;
}
    */
    .subscribe-details {
        width: 100% !important;
    }

    .coverstory .subscribe .vertical-img {
        position: absolute;
        top: 72px;
        width: 120px;
        left: 30px;
        float: left;
    }

    .coverstory .subscribe .subscribe-details .innerwrap {
        padding-top: 0;
        padding: 20px;
    }

    .coverstory .subscribe .subscribe-details .innerwrap h4 {
        font-size: 29px;
    }

    .coverstory .subscribe .subscribe-details .innerwrap p {
        /*width: 180px;*/
        float: right;
        font-size: 28px;
        margin-top: 15px;
        line-height: initial;
    }

    .coverstory .subscribe .subscribe-details .innerwrap a {
        width: 152px;
        /*display: table;*/
        margin: 0 auto;
        /*margin-top: 71px;*/
        /*float: left;*/
        /*position: absolute;*/
        /*margin-top: 220px;*/
        /*left: 0;
        right: 0;*/
        font-size: 16px;
    }

    .coverstory .fullwdt-slider-block,
    .inner-coverstory .fullwdt-slider-block {
        display: table
    }

    .coverstory .fullwdt-slider-block article,
    .inner-coverstory .fullwdt-slider-block article {
        display: table-cell;
        vertical-align: middle;
        margin: auto;
        float: none;
    }

    .mobileSocialShare {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000000;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        border: 0;
    }

    .mobileSocialShare .socialbtnCont {
        display: none
    }

    .mobileSocialShare .social_icon_wrapper {
        position: relative;
        width: auto;
        float: none;
        left: 0;
        z-index: 100000;
        display: table;
        margin: 0 auto;
        width: 100%;
    }

    .mobileSocialShare .social_icon_wrapper a {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        display: block;
        float: left;
        width: 20%;
        margin-right: 0;
    }

    .mobileSocialShare .nextb {
        width: 44px;
        height: 34px;
        float: right;
        margin-top: -11px;
        display: block;
        float: left;
        width: 16.65%;
        margin-right: 0;
    }

    .mobileSocialShare .nextb a {
        width: 100%;
        display: none;
    }

    .collectionSearch .select-box {
        width: 98% !important;
        margin-bottom: 10px !important;
    }

    .coverstory .form-box .select-box select,
    .inner-coverstory .form-box .select-box select {
        height: 40px;
        font: 400 17px/39px "Lato", sans-serif;
    }

    .coverstory .form-box .select-box:before,
    .inner-coverstory .form-box .select-box:before {
        line-height: 42px
    }

    #innerbanner .inner-pg-title {
        font-size: 1.2em !important;
    }

    #innerbanner .top_small_banner {
        max-height: 45px;
        object-fit: contain;
        object-position: center;
        margin: 12px 0;
    }

    .cnt-search input[type=search] {
        width: 76%;
        height: 38px;
        font: 400 12px/38px Lato, sans-serif;
    }

    .cnt-search input[type=submit] {
        width: 24%;
        height: 38px;
        font: 400 12px/38px Lato, sans-serif;
    }



}



@media only screen and (min-width: 769px) {
    .subscribeUnit .vertical-img .img-block {
        padding-bottom: 0 !important;
        display: table;
        height: auto;
    }
}

@media only screen and (max-width: 460px) {
    font-size: 1.5em !important;
}

@media only screen and (max-width: 420px) {

    .coverstory .subscribe .subscribe-details .innerwrap p {
        font-size: 25px;
    }

    .coverstory .subscribe .vertical-img {
        width: 110px;
    }

    /*.coverstory .subscribe .subscribe-details .innerwrap a {
        margin-top: 210px;
    }*/

    .subscribe.squareFeatureMobile {
        height: 307px !important;
    }

}

.signup-block input[type=email] {
    margin-right: 0;
    width: 70%;
    float: left;
    margin-right: 0 !important
}

.vscrolldiv {
    background: #E5E5E4;
}

#sectionCarouselWithSidebar {
    padding: 2% 0;
    float: left;
    width: 100%
}

#staticImage .tag a {
    display: inline-block;
    font-family: 'savoybold', sans-serif;
    font-size: 14px;
    line-height: 14px;
    /* border-bottom: 2px solid #a78048; */
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
    padding-bottom: 5px;
    text-decoration: none;
}

#staticImage a img,
#vsrollSidebar a img {
    width: 100%
}

#staticImage .desc {
    width: 100%;
}

.desc .tag a:hover {
    color: #fff
}

#staticImage h5 a {
    font-family: "savoybold", sans-serif !important;
    font-size: 36px !important;
    color: #fff;
    font-weight: 200;
    /*text-transform: uppercase;*/
    text-decoration: none;
    line-height: 44px !important;
}

/* ends here Tejas */

/* prash css */
.top-subscribe-label {
    width: 100% !important;
    padding-left: 0 !important;
}

.fixed-top-subscribe-label {
    width: 100% !important;
    padding-left: 0px !important;
}

/*Author Changes Single Page*/
.authorDetail {
    border-left: 1px solid #676464;
    border-right: 1px solid #676464;
    padding: 0 30px 0 35px;
}

.authorImg {
    float: left;
    background: #f4f4f4;

    width: 40px;
    height: 40px;
}

.authorName {
    float: left;
    margin: 14px 10px 0 10px;
    color: #00abf9;
}

.articleDate {
    line-height: 40px;
    padding-left: 15px;
    font-weight: 600;
}

/*prash css */

#owl7.owl-carousel .desc,
.bigSlider .desc {}

/*.story iframe{ width: 100% }*/


.cityresults h1 {
    text-align: center;
    font-family: "Lato", sans-serif;
    padding: 10px 0px;
}

#owl7 .owl-item .owl1-cols {
    padding: 5% 0 0 0;
}

.sponseredMeta {
    background: #999999;
    color: #fff !important;
    border-left: 0 !important;
    border-right: 0px !important;
    margin-right: -1px;
    float: right;

}

.squareFeatureMobile img:hover {
    opacity: 0.8
}




/* style-ext.css */
/* Start Font Awesome */

/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: 'FontAwesome';
    src: url('https://www.architecturaldigest.in/wp-content/themes/fonts/fontawesome-webfont.eot?v=4.3.0');
    src: url('https://www.architecturaldigest.in/wp-content/themes/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('https://www.architecturaldigest.in/wp-content/themes/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('https://www.architecturaldigest.in/wp-content/themes/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('https://www.architecturaldigest.in/wp-content/themes/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('https://www.architecturaldigest.in/wp-content/themes/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0)
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-genderless:before,
.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calcusavoyboldr:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}



.socialShare {
    margin-top: 0;
    margin-bottom: 30px;
    overflow: hidden;
    font-family: Lato, VerlagBook, VerlagLight, Arial, Helvetica, sans-serif
}

.socialShare ul li {
    float: left;
    margin-right: 11px
}

.socialShare ul li a {
    width: 44px;
    height: 44px;
    font-size: 25px;
    color: #fff;
    line-height: 44px;
    text-align: center;
    display: block
}

.socialShare ul li a.pinterest {
    font-size: 32px
}

.socialShare ul li span {
    border-right: 1px solid #676464;
    color: #494849;
    display: block;
    font-size: 16px;
    padding-right: 10px;
    text-align: center;
    text-transform: uppercase
}

.socialShare ul li span strong {
    display: block;
    font-size: 33px;
    line-height: 44px;
    font-weight: 400
}

.fb {
    background: #3c5b9b
}

.twt {
    background: #5a8ec8
}

.pinterest {
    background: #c9242e
}

.mail {
    background: #494849
}

.mobile-fixed-social-sharebar {
    width: 100%;
    position: fixed;
    z-index: 100;
    left: 0;
    bottom: 0;
    display: none;
}

.mobile-fixed-social-sharebar ul {
    width: 100%;
    float: left;
}

.mobile-fixed-social-sharebar ul li {
    width: 20%;
    float: left;
}

.mobile-fixed-social-sharebar ul li a {
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 38px;
}

.mobile-fixed-social-sharebar .whatsapp-icon {
    display: block;
}


.vertical-social-blk li {
    font-size: 32px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    background-color: chocolate;
    margin-bottom: 10px;
    vertical-align: middle;
}

.vertical-social-blk li a {
    width: 44px;
    height: 44px;
    padding-bottom: 0px;
    padding-top: 0px;
    line-height: 1.4;
    color: #FFF;
}



i.subscribe-btn .subscribe-label,
.fly-menu .fly-menu-block .subscribe-blk .subscribe-btn .subscribe-label {
    position: absolute;
    width: 100% !important;
    bottom: 0px;
    padding: 6px 5px;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 0.8125em;
    background: #999999 none repeat scroll 0% 0%;
    color: #FFF;
}

.small {
    width: 87px;
    height: 70px;
    margin-right: 20px;
}

.subscribe-btn.small {
    width: 96px;
}



/* custom-kk.css */

.ntnbb {
    border-top: none !important;
    border-bottom: none !important;
}

.socialShare-top .facebook,
.socialShare-top .twitter,
.socialShare-top .pinterest,
.socialShare-top .mail {
    color: #fff !important
}

.socialShare-top .facebook:hover,
.socialShare-top .twitter:hover,
.socialShare-top .pinterest:hover,
.socialShare-top .mail:hover {
    color: #CECACA !important;
}

.story article .vertical-social-blk {
    height: 280px !important;
}

.nextb {
    position: relative;
    border-top: 2px solid #B1B9BB !important;
    padding-top: 9px !important;
    background-color: transparent !important;
}

.nextb a {
    background-color: #999999;
    color: #fff;
    font-size: 13px !important;
    line-height: 30px !important;
}

li.nextb a:after {
    font-family: FontAwesome;
    content: "\f107";
    display: block;
    width: auto;
    height: auto;
    font-size: 26px;
    line-height: 0px;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%)
}

.nextb a:after {
    font-family: FontAwesome;
    content: "\f107";
    display: block;
    width: auto;
    height: auto;
    font-size: 26px;
    line-height: 8px;
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%)
}


/* home page */
.home-owl1-wrap {
    max-height: 100%;
}



.fixed {
    left: 15px !important;
    top: 40px !important;
    width: 44px !important;
    position: fixed;

}


/* dpak */

.cnt-search {
    border-bottom: 1px solid #e5e5e5;
    padding: 35px 25px;
}

.cnt-search form {
    margin-bottom: 40px;
    float: left;
    width: 100%;
}


footer.copyright {
    display: none;
    border-top: 1px solid #E5E5E5;
    margin-top: 30px;
    text-align: center;
}

.endfoot {
    padding: 30px;
}

.story-cover-full iframe {
    max-width: 100% !important;
}

.story-cover-column iframe {
    max-width: 100% !important;
}

.subscribe-label a {
    color: #fff;
    text-decoration: none;
}



/* custom-sp.css */
/**** Shefali -- Oct 18th, 2015 ****/

/* Single Story :: Title */

.post-header h2 {
    width: 72%;
}

@media (min-width: 960px) and (max-width: 1120px) {
    .post-header h2 {
        width: 100%;
    }

    .post-header-inner h1 {
        width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 960px) {
    .post-header h2 {
        width: 100%;
    }

    .post-header-inner h1 {
        width: 100%;
    }

}

/* Single Story :: Deck */

.post-header .post-excerpt {
    line-height: 1.2em;
}


/* Single Story :: Top Social Buttons Alignment */

.socialShare ul li a.pinterest {
    line-height: 44px;
}

@media only screen and (max-width: 767px) {

    .socialShare ul li a,
    .socialShare ul li a.pinterest {
        width: 44px;
        padding: 0px;
    }

}


/* Mobile Header :: Remove subscribe button from header on mobile */

@media (min-width: 320px) and (max-width: 640px) {
    .subscribe-btn.small {
        display: none;
    }

}


/* custom-dpac.css */

/* Newsletter signup in the sidebar */


.validate {
    border: 0px solid #c8c8c8;
    border-radius: 0;
    font: 400 16px/28px "Roboto", sans-serif;
    height: 28px;
    position: relative;
}

.validate input {
    border: none;
    display: block;
    font: 400 13px/26px "Roboto", sans-serif;
    padding: 0 20px;
    text-transform: none;
    width: 85%;
    height: 26px;
    -webkit-appearance: none;
    border: 1px solid #ccc;
}

.validate input[type=submit] {
    background: #999999;
    border: none;
    border-radius: 0;
    color: #fff;
    line-height: 27px;
    padding: 0 10px;
    position: absolute;
    right: -1px;
    text-transform: uppercase;
    top: -1px;
    bottom: auto;
    transition: all 200ms ease-in-out 0s;
    width: auto;
    height: 27px;
    cursor: pointer;
    -webkit-appearance: none;
}

.vogue-subscribe-form {
    width: 300px;
}

.cnt-subscribe-form {
    margin: 5px 0 0 19px;
}

.newsletter-msg {
    font-family: inherit;
    padding: 5px;
    color: #999999;
    font-size: 12px;
}

.newsletter-msg-hamburger {
    font-family: inherit;
    padding: 5px;
    color: #999999;
    font-size: 12px;
}

.newsletter-msg-hamburger a,
.newsletter-msg-feature-unit a {
    color: #fff;
}

.newsletter-msg-feature-unit {
    clear: both;
    color: #999999;
    font-family: inherit;
    font-size: 15px;
    margin: 0 auto;
    padding: 16px 190px 5px 134px;
}

#email-input {
    height: 33px;
    background-color: #222;
    border: 0;
    color: #fff;
    width: 61%;
    padding: 0 5px;
}

#email-input-featured-unit {
    width: 75%;
    box-sizing: border-box;
}

.autocomplete {
    z-index: 2147483647 !important;
}


/* custom-vk.css */
.socialIconSet {
    position: absolute;
    right: 94%;
    top: 135px;
    margin-right: 80px;
}

.socialIconSet ul li,
.socialIconSet ul li {
    margin-bottom: 8px;
}

.socialIconSet ul li a,
.socialIconSet ul li a {
    font-family: FontAwesome;
    display: block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    font-size: 26px;
}

.socialIconSet ul li a.line,
.midContent article .socialIconSet ul li a.line:hover,
.socialIconSet ul li a.line,
.socialIconSet ul li a.line:hover {
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    color: #686465;
    background: #686465;

}

.socialIconSet ul li.next,
.socialIconSet ul li.next {
    background: #9d7949;
}

.socialIconSet ul li.next a,
.socialIconSet ul li.next a {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 30px;
    text-transform: uppercase;
    position: relative;
}

.socialIconSet ul li.next a:after,
.socialIconSet ul li.next a:after {
    font-family: 'FontAwesome';
    content: "\f107";
    display: block;
    width: auto;
    height: auto;
    font-size: 26px;
    line-height: 8px;
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.socialIconSet ul li a:hover,
.socialIconSet ul li a:hover {
    opacity: 1;
    color: #fff;
}

.socialIconSet ul li a:hover {
    opacity: 0.8;
}


.socialShare {
    margin-bottom: 20px;
    overflow: hidden;
    font-family: 'Lato', 'VerlagBook', 'VerlagLight', Arial, Helvetica, sans-serif;
}

.socialShare ul li {
    float: left;
    margin-right: 11px
}

.socialShare ul li a {
    width: 44px;
    height: 44px;
    font-size: 25px;
    color: #fff;
    line-height: 44px;
    text-align: center;
    display: block
}

.socialShare ul li a.pinterest {
    font-size: 32px;
}

.socialShare ul li a:hover {
    opacity: .8
}

.socialShare ul li span {
    border-right: 1px solid #676464;
    color: #494849;
    display: block;
    font-size: 16px;
    padding-right: 10px;
    text-align: center;
    text-transform: uppercase;
}

.socialShare ul li span strong {
    display: block;
    font-size: 33px;
    line-height: 44px;
    font-weight: normal;
}

@media (min-width: 320px) and (max-width: 640px) {
    .socialShare {
        margin-bottom: 0;
    }

    .portfolio-contact-form .gform_wrapper input[type=text],
    .portfolio-contact-form .gform_wrapper textarea.medium {
        width: 98% !important;
    }
}



/* 404 page */
.404-block h4 {
    font-size: 35px;
}

@media only screen and (max-width : 1023px) {

    .404-block h4 {
        font-size: 30px;
    }
}

@media only screen and (max-width : 849px) {

    .404-block h4 {
        font-size: 25px;
    }

}



@media only screen and (max-width : 650px) {


    .404-block h4 {
        font-size: 25px;
    }

}





.topadbnr a img {
    max-width: 100%;
    width: 100%;
}

@media only screen and (max-width : 768px) {

    body.single .topadbnr {
        top: 70px;
        min-height: 50px;
    }

}

@media only screen and (max-width : 650px) {

    .topadbnr {
        padding-top: 6px;
        padding-bottom: 6px;
        min-height: 50px;
    }

}

@media only screen and (max-width : 480px) {

    body.single .topadbnr {
        top: 62px;
        min-height: 50px;
    }

    .main-nav-scrolled {
        height: 48px;
        padding: 0 !important;
    }

}

.topadbnr a {
    display: inline-block;
}

.topadbnr {
    /* 03:21 PM 22-04-2016 */
    padding: 2px 0;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    position: fixed;
    left: 0;
    width: 100%;
    min-height: 100px;
    overflow: hidden;
    z-index: 33334;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    /* 03:22 PM 22-04-2016 */
    /* top:71px; */
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}


/*margin on rslides used in you may also like */

.rslides.umay-like {
    margin: 5px 0;
}

.contestli li {
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 3px;
}

.wpcf7-form-control.wpcf7-submit {
    background: #999999 none repeat scroll 0 0 !important;
    border: 0 none !important;
    color: #fff !important;
    font-size: 15px !important;
    padding: 5px 15px !important;
}


.HsbcTable td,
.HsbcTable th {
    border: 1px solid;
    padding: 5px;
    font-family: "savoyregular";
}

.bullets {
    line-height: 22px;
    list-style: inside none disc;
}

#iAccept {
    margin-right: 10px;
}

sub,
sup {
    /* Specified in % so that the sup/sup is the
       right size relative to the surrounding text */
    font-size: 75%;

    /* Zero out the line-height so that it doesn't
       interfere with the positioning that follows */
    line-height: 0;

    /* Where the magic happens: makes all browsers position
       the sup/sup properly, relative to the surrounding text 
    position: relative; */

    /* Note that if you're using Eric Meyer's reset.css, this
       is already set and you can remove this rule */
    vertical-align: super;
}

sup {
    /* Move the superscripted text up 
    top: -0.5em; */
}

sub {
    /* Move the subscripted text down, but only
       half as far down as the superscript moved up */
    bottom: -0.25em;
}



/*twitter*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tweets_wrapper {
    /*width:100%;
    max-width: 100%; */
    display: table;
    margin: 0 auto;
    max-height: 626px;
    color: white;
}

.tweets_wrapper h1 {
    font-size: 30px;
    margin-bottom: 10px;
    padding: 10px;
    font-family: "Lato", sans-serif;
    margin-top: 15px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/tweet_icon.png) no-repeat right / 34px;
}

.instas_block {
    list-style: none;
    padding: 0;
    float: left;
    width: 100%;
}

.instas_block li {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding-left: 13px;
    margin-bottom: 21px;
    min-height: 153px;
}

.img_wrap {
    width: 100%;
    height: 118px;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 150px;
}

.short_desc {
    width: 100%;
    float: left;
    margin-top: 5px;
    margin-bottom: 5px;
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
    font-family: "Lato", sans-serif;
}

.main_content {
    /*max-width: 100%;*/
    margin: 0;
    padding: 0;
}

.rowtwitter {
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-4 {
    width: 33%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-6 {
    width: 50%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-8 {
    width: 66.66666667%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-12 {
    width: 100%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.page-header {
    border-bottom: 1px solid #ccc;
    border-bottom: solid 1px rgba(255, 255, 255, .2);
}

.tweetsInstasContainer {
    max-height: 540px
}

.tweets_img_wrap {
    max-width: 20%;
    float: left;
    padding-right: 3%;
    min-width: 58px;
}

.tweets_img_wrap img {
    width: 48px;
    height: 48px
}

.tweets_desc {
    width: 77%;
    float: left
}

.tweets_desc a {
    text-decoration: none;
    color: #A8A8A8;
}

.tweet_handle {
    float: left;
    width: 65%;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    font-family: "Lato", sans-serif;
    font-size: 14px;
}

.tweet_days {
    float: left;
    width: 35%;
    text-align: right;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    font-size: 13px;
}

.tweets_block li {
    width: 100%;
    min-height: initial;
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
    border-bottom: solid 1px rgba(255, 255, 255, .2);
    margin: 0;
}

.highlight {
    font-weight: 700
}

.tweets_short_title {
    width: 100%;
    float: left;
    font-family: "Lato", sans-serif;
}

.tweets_short_desc {
    margin-top: 10px;
    width: 100%;
    float: left;
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
    font-family: "Lato", sans-serif;
}

@media (max-width: 1024px) {

    .col-md-6,
    .col-md-8 {
        width: 100%;
    }

    .col-md-4 {
        width: 100% !important;
    }

    .tweets_wrapper .main_content .col-md-4 {
        height: 195px !important
    }

    .tweets_wrapper .middle h2 {
        margin-bottom: 12px !important;
        font-size: 36px !important;
    }

    .tweets_wrapper .middle .speak-fashion {
        font-size: 25px !important;
    }


}

.tweets_wrapper .middle {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
}

.tweets_wrapper .middle h2 {
    font-size: 46px;
    line-height: 48px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #FFF;
    text-align: center;
    font-family: "Lato", sans-serif;
}

.tweets_wrapper .middle .speak-fashion {
    font-size: 35px;
    line-height: 53px;
    text-align: left;
    word-break: break-all;
    text-align: center;
    font-family: "Lato", sans-serif;
}

.tweets_wrapper .main_content .col-md-8 {
    padding-bottom: 30px;
}

.tweets_wrapper .main_content .col-md-4:nth-child(2),
.tweets_wrapper .main_content .col-md-4:nth-child(3) {
    border-left: 1px solid rgba(204, 204, 204, 0.23);
    margin: 5px 0;
}


/* 10.11.2015 */

.midcontent article ol,
.midcontent article ul {
    overflow: hidden;
    padding-bottom: 30px
}

.midcontent article ol {
    padding-left: 26px;
    list-style: decimal
}

.midcontent article ol li {
    padding-left: 0
}

.midcontent article li {
    padding-left: 20px;
    position: relative
}

.midcontent article li:after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 16px;
    line-height: 26px;
    color: #999999;
    position: absolute;
    top: 0;
    left: 8px
}

.midcontent article ol li:after,
.midcontent article div.social-sharer-buttons-article-top li:after,
.midcontent article div.social-sharer-buttons-article-top.vertical-social-blk li:after {
    content: ""
}

.midcontent article div.social-sharer-buttons-article-top li,
.midcontent article div.social-sharer-buttons-article-top.vertical-social-blk li {
    padding-left: 0
}

body.single .story figure img {
    margin-top: 0;
}

body.single .story figure {
    /*float: left;*/
    margin-right: 10px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 650px) and (-webkit-min-device-pixel-ratio: 2) {

    .newsrow .row:nth-child(2) .three-cols:last-child {
        width: 100%;
        min-height: 50px !important;
        max-height: 50px !important;
        overflow: hidden;
    }

}

body.category {
    /*margin-top: 120px;*/
    margin-top: 102px;
}

@media only screen and (max-width: 767px) {
    body.category {
        margin-top: 58px;
    }
}

.desc .tag a {
    background: #999;
    color: #fff;
    padding: 6px 15px;
}

.post-body-meta {
    margin-top: 15px;
    margin-bottom: 7px;
    display: block;
    width: 100%;
}

@media (max-width: 960px) {
    .post-body-meta {
        margin-bottom: 0;
        margin-top: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        flex: 1;
        display: flex;
        align-items: center;
    }

    /* 06:01 PM 09-05-2016 */
    .single-portfolio .contact-map #map_canvas {
        width: 100% !important;
    }

    .portfolio-contact-form {
        width: 100% !important;
        margin-left: 0 !important;
    }

    /* 06:01 PM 09-05-2016 */

}

.post-body-meta>div:first-child {
    background-position: left;
    padding: 10px 16px 10px 55px;
}

.fashion-credit {
    float: left;
    padding: 10px 20px 10px 42px;
    color: #999999;
    font-size: 16px;
    min-height: 24px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/fashion_credit.png) no-repeat center left;
    background-size: 35px 35px;
}

.photo-credit {
    float: left;
    padding: 10px 16px 10px 55px;
    color: #999999;
    margin: 0;
    font-size: 16px;
    /*border-left: 1px solid #000; */
    min-height: 24px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/camera.png) no-repeat 16px center/27px;
}

.illustrator-credit {
    float: left;
    padding: 10px 20px 10px 42px;
    color: #999999;
    font-size: 16px;
    /*border-left: 1px solid #000;*/
    min-height: 24px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/pen.PNG) no-repeat 16px center/27px;
}

.post-body-meta {
    font-family: "savoyregular";
    font-size: 17px;
}

.post-body-meta>div:nth-child(1) {}

.post-body-meta>div:nth-child(2) {
    border-left: 1px solid #000;
}

.post-body-meta>div:nth-child(3) {
    border-left: 1px solid #000;
}


body.category.subMenu {
    margin-top: 150px;
}

.desktop-menu.inner_story_page #menu-top-menu {
    height: 115px
}

.desktop-menu.inner_story_page #menu-top-menu .submenu {
    float: left;
    position: absolute;
    left: -40%;
    right: -40%;
    background: #EDEDED;
    border-bottom: solid 1px #d3d3d3;
    border-top: solid 1px #d3d3d3;
}

.desktop-menu.inner_story_page #menu-top-menu>li.active {
    background: url('https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/triangle.png') no-repeat center bottom/22px;
}

.desktop-menu.inner_story_page #menu-top-menu>li.active>a,
.desktop-menu #menu-top-menu>li.active>a,
.desktop-menu.inner_story_page #menu-top-menu>li .submenu .active>a {
    color: #999999;
    font-weight: 700
}

.desktop-menu.inner_story_page #menu-top-menu>li a {
    padding: 14px 0;
    text-decoration: none;
    color: #000;
    font-weight: 300;

}

.main-nav-scrolled .desktop-menu.inner_story_page #menu-top-menu>li>a {
    padding: 26.5px 0;
    font-family: "Lato";
    font-weight: 700;
}

.desktop-menu.inner_story_page #menu-top-menu>li .submenu .active {
    color: #CE061E
}

.skip-to-end {
    float: right;
    text-decoration: none;
}

@media only screen and (min-width : 768px) {
    .story aside {
        position: fixed;
        top: 200px;
        z-index: 33333;
    }
}

@media only screen and (min-width : 1280px) {
    .story aside {
        right: calc((100% - 1280px)/2);
    }
}

.in-story-slideshow.show-thumb .withoutTextDesc {
    display: none;
}

body.author {
    padding-top: 72px;
}

.newsrow .row .img-block span.count {
    background-image: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/count-icon.png");
    background-position: center center;
    background-repeat: no-repeat;
    bottom: 3px;
    color: #fff;
    display: block;
    font-size: 12px;
    height: 43px;
    left: 0;
    line-height: 39px;
    padding: 0 8px 0 0px;
    position: absolute;
    text-align: center;
    width: 55px;
}

/*Related Stories*/
.relatedStoriesSlider h3 {
    margin-bottom: 0px;
}

@media only screen and (max-width : 767px) {

    /* CSS for Related Stories modification For Mobile Start */
    /*.relatedStoriesSlider { margin-bottom: 15px;}
    .relatedStoriesSlider .relatedStories .item .owl1-cols { clear: both; overflow: hidden; background: #f2f2f2;}
    .relatedStoriesSlider .relatedStories .item .owl1-cols > a {
        width: 70px;
        height: 70px;
        float: left;
        margin-right: 10px;
        margin-left: 20px;
    }
    .relatedStoriesSlider .relatedStories .item .owl1-cols > a img { margin-top: 0px; margin-bottom: 0px; margin-right: 10px;}
    .relatedStoriesSlider .relatedStories .item .owl1-cols .desc { line-height: 16px; margin-top: 8px; margin-right: 10px;}
    .relatedStoriesSlider .relatedStories .item .owl1-cols .desc a { font-size: 14px;}
    .relatedStories .owl-controls .owl-nav .owl-prev { top: 45% !important;} 
    .relatedStories .owl-controls .owl-nav .owl-next { top: 45% !important;}
    .relatedStoriesSlider h3 { margin-bottom: 5px;}
    .relatedStoriesSlider hr {display: none;} */
    /* CSS for Related Stories modification For Mobile End */
}


.relatedStories .owl-controls .owl-nav .owl-next,
.mostPopularCTA .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 30%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /*opacity: 0.5;*/
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-next.png") center center no-repeat;
    right: 0;
    color: transparent;
    right: -25px;
}

.relatedStories .owl-controls .owl-nav .owl-prev,
.mostPopularCTA .owl-controls .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 30%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /*opacity: 0.5;*/
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-prev.png") center center no-repeat;
    right: 0;
    color: transparent;
    left: -25px;
}

.relatedStories .desc a {
    color: #000;
    font-size: 16px;
}

.relatedStories .desc .sponsored {
    color: #FFF;
    background: #999999;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 14px;
    margin-left: 3px;
}

@media only screen and (min-width : 480px) {
    .relatedStories {
        padding: 0px 25px;
    }
}

@media only screen and (max-width : 480px) {
    .relatedStories .owl-controls .owl-nav .owl-next {
        right: 0;
    }

    .relatedStories .owl-controls .owl-nav .owl-prev {
        left: 0
    }
}

/*End Related Stories*/

.story .relatedStoriesSlider {
    margin-top: 10px;
    clear: both;
}

.story .nextbutton {
    margin-bottom: 20px;
}

.newsrow .col .postexcerpt a {
    font-weight: 700
}

.relatedStories {
    background: #F2F2F2;
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .story aside {
        position: relative !important;
        right: 10px !important;
        top: unset !important;
    }

    .right-sidebar {
        width: 100%;
    }

    .tag-slider {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {

    .story aside .related-articles {
        display: block;
    }

    .relatedStories .item .desc {
        height: 60px;
    }

    .relatedStories .item .desc a {
        display: block;
        height: 50px;
        overflow: hidden;
        position: relative;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .right-sidebar {
        width: 100%;
    }

    .tag-slider {
        width: 100%;
    }

    .relatedStoriesSlider hr {
        display: none;
    }

    hr.singleStorySeprator {
        display: none;
    }

    .story aside {
        position: relative !important;
        right: 0 !important;
        top: unset !important;
        margin-right: -10px;
        margin-left: -10px;
        width: calc(100% - -20px);
    }

    /*.cnt-subscribe-form {
        margin: 10px 0 0 0 !important;
    }*/

    .story aside .related-articles {
        margin: 10px 0 0 0;
    }

    .right-sidebar .tag-slider-video h3 {
        display: none;
    }

    .validate input {
        height: 27px;
    }

    .cnt-subscribe-form {
        margin-bottom: -10px !important;
    }
}


.port-ftr .social-share .social_icon_wrapper {
    z-index: 1000000;
}

.social-share.pright .social_icon_wrapper {
    left: initial;
    right: 1px;
}

.social-share.pright:hover .social_icon_wrapper {
    transition: ease-in-out 600ms;
    -webkit-transition: ease-in-out 600ms;
    -moz-transition: ease-in-out 600ms;
    -ms-transition: ease-in-out 600ms;
    -o-transition: ease-in-out 600ms;
}

.designer_profile_content .social_share_black .top-social-btn-blk a {
    background: #F6F6F6;
    border: 1px solid #E7E7E7;
}

.profile_details_wrap .p_designation {
    margin-bottom: 10px !important;
}

.profile_details_wrap .p_designation,
.profile_details_wrap .p_variants {
    margin-bottom: 15px;
}

/*******160505 01:02 PM******/
.portfolioSlideshow .content a.portfolioCallToAction {
    padding: 1px 19px !important;
    padding-bottom: 2px !important;
    display: inline-block !important;
    font-size: 15px !important;
    vertical-align: middle !important;
    line-height: 30px !important;
    padding-top: 0 !important;
    display: table !Important;

}

/* 05:21 PM 09-05-2016 */
.in-story-slideshow .bottom .slide .content {
    padding-top: 10px;
    padding-right: 5px;
}

.social-btn.col.three-cols {
    margin-bottom: 0;
    margin-right: 4px;
    width: 34px;
}

.single-portfolio .contact-map {
    float: left;
    background: #F3F4F4;
    margin-bottom: 12px;
    -webkit-box-shadow: inset 0px -10px 0px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0px -10px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: inset 0px -25px 0px 0px rgba(255, 255, 255, 1);
    padding-bottom: 25px;

    border-bottom: 1px solid #F2F2F2;
}

.single-portfolio .contact-map #map_canvas {
    width: 50%;
    height: 100%;
    float: left;
    min-height: 350px;
}

.portfolio-contact-form {
    width: 49%;
    float: left;
    margin-left: 1%;

}

.portfolio-contact-form .gform_wrapper {
    margin: 0 0;
}

.single-portfolio .single-story-block .in-story-slideshow .bottom .slide-nav-wrapper {
    width: 63%
}

.portfolio-contact-form .gform_wrapper h3.gform_title {
    display: none
}

.portfolio-contact-form .gform_wrapper form ul.left_label li {
    margin-bottom: 8px;
}

.portfolio-contact-form .gform_wrapper input[type=text] {
    padding: 3px 0;
    width: 74% !important;
    height: 1.5em;
}

.portfolio-contact-form .gform_wrapper textarea.medium {
    width: 74% !important;
    height: 6.375em;
}

.portfolio-contact-form .gform_wrapper .gform_footer.left_label {
    padding: 0em 0 .625em;
    margin-left: 29%;
}

.portfolio-contact-form .gform_wrapper .gform_footer {
    margin: 0.5em 0 0;
}

.portfolio-contact-form .gform_wrapper .left_label li.field_sublabel_below .gfield_label {
    font-size: 15px;
    font-weight: 500;
}

.portfolio-contact-form .gform_wrapper .left_label .gfield_label {
    width: 22%;
}

.portfolio-contact-form #gform_submit_button_2 {
    background: #999999;
    border: none;
    border-radius: 0;
    color: #fff;
    line-height: 27px;
    padding: 0 10px;
    right: -1px;
    text-transform: uppercase;
    top: -1px;
    bottom: auto;
    transition: all 200ms ease-in-out 0s;
    width: auto;
    height: 27px;
    cursor: pointer;
    -webkit-appearance: none;
    font-size: 14px;
    border-radius: 8px;
}

.portfolio-contact-form .gform_wrapper input[type=text],
.portfolio-contact-form .gform_wrapper textarea.medium {
    width: 98% !important;
}

.portfolio-contact-form .gform_confirmation_message {
    text-align: center;
    padding-top: 50px;
}

@media only screen and (max-width: 767px) {

    .portfolio-contact-form .gform_wrapper input[type=text],
    .portfolio-contact-form .gform_wrapper textarea.medium {
        width: 100% !important;
    }

    .gform_wrapper form li,
    .gform_wrapper li {
        padding-left: 0
    }

    .gform_wrapper {
        max-width: 100% !important;
        padding: 6px;
    }

    .portfolio-contact-form .gform_wrapper .gform_footer.left_label {
        margin-left: 0;
    }
}



/* 01:05 PM 16-05-2016 */

@media only screen and (max-width : 767px) {
    .mobileSocialShare {
        margin-bottom: 7px !Important;
        margin-right: 0 !important;
    }

    .mobileSocialShare .nextb {
        display: none
    }

    .mobileSocialShare.videoShare .social_icon_wrapper {}

    .mobileSocialShare .social_icon_wrapper li {
        width: 20%;
        float: left;
    }

    .mobileSocialShare.videoShare .social_icon_wrapper li {
        width: 16.66%;
        float: left;
    }

    .mobileSocialShare .social_icon_wrapper li a {
        width: 37px !Important;
        ;
        height: 37px !Important;
        ;
        line-height: 37px;
        font-size: 17px;
        float: none;
        display: table;
        margin: 0 auto;
        border-radius: 100%;
    }
}

/* 01:05 PM 16-05-2016 */

.sponseredMeta {
    background: #999 !important;
}

.sponseredMeta .author-name {
    margin-left: 14px !important;
}

@media only screen and (max-width: 640px) {

    /* 11:56 AM 6/21/2016 */
    .portfolio_search_box {
        width: 100%;
    }

    .portfolio_search_wrapper .portfolio_desc p {
        width: 95%;
    }

    .portfolio_search_content .portfolio_desc span {
        width: 100%;
        line-height: 23px;
        font-size: 22px !important;
    }

    /* 11:56 AM 6/21/2016 */
}

/* 11:04 AM 6/21/2016 */
.portfolio_search_wrapper .portfolio_logo img {
    max-width: 444px;
}

.portfolio_search_box {
    display: inline-block;
}

#portfolio-search_unit {
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0 15px;
    background: #989898;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 0;
}

.portfolio_search_bars .select_label select,
.portfolio_search_bars .search_box {
    height: 48px;
}

.portfolio_search_bars .select_label:before {
    content: '';
    right: 6px;
    top: 12px;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    pointer-events: none;
    display: block;
    background: transparent url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/drop_arrow.png") no-repeat right center/cover;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 10000;
}

.portfolio_search_bars .search_box {
    width: calc(100% - 20px);
    min-width: 270px;
}

/* 12:11 PM 6/21/2016 */

/* 3:09 PM 6/21/2016 */
.single_story_post_meta .post-author {
    border-left: 0;
}

@media (max-width: 640px) {
    .socialShare ul li:last-child {
        border-right: 0;
        padding-right: 0;
    }

    .single_story_post_meta .post-date {
        border-left: 0 !important;
    }

    .photo-credit {
        margin-top: 0;
        border-left: 0 !important;
        background-position: 5px;
        padding-left: 53px;
    }
}

.sponseredMeta {
    border-right: 1px !important;
    margin-right: 12px;
}

.author-name {
    background: transparent !Important;
}

li.nextb a:after {
    left: 34% !important;
}






/* 6/22/2016 Floating share on portfolio page */

.portfolio_search_bars.fixed_top {
    position: fixed;
    top: 60px;
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    padding: 9px 0;
    z-index: 1000;
    background: #ECECEC;
}

.portfolio_search_bars.fixed_top .select_label {
    display: inline-block;
    float: none;
}

.single_portfolio.socialShare.socialShare-top.social-sharer-buttons-article-top {
    height: 44px;
    overflow: hidden;
    position: fixed;
    width: 44px;
    height: 220px;
    top: 245px;
    left: 35px;
    z-index: 10000000;
}

.single_portfolio.socialShare.socialShare-top.social-sharer-buttons-article-top ul li {
    margin-bottom: 5px
}

.mobileSocialShare {
    display: none !important
}

@media only screen and (max-width : 767px) {
    .single_portfolio.socialShare.socialShare-top.social-sharer-buttons-article-top {
        display: none;
    }

    .mobileSocialShare {
        margin-bottom: 7px !Important;
        margin-right: 0 !important;
        position: fixed !Important;
        bottom: 0;
        z-index: 10000 !important;
        width: 100% !important;
        border: 0 !important;
        display: block !important;
    }

    .mobileSocialShare .social_icon_wrapper {
        position: relative !important;
        float: none;
        left: 0 !important;
        z-index: 100000;
        display: table;
        margin: 0 auto;
        width: 100% !important;
        overflow: initial;
        text-align: center;
    }

    .mobileSocialShare .nextb {
        display: none
    }

    .mobileSocialShare.videoShare .social_icon_wrapper {}

    .mobileSocialShare .social_icon_wrapper li {
        width: 20%;
        float: left;
        position: relative;
    }

    .mobileSocialShare.videoShare .social_icon_wrapper li {
        width: 16.66%;
        float: left;
    }

    .mobileSocialShare .social_icon_wrapper li a {
        width: 37px !Important;
        height: 37px !Important;
        line-height: 37px;
        font-size: 17px;
        float: none;
        display: table;
        margin: 0 auto;
        border-radius: 100%;
        z-index: 10000;
        transform: initial;
        -webkit-transform: initial;
        -moz-transform: initial;
        -ms-transform: initial;
        -o-transform: initial;
    }

    #contact-form {
        padding-bottom: 70px;
        padding-left: 15px;
    }
}

/* 6/22/2016 */

/* 1:50 PM 6/24/2016 */
.related_stories_header_portfolio {
    margin-top: 0 !important;
}

.portifolio-block .right-block h5 {
    color: #000;
    font-weight: 700
}

span.portfolioLabel {
    color: #000 !important;
    font-weight: 700;
}

.portifolio-block .right-block strong {
    font-weight: 100;
}

.single-portfolio h1.portfolio-section-title {
    margin-top: 0;
}

.first_hide {
    display: none;
}

.first_hide0 {
    display: block;
}

/* 02:11 PM 25-04-2016 */
.gq_site.in_this_series_title {
    color: #CE061E;
}

.in_this_series_title {
    font-size: 15px;
    margin-bottom: 5px;
}

.in_this_series_title>span {
    color: #000;
}



.in_this_series_title.owl-carousel {
    display: block;
}

.in_this_series_title.owl-carousel .item {
    width: 50%;
    float: left;
}

.in_this_series_title.owl-carousel .owl-stage-outer .item {
    width: auto;
    float: none;
}

.in_this_series_carousel .owl-stage-outer {
    width: 100%;
    margin: 0 auto;
}

.in_this_series_carousel .owl-item {}

.in_this_series_carousel .owl-item .item {
    padding: 0;
    width: 92%;
    margin: 0 4%;
    /* 12:20 PM 07-07-2016 */
    cursor: pointer;
    /* 12:21 PM 07-07-2016 */

}

.in_this_series_carousel .owl-item .item>.in_this_series_img {
    display: block;
    float: left;
    width: 100px;
    height: 100px;
    margin-right: 10px;
    background-size: cover;
}

.in_this_series_carousel .owl-item .item>.in_this_series_img img {
    opacity: 0
}

.in_this_series_carousel .owl-item .item .desc {
    background: #F4F4F4;
    padding: 10px;
    padding-bottom: 0;
}

.in_this_series_carousel .owl-item .item .desc .date a {
    color: #6E6C6D;
    font-size: 13px;
}

.in_this_series_carousel .owl-item .item .desc p a {
    color: #000;
    font-size: 13px;
    line-height: initial;
    display: block;
}

.in_this_series_carousel .owl-controls {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 50px;
    margin: auto;
    width: 100%;
    z-index: -1;
}

.in_this_series_carousel .owl-controls .owl-prev {
    float: left;
}

.in_this_series_carousel .owl-controls .owl-next {
    float: right;
}

.in_this_series_carousel .owl-controls .owl-next {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 30%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /* opacity: 0.5; */
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-next.png") center center no-repeat;
    right: 0;
    color: transparent;
    right: -29px;
}

.in_this_series_carousel .owl-controls .owl-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 30%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /* opacity: 0.5; */
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-prev.png") center center no-repeat;
    right: 0;
    color: transparent;
    left: -29px;
}

.block_quote_wrapper {

    background: #FAFAFA;

    padding: 5px 0;
    border-top: 1px solid #E8E6E7;
    border-bottom: 1px solid #E8E6E7;
}

.block_quote_content {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/quote.png), url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/quote2.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    background-size: 70px;
    padding: 5px 70px;
    padding-top: 20px;
    max-width: 89%;
    display: table;
    margin: 0 auto;
}

.block_quote_share_bar {}

.block_quote_share_bar ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
    display: table;
    margin: 0 auto;
    margin-bottom: 5px;
}

.block_quote_share_bar ul li {
    display: inline;
    float: left;
}

.block_quote_share_bar ul li a {
    color: #fff;
    text-align: center;
    line-height: 29px;
    margin: 2px;
}

/* 01:05 PM 16-05-2016 */

/* 04:02 PM 28-06-2016 */
.in_this_series_wrapper {
    margin-top: 5px;
    border-top: 1px solid #B8B6B8;
    padding-top: 5px;
}

.ad_site.in_this_series_title {
    color: #000;
}

.in_this_series_title {
    font-size: 15px;
    margin-bottom: 5px;
}

.in_this_series_title>span {
    color: #000;
}

.in_this_series_title>span>a {
    text-decoration: underline !important;
}

.in_this_series_title.owl-carousel {
    display: block;
}

.in_this_series_title.owl-carousel .item {
    width: 50%;
    float: left;
}

.in_this_series_title.owl-carousel .owl-stage-outer .item {
    width: auto;
    float: none;
}

.in_this_series_carousel .owl-stage-outer {
    width: 100%;
    margin: 0 auto;
}

.in_this_series_carousel .owl-item {}

.in_this_series_carousel .owl-item .item {
    padding: 0;
    width: 92%;
    margin: 0 4%;
}

.in_this_series_carousel .owl-item .item>.in_this_series_img {
    display: block;
    float: left;
    width: 100px;
    height: 100px;
    margin-right: 10px;
    background-size: cover;
}

.in_this_series_carousel .owl-item .item>.in_this_series_img img {
    opacity: 0
}

.in_this_series_carousel .owl-item .item .desc {
    background: #F4F4F4;
    padding: 10px;
    padding-bottom: 0;
    height: 100px;
}

.in_this_series_carousel .owl-item .item .desc .date a {
    color: #6E6C6D;
    font-size: 13px;
}

.in_this_series_carousel .owl-item .item .desc p a {
    color: #000;
    font-size: 13px;
    line-height: initial;
    display: block;
}

.in_this_series_carousel .owl-controls {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 50px;
    margin: auto;
    width: 100%;
    z-index: 10000;
}

.in_this_series_carousel .owl-controls .owl-prev {
    float: left;
}

.in_this_series_carousel .owl-controls .owl-next {
    float: right;
}

.in_this_series_carousel .owl-controls .owl-next {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 30%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /* opacity: 0.5; */
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-next.png") center center no-repeat;
    right: 0;
    color: transparent;
    right: -29px;
}

.in_this_series_carousel .owl-controls .owl-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px;
    top: 30%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /* opacity: 0.5; */
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/you-may-like-prev.png") center center no-repeat;
    right: 0;
    color: transparent;
    left: -29px;
}


.block_quote_wrapper {

    background: #FAFAFA;

    padding: 5px 0;
    border-top: 1px solid #E8E6E7;
    border-bottom: 1px solid #E8E6E7;
    margin-bottom: 14px;

}

.block_quote_content {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/quote.png), url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/quote2.png);
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    background-size: 48px;
    padding: 9px 63px;
    padding-top: 20px;
    max-width: 89%;
    display: table;
    margin: 0 auto;
    /* text-align: justify; */
    font-family: 'sethuregular';
    color: #696969;
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
}

.block_quote_share_bar {}

.block_quote_share_bar ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
    display: table;
    margin: 0 auto;
    margin-bottom: 5px;
    padding-bottom: 0 !important;
}

.block_quote_share_bar ul li {
    display: inline;
    float: left;
    padding-left: 0 !important;
    margin-top: 10px;
}

.block_quote_share_bar ul li::after {
    content: '';
}

.block_quote_share_bar ul li a {
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin: 2px;
    width: 35px;
    height: 35px;
}

@media (max-width:640px) {
    .in_this_series_carousel .owl-controls {
        display: none !important
    }
}

/* 03:57 PM 28-06-2016 */

.loginIframe {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    display: none;
    z-index: 11111199999;
    bottom: 0;
    margin-top: 0;
}

.loginIframe iframe {
    display: table;
    width: 100%;
    height: 100%;
}

#loadingIframe {
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 100%;
}

#loadingIframe img {
    width: 100px;
    margin: auto;
    height: 100px;
    display: block;
    margin-top: calc(50vh - 50px);
}




/* CTA */

.story_page_widget_2 {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    max-width: 840px;
    padding: 10px 8px;
    margin: 20px 0;
    padding-bottom: 10px !important
}

.story_page_widget_2 li {
    display: table;
    width: 100%;
    padding-left: 0 !important;
}

.stay_connected_story .logo_story {
    max-width: 144px;
    display: inline;
    max-height: 40px;
    width: auto;
    float: left;
}

.story_page_widget_2 .part_1 {
    display: inline-block;
    border-right: 1px solid #D2D2D2;
    padding: 5px 0;
    display: table-cell;
    height: 100%;
    min-height: 108px;
    vertical-align: middle
}

.story_page_widget_2 .part_2 {
    display: table-cell;
    padding: 5px 0
}

.stay_connected_story .part_1 {
    width: 44%
}

.stay_connected_story .part_2 {
    width: 54%;
    vertical-align: middle;
    padding-left: 2%;
}

.stay_connected_story .txt_para {
    padding-left: 5px;
    padding-top: 6px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    font-family: "Lato", sans-serif;
    /* display: inline; */
    margin-top: 11px;
    float: left;
    padding-top: 0;
    margin-left: 13px;
}

.arrow_box {
    position: relative
}

.arrow_box:after,
.arrow_box:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.arrow_box:after {
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #D3D3D3;
    border-width: 7px;
    margin-top: -7px
}

.arrow_box:before {
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #D3D3D3;
    border-width: 5px;
    margin-top: -5px
}

.social_widget_story_2 {
    text-align: center;
    display: table;
    margin: 9px auto;
    padding-bottom: 0 !important
}

.social_widget_story_2 li {
    display: inline-block;
    width: auto;
    margin: 0 3px;
    vertical-align: top
}

.social_widget_story_2 li a {
    min-width: 100px;
    text-align: center;
    padding: 9px 0;
    font-size: 23px;
    color: #fff
}

.social_widget_story_2 li a.instagram {
    background: #C53F96
}

.story_page_widget_2-2 .part_1 .subscribe_img_story {
    display: inline-block;
    float: left;
    max-height: 100px;
    margin: -5px 15px -5px -7px
}

.story_page_widget_2-2 .part_1 .txt_para {
    float: left;
    font-size: 23px;
    line-height: initial;
    font-family: "Lato", sans-serif;
    letter-spacing: -1px;
    margin-top: 14px;
    margin-left: 11px;
}

.story_page_widget_2-2 .subscribe_story_page .part_1 a:hover {
    opacity: 1;
}

.story_page_widget_2-2 .subscribe_story_page .part_1 .txt_para {
    float: left;
    font-size: 23px;
    line-height: 24px;
    font-family: "Lato", sans-serif;
    letter-spacing: -1px;
    margin-top: 14px;
    margin-left: 11px;
    width: calc(100% - 125px);
}

.story_page_widget_2-2 .subscribe_story_page .part_1 .txt_para strong {
    font-weight: normal;
    font-size: 16px;
}

.btn-vogue {
    background: #939393;
    color: #fff
}

.story_page_widget_2-2 .part_1 {
    width: 79%;
    padding: 0
}

.story_page_widget_2-2 .part_2 {
    width: 20%;
    padding-left: 30px;
    padding-top: 28px
}

.cta_input_btn {
    margin-right: 5px;
    border-radius: 0 !important;
    border-radius: 0 !important;
    height: 35px;
    padding: 8px 14px;
}

.story_page_widget_2-2 .part_2 .btn {
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer
}

.story_page_widget_2-3 .logo_story {
    max-width: 144px;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin-right: 22px;
    max-height: 40px;
    width: auto;
}

.story_page_widget_2-3 .part_1 .subscribe_img_story {
    display: inline-block;
    float: left;
    max-height: 100px;
    margin: -15px 15px -15px -7px
}

.story_page_widget_2-3 .part_1 .txt_para {
    font-size: 21px;
    line-height: initial;
    letter-spacing: -1px;
    display: inline-block;
    font-family: 'savoybold';
    vertical-align: middle;
    width: calc(100% - 170px)
}

.btn-vogue {
    background: #939393 !important;
    color: #fff
}

.story_page_widget_2-3 .part_1 {
    width: 65%
}

.story_page_widget_2-3 .part_2 {
    width: 35%;
    padding-left: 24px;
    padding-top: 1px;
    padding-bottom: 0
}

.story_page_widget_2-3 .part_2 .btn {
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    background: #3C5B9B;
    color: #fff;
    font-family: "Lato", sans-serif;
    min-width: 131px;
    margin-top: 2px;
    width: 98%;
    font-size: 16px;
    font-weight: 600;
    border: 0;
}

.story_page_widget_2-3 .part_2 .small_txt {
    display: inline-block;
    color: #A09F9A;
    font-weight: 600;
    font-size: 13px;
    font-family: "Lato", sans-serif;
    margin-bottom: 3px;
    width: 100%;
    text-align: center
}

.story_page_widget_2-3 .part_2 .btn .fa {
    vertical-align: middle;
    font-size: 21px;
    margin-right: 10px
}

.story_page_widget_2-4 .logo_story {
    max-width: 144px;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin-right: 22px;
    max-height: 40px;
    width: auto;
}

.story_page_widget_2-4 .part_1 .subscribe_img_story {
    display: inline-block;
    float: left;
    max-height: 100px;
    margin: -15px 15px -15px -7px
}

.story_page_widget_2-4 .part_1 .txt_para {
    font-size: 21px;
    line-height: initial;
    letter-spacing: -1px;
    display: inline-block;
    font-family: 'savoybold';
    vertical-align: middle;
    width: calc(100% - 170px)
}

.btn-vogue {
    background: #00ADEF;
    color: #fff;
    border: 0;
}

.story_page_widget_2-4 .part_1 {
    width: 65%
}

.story_page_widget_2-4 .part_2 {
    width: 35%;
    padding-left: 22px;
    padding-top: 1px;
    padding-bottom: 0;
    vertical-align: middle
}

.story_page_widget_2-4 .part_2 .btn {
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-family: "Lato", sans-serif;
    min-width: 110px;
    margin-top: 2px
}

.story_page_widget_2-4 .part_2 .small_txt {
    display: inline-block;
    color: #A09F9A;
    font-weight: 600;
    font-size: 13px;
    font-family: "Lato", sans-serif;
    margin: 11px 4px
}

.story_page_widget_2-4 .part_2 .btn .fa {
    vertical-align: middle;
    font-size: 21px;
    margin-right: 10px
}

.instagram_btn_story {
    padding: 0 !important;
    text-align: left !important
}

.instagram_btn_story img {
    width: 87px;
    margin-bottom: 0 !important;
}

.manage_newsletter_wrap .news_content ul li {
    display: inline-block;
    width: 25% !important;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width:768px) {
    .story_page_widget_2 .part_1 {
        width: 100%;
        float: left;
        border-right: 0;
        text-align: center;
        min-height: initial
    }

    .story_page_widget_2 .part_2 {
        width: 100%;
        float: left;
        padding-left: 0;
        padding-bottom: 0
    }

    .instagram_btn_story img {
        margin-bottom: -1px !important;
    }

    .social_widget_story_2 li a {
        min-width: initial
    }

    .social_widget_story_2 {
        padding-bottom: 0 !important;
        margin: 0 auto;
        padding-left: 0 !important;
    }

    .story_page_widget_2-2 .part_1 .subscribe_img_story {
        max-height: 34px !important;
        margin: 0 5px 0 0;
    }

    .story_page_widget_2 .part_1 {
        padding: 0 !important
    }

    .story_page_widget_2-2 .part_1 .txt_para {
        font-size: 10px;
        margin-top: 4px;
        margin-left: 0px;
        text-align: left;
    }

    .story_page_widget_2-2 .subscribe_story_page .part_1 .txt_para {
        font-size: 12px;
        font-weight: 700;
        margin-top: 4px;
        margin-left: 0px;
        text-align: left;
        line-height: initial;
        width: calc(100% - 35px);
        letter-spacing: normal;
    }

    .story_page_widget_2-2 .subscribe_story_page .part_1 .txt_para strong {
        font-size: 10px;
        font-weight: normal;
    }

    .story_page_widget_2-2 .part_1 {
        width: 73%;
    }

    .story_page_widget_2-2 .part_2 {
        width: 27%;
        padding-left: 0;
        padding-top: 0;
    }

    .story_page_widget_2-2 .part_2 .btn {
        padding: 7px 4px;
        font-size: 10px;
        margin-top: 6px;
        margin-left: 9px;
    }

    .story_page_widget_2-3 .logo_story {
        margin-right: 0;
        max-width: 100px
    }

    .story_page_widget_2-3 .part_1 .txt_para,
    .story_page_widget_2-4 .part_1 .txt_para {
        font-size: 13px;
        width: calc(100% - 10px);
        margin-top: 0
    }

    .story_page_widget_2-4 .part_2 {
        padding-left: 0;
        text-align: center
    }

    .arrow_box:after {
        display: none
    }

    .story_page_widget_2-2 {
        padding: 5px 0 !important;
        padding-bottom: 5px !important
    }

    .stay_connected_story .txt_para {
        padding-top: 2px;
        font-size: 12px;
        line-height: initial;
        float: none;
        margin-top: 0;
        margin-left: 0;
    }

    .story_page_widget_2 .part_1.arrow_box:before {
        display: none
    }

    .story_page_widget_2 {
        padding: 5px 0px !important;
        padding-bottom: 5px !important;
    }

    .section_signup_funcul {
        padding-top: 0px !Important;
        padding-bottom: 0px !Important;
    }

    .story_page_widget_2-3 .part_2 .small_txt {
        line-height: initial
    }

    .story_page_widget_2-4 .logo_story {
        margin-right: 0;
        max-width: 100px
    }

    .story_page_widget_2-3 .part_2 .btn {
        width: 240px;
        padding: 6px;
        margin: 0 auto;
        display: table
    }

    .story_page_widget_2-4 .part_2 .btn {
        padding: 6px 5px;
        min-width: 101px;
        font-size: 12px
    }

    .story_page_widget_2-4 .part_2 .small_txt {
        margin: 4px 3px
    }

    .stay_connected_story .logo_story {
        max-width: 100px;
        float: none;
    }

    .section_signup_img {}

    .section_signup_func .part_1 {
        width: 100% !important;
    }

    .section_signup_func .part_1 div {
        text-align: center !important;
        font-size: 16px !important;
    }

    .section_signup_func .part_2 {
        width: 100% !important;
        padding-top: 0px !important;
        padding-bottom: 10px !important;
        display: table;
        height: 38px;
    }

    .cta_input_btn {
        margin: 0 !important;
        font-size: 9px !important;
        height: 28px;

        padding: 2px 8px;
        line-height: initial;
        top: 0;
        /*! position: relative; */
        margin-top: 0 !important;
        position: absolute;
        right: 0 !important;
    }

    .cta_input_txt {
        width: calc(100% - 53px) !important;
        height: 28px !important;
        /*! padding: 8px; */
        position: absolute;
        left: 0;

        top: 0;
    }

    .btn_sec3 {
        font-size: 9px !important;
        margin-left: 0 !important;
        margin-top: 9px !important;
        padding: 7px 7px !important;
    }

    .img_sec3 {
        height: 50px !important;
    }

    .txt_sec3 {
        font-size: 11px !important;
        margin-left: 0 !important;
    }

    .p2_sec3 {
        width: 24% !important;
        padding-top: 4px !important;
    }

    .p1_sec3 {
        width: 76% !important;
    }

    .manage_newsletter_wrap .news_content ul li {
        width: 50% !important;
    }

    .manage_newsletter_wrap .img_div {
        background-size: 83% !Important
    }

}

#twitter-widget-0 {
    width: 78px !important
}


.col-sm-12 {
    width: 100% !important
}

//}   

.fb_iframe_widget {
    display: table !important;
    position: relative;
    margin-top: -5px;
}

.txt_2_gq {
    color: #676767;
}

.txt_2_gq strong {
    color: #000;
}

.story_page_widget_2 li:after {
    display: none
}

.txt_3_gq {
    font-family: 'savoybold';
    margin-top: 34px;
}

.section_signup_func .txt1 {
    margin-top: 4px;
}

.section_signup_func {
    padding: 10px 0;
}

.cta_signup_img {}

.section_signup_img {}

.section_signup_func .part_1 {
    width: 54%;
    border-right: 0;
    text-align: left;
}

.section_signup_func .part_2 {
    width: 46%;
    padding: 0;
    padding-top: 28px;
    text-align: right;
    position: relative;
}

.cta_input_txt {
    width: calc(90% - 86px);
    padding: 8px;
    border-radius: 0 !important;
    border: 1px solid #cfcfcf;
    height: 35px;
}


.section_signup_funcul {
    padding-top: 0px !Important;
    padding-bottom: 0px !Important;
}



.manage_newsletter_wrap {}

.manage_newsletter_wrap .title_head {}

.manage_newsletter_wrap {
    font-family: savoyregular, serif;
    border-top: 2px solid #EEEEEE;
    /* padding-top: 20px; */
}

.manage_newsletter_wrap .row {
    padding-top: 20px;
}

.manage_newsletter_wrap .title_head {
    font-family: savoyregular, serif;
    color: #000;
    font-weight: 600;
    font-size: 23px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.manage_newsletter_wrap .news_content {
    padding-bottom: 0px;
    /* border-bottom: 2px solid #F3F3F3; */
}

.manage_newsletter_wrap .news_content ul {
    margin: 25px -10px;
}

.manage_newsletter_wrap .vogue .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/vogue-logo.svg);
    background-size: 80%;
}

.manage_newsletter_wrap .gq .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/gq-logo.png);
}

.manage_newsletter_wrap .ad .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/ad-logo.png);
}

.manage_newsletter_wrap .cnt .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/cnt-logo.png);
}

.manage_newsletter_wrap .img_div {
    width: 100%;
    min-height: 100px;
    background-repeat: no-repeat;
    background-size: auto 60px;
    background-position: center;
    background-color: #F6F4F5;
    border: 2px solid #E6E6E6;
    margin-bottom: 10px;
}

.manage_newsletter_wrap .chk_box {
    width: 20px !important;
    height: 20px;
    cursor: pointer;
}

.manage_newsletter_wrap .chk_box {
    content: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/without_check.png");
}

.news_content_2 .manage_interests_tags li label .chk_box:checked {
    content: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/cross.png");
}

.manage_newsletter_wrap .chk_box:checked {
    content: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/check.png");
    height: 20px;
}

.manage_newsletter_wrap .gq {}

.news_content_2 {
    display: table;
    width: 100%;
    margin-top: 15px;
}

.news_content_2 .manage_interests_tags {
    width: 100%;
    max-width: 300px;
    margin: 12px 0 !important;
}

.news_content_2 ul.manage_interests_tags li {
    width: 50% !important;
    text-align: left !important;
    padding: 4px 0 !important;
}

.news_content_2 .manage_interests_tags li label {
    color: #8a8a8a;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    vertical-align: middle;
    cursor: pointer;
}

.news_content_2 .manage_interests_tags li label .chk_box {
    width: initial;
    vertical-align: middle;
    margin-left: 10px;
    cursor: pointer;
    width: 15px !important;
    height: 15px !important;
}

.news_content_2 .span_tags {
    color: #b5b5b5;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    line-height: initial;
}

.news_content_2 .span_tags .tag {
    font-family: "Lato", sans-serif;
    font-size: 13px;
}

.manage_interests_tags .manage_interests_tags {}

.col-md-1 {
    width: 10%;
    float: left;
    min-height: 2px;
}

.col-md-11 {
    width: 80%;
    float: left;
}

.inp_txt {
    padding: 7px 15px;
    width: 100%;
    max-width: 346px;
    margin-bottom: 5px;
    border: 1px solid #E3E3E3;
}

.inner_row {
    width: 100%;
    display: table;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    color: #636363;
}

.save_change_btn {
    padding: 7px 17px;
    border-radius: 2px;
    margin-right: 10px;
    margin-top: 25px;
    margin-bottom: 50px;
}

.cancel_btn {
    border: 1px solid #CDCDCD;
    padding: 7px 13px;
    border-radius: 2px;
    margin-right: 10px;
    margin-top: 25px;
    background: #F9F9F9;
}

/* sitemap css */
.wsp-container {
    margin-bottom: 30px;
    margin-left: 100px;
    margin-top: 50px;
}

.wsp-container .wsp-posts-title,
.wsp-container .wsp-pages-title {
    font-size: 24px;
    line-height: initial;
    margin: 10px 0;
    font-family: "Lato", sans-serif;
}

.wsp-container .wsp-posts-list {
    margin-bottom: 15px;
    font-family: "Lato", sans-serif;
    margin-left: 17px;
}

.wsp-container .wsp-posts-list .wsp-posts-list {
    margin-bottom: 0;
}

.wsp-container .wsp-posts-list .wsp-posts-list li strong a {
    font-weight: 500;
}

.wsp-container>.wsp-posts-list>li {
    margin-bottom: 7px;
}

.wsp-container .wsp-posts-list li>strong {
    margin-bottom: 9px;
    display: inline-block;
}

.wsp-container .wsp-posts-list li strong a {
    text-decoration: none;
    color: #000;
    font-weight: 300;
}

.wsp-container .wsp-posts-list li>strong>a {
    font-weight: 600;
}

.wsp-pages-list {}

.wsp-pages-list li {
    font-family: "Lato", sans-serif;
    margin-left: 17px;
    margin-bottom: 10px;
}

.wsp-pages-list li>a {
    font-weight: 500;
    text-decoration: none;
    color: #000;
}

.wsp-pages-list li.current_page_item {}

.wsp-pages-list li.current_page_item>a {
    font-weight: 600;
}

/* sitemap css ends */


/*regwall start*/
/* registration wall - 3  */
.sso_wall_overlay {}

#sso_wall {
    position: fixed;
    top: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.78);
    display: table;
}

.sso_inner_wall {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sso_inner_content {
    display: table;
    margin: 0 auto;
    padding: 70px;

    background: #fff;
}



/* registration wall - 3  */
.story_view_txt_nl {
    position: absolute;
    left: 20px;
    color: #3b5998;
}

/* registration wall small div */
.registration_wall_container_2 {
    /* position: fixed; */
    /* bottom: 0; */
    /* right: 0; */
    /* background: #212121; */
    /* z-index: 999999; */
    /* font-family: 'Lato', sans-serif; */
    /* left: 0; */
    /* margin: auto; */
    /* height: 200px; */
    /* width: 100%; */
    /* max-width: 348px; */
}

.registration_wall_container_2 .top_title {
    background: #999999;
    padding: 9px 14px;
    color: #fff;
    font-size: 11px;
}

.registration_wall_container_2 .top_title .close_reg_wall {
    font-size: 21px;
    vertical-align: top;
    line-height: 11px;
    float: right;
    cursor: pointer;
}

.registration_wall_container_2 .content_2 {
    padding: 9px 14px;
    color: #fff;
}

.registration_wall_container_2 .content_2 .reg2wall_txt_1 {
    color: #999999;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 15px;
    margin-top: 4px;
    display: table;
}

.registration_wall_container_2 .content_2 .reg2_white {}

.registration_wall_container_2 .content_2 .reg2_white {
    color: #fff;
    text-decoration: none;
}

.registration_wall_container_2 .content_2 .btn_row {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    margin-bottom: 10px;
}

.registration_wall_container_2 .content_2 .btn_row .reg2wall_txt_2 {
    float: right;
    font-size: 11px;
    margin-right: 7px;
    color: rgb(123, 123, 123);
    margin-top: 3px;
}

.registration_wall_container_2 .content_2 .btn_signup {
    padding: 5px 14px;
    font-size: 11px;
    border-radius: 4px;
}

.registration_wall_container_2 .content_2 .btn_login {
    padding: 5px 14px;
    font-size: 11px;
    border-radius: 4px;
    float: right;
}

.registration_wall_container_2 .content_2 .div_2 {}

.registration_wall_container_2 .content_2 .div_2 .txt1 {}

.registration_wall_container_2 .content_2 .div_2 .txt2 {
    color: rgba(255, 255, 255, 0.67);
    font-size: 12px;
    margin: 7px 0;
    max-width: 320px;
}

/* registration wall - 3  */
.sso_wall_overlay {}

#sso_wall {
    position: fixed;
    top: 0;
    z-index: 99999;
    height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.78);
    display: table;
}

.btn-ad {
    background: #999999;
    color: #fff;
    text-decoration: none;
}

.sso_wall_overlay {}

#sso_wall {
    position: fixed;
    top: 0;
    z-index: 99999999;
    height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    background: #fff;
    display: table;
}

.sso_inner_wall {
    display: table-cell;
    vertical-align: top;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sso_inner_content {
    display: table;
    margin: 0 auto;
    padding: 15px 70px;

    background: transparent;
    box-sizing: border-box;
    min-width: 833px;
    position: relative;
}

.sso_inner_content .wall_logo {}

.sso_inner_content .wall_part1 {
    /* float: left; */
    width: 50%;
    min-height: 5px;
    padding: 25px 50px;
    padding-left: 0;
    /* display: table-cell; */
    box-sizing: border-box;
    display: inline-table;
    max-width: 322px;
    float: left;
    font-family: 'savoyregular';
    font-size: 16px;
    font-weight: 100;
    line-height: initial;
}

.sso_inner_content .wall_part2 {
    width: 50%;
    min-height: 5px;
    border-left: 1px solid #D7D7D7;
    padding: 0 50px;
    padding-right: 0;
    box-sizing: border-box;
    display: inline-table;
    float: left;
}

.popup-register-block .text_2 {
    display: table;
    width: 100%;
    padding-top: 13px;
    text-align: left;
    color: #999 !important;
    font-size: 11px !important;
}

.popup-register-block .text_2 a {
    color: #999 !important;
}

.sso_inner_content .wall_part1 .txt1 {
    font-size: 16px;
    font-weight: 100;
    line-height: initial;
}

.sso_inner_content .wall_part1 .txt2 {
    font-size: 22px;
    font-weight: 100;
    line-height: initial;
    padding: 20px 0px;
    background: #E9E9E9;
    margin: 40px 0;
}

.sso_inner_content .wall_part1 .txt3 {
    font-size: 16px;
    font-weight: 100;
    line-height: initial;
    margin-bottom: 17px;
    float: left;
}

.sso_inner_content .wall_part1 .txt4 {
    margin-bottom: 35px;
    color: #999999;
    font-size: 28px;
}

.sso_inner_content .wall_part1 .txt5 {
    font-size: 14px;
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 5px;
    padding-top: 5px;
    border-top: 1px solid #E1E1E1;
}

.sso_inner_content .wall_part1 .txt1_2 {
    display: inline-block;
    font-size: 20.5px;
    font-weight: 600;
    margin-top: 5px;
}

.sso_inner_content .wall_logo img {
    max-width: 350px;
    margin-bottom: 15px;
}

#close_wall {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 23px;
    color: #919191;
    margin: 5px;
}

@media (max-width:850px) {
    .sso_inner_content {
        min-width: initial;
        padding: 15px;
        padding-top: 37px;
    }

    .sso_inner_content .wall_logo img {
        width: 100%;
        display: table;
        max-width: 480px !Important;
        margin: 0 auto;
    }

    .sso_inner_content .wall_part1 {
        width: 100%;
        padding: 0;
        display: table;
        margin-top: 13px;
        border-top: 1px solid #000;
        padding-top: 20px;
    }

    .sso_inner_content .wall_part2 {
        width: 100%;
        display: table;
        padding: 0;
        margin-top: 40px;
        border-left: 0;
    }

    #sso_wall {
        box-sizing: border-box;
        bottom: 0;
        min-height: 110%;
    }

    .popup-register-block,
    .popup-login-block {
        width: 100%;
        min-width: initial;
        max-width: 100%;
    }

    .sso_inner_wall {
        position: absolute;
        height: 100%;
        overflow: auto;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-freestory {
        font-size: 9px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-align: center;
        line-height: initial;
        padding: 4px 0;
        width: 60px;
        border-radius: 12px;
        margin-left: 1% !important;
        font-family: 'Lato', sans-serif;
        text-decoration: none;
    }

    .mobile-freestory span {
        display: table;
        width: 100%;
        text-align: center;
        font-size: 10px;
        margin-top: 2px;
        font-weight: 600;
    }
}

/*big regwall popup starts*/
.popup-register-block,
.popup-login-block {
    display: inherit;
    width: 341px;
    min-width: 320px;
    max-width: 232px;
    box-sizing: border-box;
}

.popup-title {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 21px;
    display: table;
    width: 100%;
    line-height: initial;
    color: #919191;
}

.popup-register-block .social-login a,
.popup-login-block .social-login a {
    color: #fff;
    vertical-align: middle;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    padding: 6px 9px;
    margin-right: 0;
    margin-left: 0;
    display: table-cell;
    text-align: center;
    width: 50%;
    font-family: "Lato", sans-serif;
    letter-spacing: 0px;
    text-decoration: none;
    height: 43px;
}

.popup-register-block .social-login a .fa,
.popup-login-block .social-login a .fa {
    font-size: 21px;
    margin-right: 6px;
    vertical-align: middle;
    margin-right: 13px;
}

.popup-register-social-block,
.popup-login-social-block {
    width: 100%;
    display: table;
    margin: 11px 0;
    margin-top: 25px !important;
}

.popup-register-block .btn:hover,
.popup-login-block .btn:hover {
    cursor: pointer;
    opacity: 0.8;
}

.popup-register-block .or-text,
.popup-login-block .or-text {
    display: table;
    margin: 0 auto;
    text-transform: lowercase;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 11px;
}

.form-row {}

.popup-register-block .inp,
.popup-login-block .inp {
    width: 100% !important;
    background: #fff;
    padding: 11px 13px;
    margin-bottom: 8px;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    letter-spacing: 0px;
    color: #202020;
    margin: 4px 0;
    box-sizing: border-box;
    /* text-transform: lowercase; */
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-family: "Lato", sans-serif !important;
}

/*    .popup-register-block .inp:focus{ 
    border-left: 4px solid #A78047;
    }*/
.popup-register-block .inp_txtarea,
.popup-login-block .inp_txtarea {
    min-height: 104px;
    display: table;
}

.popup-register-block .inp_txtarea:focus,
.popup-login-block .inp_txtarea:focus {
    min-height: 155px;
}

.popup-register-block .form-control.inp:focus,
.popup-login-block .form-control.inp:focus {
    -webkit-box-shadow: inset 4px 0px 0px 0px #999999;
    -moz-box-shadow: inset 4px 0px 0px 0px #999999;
    box-shadow: inset 4px 0px 0px 0px #999999;
}

.popup-register-form,
.popup-login-form {
    margin: auto;
    /*background: white;*/
    padding: 40px;
    position: absolute;
    height: auto;
    /*max-width: 360px;*/
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.popup-register-form .part_1,
.popup-login-form .part_1 {
    max-width: 325px;
    margin: 0 auto;
}

.popup-register-form .part_2,
.popup-login-form .part_2 {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.popup-register-form .part_2 .title,
.popup-login-form .part_2 .title {
    margin-bottom: 16px;
}

.popup-register-block .map,
.popup-login-block .map {
    min-height: 175px;
    margin-bottom: 45px;
}

.popup-register-block .terms_conditions,
.popup-login-block .terms_conditions {
    display: table;
    margin: 10px auto;
    font-size: 13px;
    font-weight: bold;
    /* color: #00B5BD; */

    font-family: "Lato", sans-serif;
}

.popup-register-block .terms_conditions a,
.popup-login-block .terms_conditions a {
    color: #00AFF3;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.popup-register-block .btn,
.popup-login-block .btn {
    color: #fff;
    padding: 0 18px;
    display: table;
    border-radius: 2px;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    transition: all 0.5s ease;
    background: #000;
    outline: 0;
    border: 0;
    font-weight: 700;
    height: 45px;
    /*line-height: 45px;*/
    font-size: 14px;
    display: inline-block;
}

.popup-create_btn {
    padding: 14px 10px !important
}

.popup-register-block .inp_12,
.popup-login-block .inp_12 {
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #ccc;
    float: left;
    text-align: left;
    font-weight: 300;
    outline: 0;
    font-family: "Lato", sans-serif;
    background: #E9E9E9;
    font-size: 14px;
    margin-bottom: 0;
}

.popup-register-block .inp_8,
.popup-login-block .inp_8 {
    width: calc(60% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    border: 0;
    float: left;
}

.popup-register-block .inp_6,
.popup-login-block .inp_6 {
    width: calc(50% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    border: 0;
    float: left;
}

.popup-register-block .inp_4,
.popup-login-block .inp_4 {
    width: calc(40% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    border: 0;
    float: left;
}

.popup-register-block .form-row,
.popup-login-block .form-row {
    width: 100%;
    float: left;
    margin-left: 0;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

.social-login .facebook-login {
    background: #3A579B;
}

.popup-login-or {
    margin: 25px 0;
    border-top: 1px solid #CACACA;
    margin-bottom: 6px;
}

.popup-login-or span {
    display: table;
    margin: 0 auto;
    background: #fff;
    font-size: 22px;
    padding: 0 15px;
    margin-top: -8px;
    font-size: 16px;
    font-family: "Lato", sans-serif;
}

.popup-register-form .text_2,
.popup-login-form .text_2 {
    display: table;
    /* margin-top: 18px; */
    padding-top: 10px;
    font-weight: 600;
    font-size: 11px;
    color: #9C9C9C;
    font-family: "Lato", sans-serif;
}

.popup-register-form .text_2 a,
.popup-login-form .text_2 a {
    color: #999;
}

.popup-register-form .regsiter_cnt_logo,
.popup-login-form .regsiter_cnt_logo {
    margin: 10px 0;
    text-align: center;
}

.popup-register-form .regsiter_cnt_logo img,
.popup-login-form .regsiter_cnt_logo img {
    max-width: 270px;
}

.agreement_acceptance {
    display: table;
    margin: 12px auto;
    padding-top: 20px;
    font-weight: 500;
    font-size: 12px;
    color: #777776;
    text-align: center;
    font-family: "Lato", sans-serif;
}

.forgot_password {
    display: table;
    margin: 10px auto;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 25px;
}

/*.popup-register-form  .text_2 a{ color: #426AF3}*/
.forgot_password a {
    color: #00AFF3;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    margin-top: 4px;
    display: inline-block;
}

.create_btn {
    font-size: 17px;
}

/* register 30-06-2016 */
.popup-register-block .part_1 {
    width: 100%;
}

.btn-login img {
    width: 20px;
    margin-left: 10px;
}

/* 07:18 PM 07-07-2016 */

.sign_up_title {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    margin: 13px auto;
    display: table;
    font-weight: 600;
}

.para_txt {
    font-size: 14px;
    text-align: justify;
    color: #252525;
}

.popup-register-form .form-control.inp,
.popup-login-form .form-control.inp {
    width: 100%;
    background: #F1F1F1;
    padding: 12px 13px;
    margin-bottom: 8px;
    transition: all 0.5s ease;
    border: none;
    text-align: left;
    text-transform: initial;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
}

.popup-login-form .form-control.inp:focus,
.popup-register-form .form-control.inp:focus {
    -webkit-box-shadow: inset 4px 0px 0px 0px #999999;
    -moz-box-shadow: inset 4px 0px 0px 0px #999999;
    box-shadow: inset 4px 0px 0px 0px #999999;
}

.email-alert {
    font-size: 12px;
}

.email-alert .alert {
    color: #b9252a
}

.vogue {
    background: #A78047 !important;
}

.horizontal_line {
    border-top: 1px solid rgba(153, 153, 153, 0.69);
    border-bottom: 0;
    margin-top: 15px;
    display: table;
    width: 100%;
}

.terms_conditions {
    width: 100%;
}

.already_ac {
    float: left;
    color: #999 !important;
    font-size: 11px !important;
}

.forgot_ac {
    color: #999 !important;
    font-size: 11px !important;
    float: right;
}

/*alerts*/
.alert {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 2px;
}

.alert h4 {
    margin-top: 0;
    color: inherit;
}

.alert .alert-link {
    font-weight: 700;
}

.alert>p,
.alert>ul {
    margin-bottom: 0;
}

.alert>p+p {
    margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-success hr {
    border-top-color: #c9e2b3;
}

.alert-success .alert-link {
    color: #2b542c;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-info hr {
    border-top-color: #a6e1ec;
}

.alert-info .alert-link {
    color: #245269;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-warning hr {
    border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
    color: #66512c;
}

.alert-danger {
    color: #a94442;
    background-color: #FFE7E7;
    border-color: #ebccd1;
}

.alert-danger hr {
    border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
    color: #843534;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #737373;
    font-size: 12px;
}

.has-error input {
    background-color: rgb(255, 231, 231) !important;
}

.has-error.warning input {
    background-color: #ffe6b4 !important;
}

.has-error.success input {
    background-color: #cdffba !important;
}

.has-error .help-block {
    color: #843534;
}

.has-error.warning .help-block {
    color: #66512c;
}

.has-error.success .help-block {
    color: #2b542c;
}

.alert_txt {
    color: #000;
    font-size: 12px
}

.text-center {
    text-align: center
}

.sent_mark {
    color: #71c54e;
    font-size: 63px !important;
    display: table !important;
    margin: 0 auto;
}

/*regwall ends*/

/*Archive page Starts*/
.archiveList ul {
    list-style: none;
}

.archiveList ul li {
    padding: 5px;
}

.archiveList ul li:before {
    content: "\00BB \0020";
}

.archiveList ul li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.archiveListPage h2 small {
    font-size: 15px;
}

.archiveListPage h2 small:before {
    content: "\00BB \009B";
}

/*Archive page Ends*/

/* Sales page */
.sales_page_wrapper {}

.sales_page_wrapper .section {
    width: 100%;
    display: block;
    float: left;
}

.sales_page_wrapper .section:nth-child(odd) {

    background: #f5f5f5;
}

.sales_page_wrapper .section1 .inner_img {
    width: 80%;
    max-width: 474px;
}

.sales_page_wrapper .section1 {
    padding: 60px 0;
    text-align: center;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/sales/sales_bg.png) no-repeat center/cover !important;
}

.sales_page_wrapper .section2 .first_para {
    padding: 0 0;
    text-align: center;
    line-height: 23px;
    font-size: 19px;
}

.sales_page_wrapper .section2 .first_title {
    text-align: center;
    font-size: 45px;
    font-weight: 500;
    line-height: initial;
    /* max-width: 488px; */
    display: table;
    /* margin: 0px auto; */
    word-break: break-word;
    text-align: left;
    margin-bottom: 3%;
    font-family: savoybold, sans-serif;
}

.sales_page_wrapper .section2 {
    padding: 35px 0;
}

.section .inner_section {
    float: left;
    width: 100%;
    margin-top: 55px;
    display: block;
}

.section .inner_section.align_left {}

.section .inner_section.align_right {}

.section .inner_section .inner_img {
    width: 42.1%;
    position: relative;
}

.section .inner_section .inner_para {
    display: inline-block;
    width: 57.9%;
    padding: 30px;
    padding-top: 0;
}

.section .inner_section .inner_para .inner_title {
    text-transform: initial;
    color: #000;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: savoybold, sans-serif;
    line-height: initial;
}

.section .inner_section .inner_para .inner_desc {

    line-height: 25px;

    font-size: 19px;
}

.section .inner_section .inner_para .inner_desc p {
    margin-bottom: 22px;
}

.section .inner_section.align_left .inner_img {
    float: left;
    /* padding-left: 35px; */
}

.section .inner_section.align_left .inner_para {
    float: left;

}

.section .inner_section.align_right .inner_img {
    float: right;
    /* padding-right: 35px; */
}

.section .inner_section.align_right .inner_para {}

.sales_page_wrapper .section3 {
    padding: 108px 10px;
    text-align: center;
}

.sales_page_wrapper .section3 h2 {
    display: table;
    margin: 0 auto;
    width: 90%;
    font-size: 40px;
    max-width: 983px;
    line-height: 46px;
    color: #666666;
}

.sales_page_wrapper .section4 {
    padding: 45px 45px;
}

.sales_page_wrapper .section5 {
    padding: 80px 50px;
}

.sales_page_wrapper .section5 ul {
    width: 100%;
    max-width: 800px;
    display: table;
    margin: 0 auto;
    margin-top: 73px;
}

.sales_page_wrapper .section5 ul li {
    width: 40%;
    float: left;
    color: #333;
    font-size: 22px;
    margin-bottom: 16px;
    border-bottom: 1px solid #DADADA;
    margin-right: 9%;
    margin-left: 1%;
    padding-bottom: 8px;
    line-height: 25px;
}

.sales_page_wrapper .section5 ul li:before {
    content: '|';
    color: red;
    display: inline-block;
    width: 1px;
    margin-left: -20px;
    position: absolute;
    font-family: savoybold, serif;
    /* font-size: 43px; */
}

.sales_page_wrapper .section5 h2 {
    text-align: center;
    font-size: 41px;
    color: #666666;
    font-family: savoyregular, serif;
}

.sales_page_wrapper .section5 h2 i {
    font-style: italic;
    font-weight: 300;
    text-transform: lowercase;
    font-size: 29px;
    color: #858585;
}

.sales_page_wrapper .section6 {
    padding: 50px 0;
    text-align: center;
}

.sales_page_wrapper .section6>ul {
    margin: 18px 0;
    margin-top: 30px;
}

.sales_page_wrapper .section6>ul>li {
    display: inline-block;
    margin: 0 20px;
    border: 2px solid #B2B2B2;
    vertical-align: top;

    margin-bottom: 15px;
}

.sales_page_wrapper .section6>ul>li>ul {}

.sales_page_wrapper .section6>ul>li>ul>li {
    padding: 15px;
    border-bottom: 5px solid #fff;
    background: #F3F3F1;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 16px;
}

.sales_page_wrapper .section6>ul>li>ul>li.inactive {
    text-decoration: line-through;
    opacity: 0.4;
}

.sales_page_wrapper .section6>ul>li>ul>li.head {
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-family: savoyregular, serif;
    font-size: 34px;
    border-bottom: 0;
    padding: 23px 15px;
}

.sales_page_wrapper .section6>ul>li>ul>li.foot_2nd_last {
    min-height: 70px;
    vertical-align: middle;
    border-bottom: 0;
}

.sales_page_wrapper .section6>ul>li>ul>li.foot_2nd_last strong {
    display: table;
    margin: 0 auto;
    font-size: 23px;
    margin-top: 3px;
}

.sales_page_wrapper .section6>ul>li>ul>li.foot {
    border-bottom: 0;
    background: #606060;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    font-weight: 300;
    padding: 19px 0;
}

.sales_page_wrapper .section6>ul>li>ul>li.foot:hover {
    background: #EB0018
}

.sales_page_wrapper .section6 h2 {
    font-family: savoybold, serif;
    font-size: 44px;
}

.sales_page_wrapper .section7 {
    padding: 50px;
    padding-bottom: 0px;
    padding-top: 0;
}

.sales_page_wrapper .section7 h2 {
    text-align: center;
    font-family: savoybold, serif;
    font-size: 1.6em;
    margin-bottom: 5px;
    text-align: left;
    line-height: initial;
}

.sales_page_wrapper .section7 .desc_top {
    margin-bottom: 15px;
    line-height: 16px;
    padding: 0 35px;
}

.sales_page_wrapper .section7 .gform_wrapper {
    max-width: 100%;
}

.sales_page_wrapper .section7 .form {
    max-width: 850px;
    display: table;
    margin: 0 auto;
    width: 100%;
}

.sales_page_wrapper .section7 form {
    max-width: 803px;
    display: table;
    margin: 0 auto;
}

.sales_page_wrapper .section7 form .gform_wrapper form li,
.sales_page_wrapper .gform_wrapper li {
    clear: none !important;
    float: left;
    width: 50% !important;
    position: relative;
}

.inner_section_listing {

    padding-left: 18px;
}

.inner_section_listing li {
    margin-bottom: 11px;
    position: relative;
    padding-left: 2px;
}

.inner_section_listing li::before {
    content: "?";
    color: red;
    display: inline-block;
    width: 20px;
    margin-left: -22px;
    font-size: 35px;
    margin-top: 0;
    line-height: initial;
    margin-top: 0;
    position: absolute;
    top: -10px;
}

.section4 .main_title {

    margin-bottom: 25px;

    text-align: center;

    text-transform: initial;

    font-size: 43px;

    font-family: savoyregular, serif;
}

.section4 .main_title i {
    font-style: italic;
    font-weight: 300;
    text-transform: lowercase;
    font-size: 29px;
    color: #484848;
}

.section4 .listing_li {
    float: left;
    width: 100%;
}

.section4 .listing_li li {
    width: 50%;
    float: left;
    counter-increment: li;
    padding-left: 40px;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-right: 35px;
}

.section4 .listing_li li:nth-child(odd) {
    /* border-bottom: 1px solid #E6E6E6; */
}

.section4 .listing_li li:last-child,
.section4 .listing_li li:nth-child(3) {
    border-top: 1px solid #E6E6E6;
}

.section4 .listing_li li:nth-child(even) {
    padding-left: 65px;
    border-left: 1px solid #E6E6E6;
}

.section4 .listing_li li::before {
    content: counter(li);
    color: #EA0223;
    display: inline-block;
    width: 1em;
    margin-left: -40px;
    position: absolute;
    font-family: savoybold, serif;
    font-size: 56px;
    line-height: 48px;
    letter-spacing: 0;
}

.section4 .listing_li li h4 {
    font-size: 28px;
    margin-bottom: 5px;
    font-family: savoyregular, sans-serif;
}

.section4 .listing_li li p {
    font-size: 16px;
    line-height: 18px;
}

.row {}

.col-md-6 {}

.form-field {
    width: 100%;
    margin: 5px 0;
    padding: 9px;
    border: 0;
    border-radius: 0;
}

.sales_page_wrapper .section7 .form .form-field input[type="text"] {}

.btn {}

.btn-vogue {}

.sales_page_wrapper .section7 .form .gform_wrapper .top_label .gfield_label {
    float: left;
    display: none;
}

.sales_page_wrapper .section7 .form .gform_wrapper label.gfield_label+div.ginput_container {
    width: 96%;
    margin: 1%;
}

.sales_page_wrapper .section7 .form .gform_wrapper label.gfield_label+div.ginput_container .medium {
    width: 100%;
    border: 0;
    padding: 10px;
    margin: 2px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}

.sales_page_wrapper .section7 .form .gform_wrapper label.gfield_label+div.ginput_container select {
    border-radius: 0;
}

.sales_page_wrapper .section7 .form #field_3_9 {
    width: 100% !Important;
}

.sales_page_wrapper .section7 .form #field_3_9 .ginput_container {
    width: 98%;
    margin-left: 0.5%;
}

.sales_page_wrapper .section7 .form .gform_wrapper .gform_footer input[type=submit] {
    width: 100%;
    border: 0;
    background: #606060;
    color: #fff;
    padding: 10px;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

.sales_page_wrapper .section7 .form .gform_wrapper .gform_footer {
    padding: 5px;
    margin: 0;
    width: 99.3%;
}

#gform_confirmation_message_3 {
    font-size: 24px;
    padding: 35px 55px;
    max-width: 516px;
    text-align: center;
    background: #fff;
    border: 1px solid #E8E8E8;
    display: table;
    margin: 0 auto;
}

#gform_confirmation_message_3 h1 {
    font-family: savoybold, serif;
    font-size: 1.5em;
    text-transform: uppercase;
    color: #3C3C3C;
    margin-bottom: 5px;
}

.sales_page_wrapper .section5 ul li:nth-child(odd) {
    margin-top: -23px;
}

.sales_page_wrapper .section5 ul li:first-child {
    margin-top: 0;
}

.sales_page_wrapper .gform_wrapper .ginput_container+.gfield_description.validation_message {
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    font-size: 13px;
    padding: 0 !important;
    font-weight: 300;
    color: #c50000;
    line-height: initial;
    padding-left: 7px !important;
}

.sales_page_wrapper .gform_wrapper li.gfield.gfield_error {

    background: none;

    border: 0;

    margin-top: 0 !important;
}

@media (max-width:768px) {
    .sales_page_wrapper .section1 {
        padding: 30px 0;
    }

    .sales_page_wrapper .section1 .inner_img {
        width: 70%;
    }

    .sales_page_wrapper .section2 .first_title {
        font-size: 21px;
        width: 95%;
        line-height: 25px;
    }

    .sales_page_wrapper .section2 .first_para {
        padding: 0 15px;
        text-align: center;
    }

    .sales_page_wrapper .inner_img span {
        padding: 5px 18px !important;
        line-height: 20px !important;
        font-size: 15px !important;
    }

    .section .inner_section .inner_para .inner_title {

        font-size: 29px;

        line-height: initial;
    }

    .section .inner_section {
        margin-top: 35px;
    }

    .section .inner_section .inner_img {
        width: 86%;
        margin: 0 7%;
    }

    .section .inner_section .inner_para {
        width: 86%;
        margin: 0 7%;
        padding: 15px 0;
        padding-bottom: 0;
    }

    .sales_page_wrapper .section3 {
        padding: 30px 10px;
    }

    .sales_page_wrapper .section3 h2 {
        font-size: 23px;
        line-height: 29px;
        text-align: left;
    }

    .sales_page_wrapper .section4 {
        padding: 25px;
    }

    .sales_page_wrapper .section5 {
        padding: 25px;
    }

    .sales_page_wrapper .section5 ul li {
        width: 100%;
    }

    .sales_page_wrapper .section5 h2 {

        font-size: 29px;
    }

    .sales_page_wrapper .section6 h2 {

        font-size: 30px;
    }

    .sales_page_wrapper .section5 ul {

        margin-top: 22px;
    }

    .section4 .main_title {
        margin-bottom: 13px;
        font-size: 23px;
    }

    .section4 .listing_li li {
        width: 100%;
        border: 0 !important;
        padding-left: 35px !important;
        padding-right: 0;
    }

    .sales_page_wrapper .section7 {
        padding: 25px;
    }

    .sales_page_wrapper .section7 .desc_top {
        padding: 0;
    }

    .sales_page_wrapper .section7 .gform_wrapper {
        /* padding: 0; */
    }

    .sales_page_wrapper .section7 form .gform_wrapper form li,
    .sales_page_wrapper .gform_wrapper li {
        width: 100% !important;
    }

    .sales_page_wrapper .section7 .form #field_3_9 {

        width: 98%;

        margin-left: 0.5% !important;
    }

    .sales_page_wrapper .section5 ul li:first-child,
    .sales_page_wrapper .section5 ul li:nth-child(odd) {
        margin-top: 0;
    }


}

/* media queries ends here */

.sales_page_wrapper .img_wrap_sale {
    width: 100%;
}

.sales_page_wrapper .inner_img span {
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 5px 33px;
    width: 100%;
    right: 0;
    left: 0;
    font-family: "Lato", sans-serif;
    line-height: 25px;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 300;
}

.sales_page_wrapper .ginput_container_select:before {
    content: '';
    right: 18px;
    top: 12px;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    pointer-events: none;
    display: block;
    background: transparent url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/drop_arrow.png") no-repeat right center/cover;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 10000;
    /* cursor: pointer; */
}

.sales_page_wrapper .section6>ul>li.active {
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.75);
}

.sales_page_wrapper .section .star {
    font-family: "Lato", sans-serif;
}

/* Sales page ends */

#native_story iframe {
    width: 100vw !important;
}


.published_by,
.sponsored_by {
    color: #999;
    font-weight: 600;
    font-size: 12px;
}

.sponsored_by_pretext {
    font-size: 14px;
    color: #777;
}



/* AD VERSION 2 160822 */

.open_other_social {
    display: none
}

.single_story_post_meta {
    border-left: 1px solid;
    padding-left: 13px !important;
}

@media (max-width:768px) {

    html #wpadminbar {
        display: none !important;
    }

    .after_login_part .name {
        padding-right: 2px !important;
        padding-left: 2px !important;
        margin-right: 0px;
    }

    .after_login_part.mobile .profile_icon {
        width: 19px !important;
        padding-right: 0 !important;
        margin-top: 5px !important;
        border-right: 0 !important;
        margin-right: 10px;

    }

    .search-btn {
        margin-top: 9px;
        font-size: 25px;
        margin-right: 10px;
        background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/search.svg) no-repeat center;
    }

    .search-btn .fa {
        display: none
    }

    .single-story-block .breadcrumb-blk {
        margin: 10px 0 10px 0 !important;
    }

    .breadcrumbs li {
        padding: 1px 5px;
        font-size: 13px;
    }

    .single-story-block .post-header h1 {
        font-size: 29px !important;
        font-family: savoyregular, serif;
    }

    .socialShare.socialShare-top.social-sharer-buttons-article-top {
        display: block;
    }

    /*.socialShare ul li a{
        width: 42px!important;
        height: 33px!important;
        font-size: 20px!important;
        line-height: 34px!important;
    }*/
    .socialShare ul li {
        margin-right: 2px !important;
    }

    .socialShare.socialShare-top.social-sharer-buttons-article-top ul .total_view_share {
        margin-right: 10px !important;
    }

    .socialShare.socialShare-top.social-sharer-buttons-article-top ul .total_view_share span strong {

        font-size: 23px !important;

        line-height: 33px !important;
    }

    .single_story_post_meta .sponseredMeta {
        margin-right: 0 !important;
    }

    .single_story_post_meta .author-name {
        color: #999999;
        font-family: "Lato", sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        padding: 0 !important;
        line-height: initial;
    }

    .vertical-social-blk {
        display: none !important
    }

    .slideshowReadMore {
        width: 100%;
        border-radius: 2px !important;
        /* background: url(images/slideshow-icon.jpg) no-repeat #999 22% center; */
        font-size: 14px;
        padding-left: 0px;
        font-size: 17px;
    }

    .fly-menu-btn {
        color: #636363
    }

    .story article .nextbutton {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .slideshowReadMore .fa {

        margin-left: 15px;
    }

    .container,
    .row {
        padding: 0 20px 0 20px
    }

    .relatedStories {
        background: #fff;
    }

    .relatedStoriesSlider h3 {
        border-top: 1px solid;
        margin-bottom: 8px;
    }

    .relatedStoriesSlider h3 a {
        color: #000;
        font-size: 15px;
        font-weight: 700;
        padding-top: 0;
        display: inherit;
    }

    .relatedStories .item .desc a {
        font-size: 14px;
        line-height: initial;
        height: 35px;
        color: #000;
        opacity: 1;
    }

    .relatedStories .desc .sponsored {
        color: #999;
        background: #fff;
        padding-left: 0;
        margin-left: 0;
    }

    .relatedStories .owl1-cols {
        padding-left: 0;
        padding-right: 10%;
        padding-top: 0;
        padding-bottom: 8%;
    }

    .story article p {
        line-height: 27px;
    }

    .post-header .post-excerpt {
        line-height: 1.3em;
    }

    .single-story-block .post-header h1 {
        line-height: 32px;
    }

    .single_story_post_meta .author-name a {
        font-size: 13px;
        text-transform: initial;
        border-right: 1px solid;
        padding-right: 5px;
    }

    .single_story_post_meta {
        margin: 2px 0;
        margin-top: 15px !important;
        height: auto;
    }

    .single_story_post_meta .post_cont:first-child {
        padding-right: 0 !important;
        margin-right: 6px !important;
        min-height: initial;
    }

    .post-header .post-meta .post-date {
        font-family: "Lato", sans-serif;
        font-weight: 500;
        text-transform: initial;
        line-height: initial;
        min-height: initial;
    }

    .in-story-slideshow .top .instory-slide-counter {

        text-align: left;
        line-height: 34px;
    }

    .mobileSocialShare .social_icon_wrapper li {
        /* width: 14.4%; */
    }

    .after_login_part:hover .login_menu {
        position: absolute !important;
        width: 150px;
        top: 43px;
        right: 11px;
    }

    .after_login_part.mobile {
        display: inline-block;
        position: relative;
    }

    .story article p.p1 {
        line-height: 16px;
    }

    .in-story-slideshow .top {
        border-top: 1px solid #999;
    }

    .slideshowReadMoreContent .in-story-slideshow .top {
        border-top: 0 !important
    }

    body.single .story figure {
        margin-right: 0px;
    }

    /*.socialShare ul li a {
        width: 33px!important;
        height: 33px!important;
        font-size: 14px!important;
        line-height: 34px!important;
        border-radius: 100%;
    }*/


    .socialShare.socialShare-top li:nth-child(n+4) {
        width: 0;
        overflow: hidden;
        padding-right: 0;

        transition: all 0.5s ease;
    }


    .open_other_social {
        width: 33px !important;
        height: 33px;
        text-align: center;
        background: #f4f4f4;
        line-height: 16px;
        font-size: 27px;
        /* border: 1px solid #999; */
        margin-right: 0 !important;
        padding-right: 0 !important;
        border-radius: 100%;
        cursor: pointer;
        -webkit-box-shadow: 0px 0px 0px 1px rgba(222, 222, 222, 1);
        -moz-box-shadow: 0px 0px 0px 1px rgba(222, 222, 222, 1);
        box-shadow: 0px 0px 0px 1px rgba(222, 222, 222, 1);
        display: block;
        line-height: 31px;
        font-size: 21px;

        margin-left: -5px;
    }

    /* .socialShare.socialShare-top.social-sharer-buttons-article-top ul:hover li{      
        width: auto;        
        padding-right: 0;       
        transition: all 0.5s ease;
    }
    .open_other_social:hover + .socialShare.socialShare-top ul li{
    width: auto;        
        padding-right: 0;   
    } */

    .open_other_social {
        display: block
    }

    .socialShare.socialShare-top.social-sharer-buttons-article-top ul {
        min-width: 100%;
    }

    .single_story_post_meta {
        border-left: 0 !important;
        padding-left: 0px !important;
    }

    .sidebar-newsletter {
        display: none
    }

    .relatedStories .item .desc {
        /*height: auto!important;*/
        max-height: 75px
    }

    .story .relatedStoriesSlider {
        border-bottom: 1px solid #999;
    }

    .sso_story_page_wall .sso_inner_content {}

    .sso_story_page_wall .sso_inner_content .wall_logo {}

    .sso_story_page_wall .popup-register-block,
    .sso_story_page_wall .popup-login-block {
        width: 100%;
        min-width: 100%;
    }

    .sso_story_page_wall .sso_inner_content .wall_part1 {
        max-width: 100%
    }

    .reg_wall_bullets {
        width: 100%;
        float: left;
        padding-left: 15px;
    }

    .reg_wall_bullets li {
        text-align: left;
        margin-bottom: 9px;
        list-style: initial;
        line-height: initial;
    }


    .relatedStories .owl-item:nth-child(even) .owl1-cols {
        padding-right: 5%;
        padding-left: 5%;
    }

    .relatedStories .owl-item:nth-child(odd) .owl1-cols {
        padding-right: 5%;
        padding-left: 5%;
    }

    .relatedStories.owl-carousel {
        width: calc(100% + 5%);
        margin-left: -2.5%;
    }

}

/* media queries ends here  */

.single_story_post_meta .author-name {
    color: #999;
    text-transform: initial;
}

/* AD VERSION 2 160822 ends */

.manage_newsletter_preferences_wrap .part_1 {
    display: table;
    float: left;
    width: 50%;
}

.manage_newsletter_preferences_wrap .part_1 .div2 {
    float: left;
    margin-top: 15px;
    width: calc(100% - 65px);
}

.manage_newsletter_preferences_wrap .part_1 .inp_field {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 10px;
    margin-bottom: 2px;
}

.manage_newsletter_preferences_wrap .part_1 small {
    font-family: "Lato", sans-serif;
    color: #999999;
    font-size: 13px;
    margin-bottom: 15px;
    float: left;
    width: 100%;
}

.manage_newsletter_preferences_wrap .part_1 ul {
    float: left;
    margin-top: 11px;
    /* width: 66%; */
}

.manage_newsletter_preferences_wrap .part_1 ul li {
    min-width: 128px;
    float: left;
    color: #999999;
    font-weight: 600;
    padding-right: 10px;
}

.manage_newsletter_preferences_wrap .part_1 ul li .chk_box_div {
    width: 100%;
    /* margin-right: 10px; */
}

.manage_newsletter_preferences_wrap .part_1 ul li .chk_box_div label {}

.manage_newsletter_preferences_wrap .part_1 ul li .chk_box_div label .chk_box {
    margin-left: 10px;
}

.manage_newsletter_preferences_wrap .part_1 ul li .chk_box_div label .chk_box {
    float: right;
    margin-top: 5px;
}

.manage_newsletter_preferences_wrap .part_1 .txt1 {
    margin-top: 15px;
    float: left;
    padding-right: 15px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 600;
}

.manage_newsletter_preferences_wrap .cross_chks .chk_box:checked {
    content: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/cross.png");
}

.manage_newsletter_preferences_wrap .btn-vogue {
    background: #999999;
    color: #fff;
}

.manage_newsletter_preferences_wrap .btn {
    border: 0;
}

.manage_newsletter_preferences_wrap .btn_wrapp {
    text-align: center;
    border-top: 2px solid #EFEFEF;
}

.manage_newsletter_preferences_wrap .cancel_btn {
    color: #000 !important;
    border: 1px solid #D7D7D7;
}

.manage_newsletter_preferences_wrap .mobile_accordian {
    display: none
}

.li_acc .li_acc_title {}

.li_acc .li_acc_content {
    transition: all 1s ease;
    padding: 0 10px;
    max-height: 0;
    -webkit-transition: max-height 1s;
    -moz-transition: max-height 1s;
    -ms-transition: max-height 1s;
    -o-transition: max-height 1s;
    transition: max-height 0.8s;
    overflow: hidden;
    height: 0;
    //not work with css transitions    
    max-height: 0;
}


.manage_newsletter_preferences_wrap .mobile_accordian .vogue {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/vogue-logo.svg) !important;
    background-repeat: no-repeat !important;
    background-size: auto 50px !important;
    background-position: center 10px !important;
}

.manage_newsletter_preferences_wrap .mobile_accordian .gq {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/gq-logo.png) !important;
}

.manage_newsletter_preferences_wrap .mobile_accordian .ad {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/ad-logo.png) !important;
}

.manage_newsletter_preferences_wrap .mobile_accordian .cnt {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/cnt-logo.png) !important;
}

.manage_newsletter_preferences_wrap .li_acc_title {
    width: 100%;
    min-height: 75px;
    background-size: 80% !important;
    background-repeat: no-repeat !important;
    background-size: auto 50px !important;
    background-position: center 10px !important;
    background-color: #F9F9F9 !important;
    border: 2px solid #E6E6E6;
    /*margin-bottom: 10px;*/
}

.manage_newsletter_preferences_wrap .part_1 ul li:nth-child(odd) {
    clear: left
}

@media (max-width:640px) {
    .manage_newsletter_preferences_wrap .mobile_accordian {
        display: block
    }

    .manage_newsletter_preferences_wrap .mobile_accordian .li_acc {
        margin-bottom: 10px;
    }

    .manage_newsletter_preferences_wrap .mobile_accordian .li_acc.active {}

    .manage_newsletter_preferences_wrap .mobile_accordian .li_acc.active .li_acc_content

    /*, .manage_newsletter_preferences_wrap .mobile_accordian .li_acc:hover .li_acc_content */
        {
        display: block;
        background: #F9F9F9;
        padding: 10px;
        /* opacity: 1; */
        max-height: 500px;
        height: 100%;
    }

    .manage_newsletter_preferences_wrap .part_1 ul li {
        width: 100%;
    }

    .manage_newsletter_preferences_wrap .part_1 ul li .chk_box_div label {
        width: 100%;
        display: table;
    }

    .manage_newsletter_preferences_wrap .part_1 ul li .chk_box_div label .chk_box {
        float: right;
    }

    .manage_newsletter_preferences_wrap .mobile_accordian .li_acc .li_acc_content .chk_box_div {
        width: 100%;
    }

    .manage_newsletter_preferences_wrap .mobile_accordian .li_acc .li_acc_content .first-checkbox {
        margin-bottom: 0
    }

    .manage_newsletter_preferences_wrap .desktop_accordian {
        display: none
    }

    .manage_newsletter_preferences_wrap .part_1 {
        width: 100%
    }

    .manage_newsletter_preferences_wrap .title_head {}

    .manage_newsletter_preferences_wrap .part_1>span {
        font-size: 16px;
        line-height: 9px;
    }

    .manage_newsletter_preferences_wrap .part_1 .txt1 {
        width: 100%;
    }

    .manage_newsletter_preferences_wrap .part_1 .div2 {
        margin-top: 5px;
        width: 100%;
    }

    .manage_newsletter_preferences_wrap .part_1 .div2 .cross_chks {
        width: 100%
    }
}

/****************Manage Newsletter Preferences***************/

.manage_newsletter_preferences_wrap {}

.manage_newsletter_preferences_wrap .title_head {}

.manage_newsletter_preferences_wrap {
    font-family: savoyregular, serif;
    border-top: 2px solid #EEEEEE;
    /* padding-top: 20px; */
}

.manage_newsletter_preferences_wrap .row {
    padding-top: 20px;
}

.manage_newsletter_preferences_wrap .title_head {
    font-family: savoybold, serif;
    color: #000;
    font-weight: 300;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.manage_newsletter_preferences_wrap .news_content {
    padding-bottom: 0px;
    margin-bottom: 23px;
    /* border-bottom: 2px solid #F3F3F3; */
}

.manage_newsletter_preferences_wrap .news_content ul {
    margin: 25px -10px;
}

.manage_newsletter_preferences_wrap .vogue .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/vogue-logo.svg);
    background-size: 80%;
}

.manage_newsletter_preferences_wrap .gq .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/gq-logo.png);
}

.manage_newsletter_preferences_wrap .ad .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/ad-logo.png);
}

.manage_newsletter_preferences_wrap .cnt .img_div {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/all_logos/cnt-logo.png);
}

.manage_newsletter_preferences_wrap .img_div {
    width: 100%;
    min-height: 100px;
    background-repeat: no-repeat;
    background-size: auto 60px;
    background-position: center;
    background-color: #F6F4F5;
    border: 2px solid #E6E6E6;
    /*margin-bottom: 10px;*/
}

.manage_newsletter_preferences_wrap .chk_box {
    width: 14px !important;
    height: 14px;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.manage_newsletter_preferences_wrap .chk_box_div label {
    width: 100%;
}

.manage_newsletter_preferences_wrap .chk_box {
    content: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/without_check.png");
    display: inline-block;
    vertical-align: middle;
    margin-top: 0px;
    margin-right: 10px;
}

.news_content_2 .manage_interests_tags li label .chk_box:checked {
    content: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/cross.png");
}

.manage_newsletter_preferences_wrap .chk_box:checked {
    content: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/check.png");
    height: 14px;
}

.manage_newsletter_preferences_wrap .gq {}

.manage_newsletter_preferences_wrap .vogue {
    background: #fff !important
}

.manage_newsletter_preferences_wrap ul li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab {
    width: calc(25% - 2.5px);
    float: left;
    /* display: block; */
    padding-left: 10px;

}

.manage_newsletter_preferences_wrap .ui-tabs-tab .img_div {
    background-color: #fff !important
}

.manage_newsletter_preferences_wrap .ui-tabs-active .img_div {
    background-color: #f6f4f5 !important;
    border-bottom: 0
}

.newsletter_tabs {
    background-color: #f6f4f5;
    clear: both;
    padding: 20px;
    border: 2px solid #E6E6E6;
    border-top: 0;
}

.checkboxes {
    display: table;
    width: 100%;
}

.first-checkbox {
    margin-bottom: 10px;
}

.chk_box_div {
    float: left;
    width: 25%;
    font-family: "Lato", sans-serif;
    font-size: 12px;
}

.chk_box_div label {
    vertical-align: super;
}

.next-story-down .fa {
    margin-left: 20px;
}

.tag_span {
    display: table;
    line-height: initial !important;
}

.reg_wall_bullets {
    width: 100%;
    float: left;
    padding-left: 15px;
}

.reg_wall_bullets li {
    text-align: left;
    margin-bottom: 9px;
    list-style: initial;
    line-height: initial;
}

/****************Manage Newsletter Preferences***************/




/* recommended_actions page */
.recommended_actions_content {}

.recommended_actions_content .two-cols {
    margin: 1%;
    width: 48%;
    min-height: 310px;
}

.recommended_actions_content .two-cols h3 {
    margin-top: 0;
}

.recommended_actions_content .two-cols .postexcerpt {
    margin-top: 8px;
}

.recommended_actions_content .drop_left2 {
    padding-left: 7px;
}

.recommended_actions_content .drop_left {
    font-size: 28px;
    font-family: 'savoybold';
}

.recommended_actions_content .img-block {
    border: 1px solid #D0D0D0;
}

.rcm_act {
    margin-bottom: 0 !Important;
    font-size: 32px !Important;
}

.recommended_actions_content .img-block {
    border: 0 !important
}

.recommended_actions_content .img-block img {
    margin-bottom: 0
}

@media (max-width:768px) {
    .list_brands .newsrow>.row {
        padding: 0;
    }

    .recommended_actions_content .two-cols {

        width: 100%;
        min-height: initial;
    }

    .recommended_actions_content .two-cols h3 {

        line-height: 17px;
    }

    .recommended_actions_content .drop_left2 {
        padding-left: 0;
    }

    .recommended_actions_content .img-block {
        border: 1px solid #D0D0D0;
    }

    .recommended_actions_content .drop_left {
        padding-left: 0;
    }

    .rcm_act {

        margin-bottom: 0 !Important;
        font-size: 28px !Important;
    }
}

/* recommended_actions page */



/* reg_wall_v2 */

.registration_wall_container_2 .content_2 .div_2 {
    display: none
}

.reg_wall_v2 {
    position: fixed;
    bottom: 0;
    max-width: 867px;
    z-index: 100000000;
    display: block;
    width: 100%;
    text-align: center;
    min-height: 150px;
    background: rgba(255, 255, 255, 0.47);
    background: -webkit-gradient(left top, left bottom, color-stop (0%, rgba(255, 255, 255, 0)),
        color-stop(27%, rgba(255, 255, 255, 0.96)),
        color-stop(50%, rgba(255, 255, 255, 0.89)),
        color-stop(100%, rgb(255, 255, 255)));
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.98) 80%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede', endColorstr='#e2e2e2', GradientType=0);
}

.reg_wall_v2 .reg_wall_box {
    display: inline-block;
    margin: 0 auto;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    vertical-align: bottom;
    max-width: 550px;
    width: 100%;
    padding: 15px;
}

.reg_wall_v2 .reg_wall_box .title_txt {
    font-size: 18px;
    color: #787878;
    padding-bottom: 4px;
    margin-bottom: 10px;
    border-bottom: 2px solid #bbbbbb;
}

.reg_wall_v2 .reg_wall_box .title_txt_2 {
    color: #000;
    font-weight: 700;
}

.reg_wall_v2 .reg_wall_box .title_txt_3 {
    /* color: #000; */
}

.reg_wall_v2 .reg_wall_box .content_box {}

.reg_wall_v2 .reg_wall_box .content_box .content_title {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.reg_wall_v2 .reg_wall_box .content_box .content_title .txt1 {
    color: #CE061E;
    margin-bottom: 15px;
    display: inline-block;
}

.reg_wall_v2 .reg_wall_box .content_box .content_title .txt2 {}

.reg_wall_v2 .reg_wall_box .content_box .content_div {}

.reg_wall_v2 .reg_wall_box .content_box .content_div .btn-1 {
    float: right;
}

.reg_wall_v2 .reg_wall_box .content_box .content_div .btn-2 {
    float: left;
    margin-bottom: 5px;
}

.reg_wall_v2 .reg_wall_box .content_box .content_div .txt3 {
    display: inline-block;
    width: 50%;
    text-align: right;
    color: #9a9a9a;
    font-size: 13px;

    opacity: 0;
}

.reg_wall_v2 .reg_wall_box .content_box .content_div .txt2 {

    width: 49%;

    display: inline-block;

    font-size: 13px;

    text-align: left;
}

.btn-gq {
    background: #999999;
}

.reg_wall_v2 .reg_wall_box .btn {
    display: block;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    border-radius: 4px;
    min-width: 115px;
    border: 0;
    margin-bottom: 5px;
}

.reg_wall_v2 .close_reg_wall {
    float: right;
    position: absolute;
    right: -17px;
    margin-top: 1px;
    font-size: 19px;
    cursor: pointer;
}

.reg_wall_v2 .reg_wall_box .content_box .content_div .txt2 a {
    color: #9a9a9a;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #a57f4b;
}

.reg_wall_v2 .why_register {
    color: #9a9a9a;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #999999;
    font-size: 14px;
    float: left;
    margin-left: 10px;
    margin-top: 6px;
}

@media (max-width:768px) {
    .reg_wall_v2 {
        min-height: 185px;
        left: 0;

        min-width: 100%;
        right: 0;
        background: rgba(255, 255, 255, 0.47);
        background: -webkit-gradient(left top, left bottom, color-stop (0%, rgba(255, 255, 255, 0)), color-stop(27%, rgba(255, 255, 255, 0.96)), color-stop(50%, rgba(255, 255, 255, 0.98)), color-stop(100%, rgb(255, 255, 255)));
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.98) 80%, rgb(255, 255, 255) 100%);
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.98) 80%, rgb(255, 255, 255) 100%);
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.98) 80%, rgb(255, 255, 255) 100%);
        background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.98) 80%, rgb(255, 255, 255) 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.98) 80%, rgb(255, 255, 255) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede', endColorstr='#e2e2e2', GradientType=0);
    }

    .reg_wall_v2 .reg_wall_box {

        padding: 10px;

        padding-top: 6px;

    }

    .reg_wall_v2 .reg_wall_box .title_txt {
        font-size: 13px;
        margin-bottom: 8px;
        padding-bottom: 1px;
        font-weight: 600;
        padding-top: 3px;
    }

    .reg_wall_v2 .close_reg_wall {
        right: 4px;
        font-size: 15px;
        top: -8px;
        width: 25px;
    }

    .reg_wall_v2 .reg_wall_box .content_box {}

    .reg_wall_v2 .reg_wall_box .btn {
        min-width: 88px;
        line-height: 25px;
    }

    .reg_wall_v2 .reg_wall_box .content_box .content_div .txt2 {

        width: 48%;

        font-size: 11px;
    }

    .reg_wall_v2 .reg_wall_box .content_box .content_div .txt3 {
        font-size: 11px;
    }

    .new_cta {
        display: none
    }

    .reg_wall_v2 .reg_wall_box .content_box .content_div .sep {
        display: table;
        width: 100%;
    }

    .reg_wall_v2 .why_register {
        font-size: 11px;
        margin-top: 2px;
    }
}

@media (min-width:374px) and (max-width:768px) {
    .reg_wall_v2 .reg_wall_box .title_txt {
        font-size: 15.5px;
        padding-top: 4px;
    }
}

/* reg_wall_v2 ends */

/* CTA - Sept 2016 */
.contest_cta {
    display: table;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid #E8E6E7;
    border-bottom: 1px solid #E8E6E7;

}

.new_cta {
    margin-bottom: 20px;
}

.contest_cta .part_1 {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #E8E6E7;
}

.contest_cta .part_1 .subscribe_img_story {
    margin: 0;
    height: 94px !important;
}

.contest_cta .part_1 .txt_para {
    width: calc(100% - 180px);
    display: inline-block;
    margin-left: 10px;
}

.contest_cta .part_1 .txt_para .txt1 {
    font-size: 21px;
    line-height: initial;
    margin-bottom: 2px;
}

.contest_cta .part_1 .txt_para .txt2 {
    font-size: 11px;
    color: #545454;
}

.contest_cta .part_1 .txt_para .txt3 {
    font-family: 'savoybold';
    font-size: 18px;
    line-height: initial;
    background-color: white;
}

.contest_cta .part_2 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0 18px 0 27px;
}

.new_cta .btn_click_here {
    display: block;
    text-align: center;
    font: 400 18px/50px 'Lato', sans-serif;
    color: #fff;
    line-height: 38px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    border-radius: 4px;
    min-width: 115px;
}


.offers_cta .subscribe_img_main_a {
    display: inline-block;
    margin: 0;
    width: 86px;
    height: 111px;
    vertical-align: bottom;
}

.offers_cta .subscribe_img_main {
    width: 86px;
    margin: 0;
}

.offers_cta {
    border-top: 1px solid #E8E6E7;
    border-bottom: 1px solid #E8E6E7;
    width: 100%;
    display: table;
}

.offers_cta .part_1 {
    padding: 0px 12px;
    display: table-cell;
    width: calc(100% - 286px);
    vertical-align: middle;
}

.offers_cta .part_1 .img2 {
    display: inline-block;
    margin: 0;
    vertical-align: bottom;
    margin-bottom: 6px;
}

.offers_cta .part_1 .txt_para {
    width: calc(100% - 169px);
    display: inline-block;
    margin: 13px 0;
}

.offers_cta .part_1 .txt_para .txt1 {
    color: #676767;
    margin-bottom: 5px;
}

.offers_cta .part_1 .txt_para .txt2 {
    color: #000;
    font-size: 23px;
    line-height: initial;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0px;
    font-weight: 600;
    padding-right: 14px;
}

.offers_cta .part_2 {
    padding: 9px 10px;
    width: 172px;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.offers_cta .part_2 .txt1 {
    color: #676767;
    font-size: 17px;
    line-height: initial;
    display: inline-block;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    letter-spacing: -0.2px;
}

.offers_cta .part_2 .txt2 {
    color: #000;
    margin-left: 5px;
    font-size: 15px;
    letter-spacing: -0.5px;
}

.offers_cta .part_2 .txt3 {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 49px;
    line-height: initial;
    vertical-align: bottom;
    line-height: 43px;
    margin-top: 3px;
}

.offers_cta .part_2 .txt3 .fa {
    font-size: 37px;
    vertical-align: bottom;
    margin-right: 5px;
}

.offers_cta .part_2 .txt4 {
    letter-spacing: -2px;
}

.surveys_cta {
    display: table;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid #E8E6E7;
    border-bottom: 1px solid #E8E6E7;

}

.surveys_cta {

    /* padding: 7px 0; */
}

.surveys_cta .part_1 {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #E8E6E7;
}

.surveys_cta .part_1>a {

    display: inline-block;

    height: 89px;

    vertical-align: top;
}

.surveys_cta .part_1 .subscribe_img_story {
    margin: 0;
}

.surveys_cta .part_1 .txt_para {
    width: calc(100% - 180px);
    display: inline-block;
    margin-left: 10px;
}

.surveys_cta .part_1 .txt_para .txt1 {
    font-size: 21px;
    line-height: initial;
    margin-bottom: 2px;
}

.surveys_cta .part_1 .txt_para .txt2 {
    font-size: 11px;
    color: #545454;
}

.surveys_cta .part_1 .txt_para .txt3 {
    font-family: 'savoybold';
    font-size: 18px;
    line-height: initial;
    background-color: white;
}

.surveys_cta .part_2 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0 18px 0 27px;
}

.ad {
    background: #999999
}

.contest_cta .part_1>a {
    display: inline-block;
    vertical-align: top;
    height: 89px;
}

/* CTA - Sept 2016 ends */


.cta_6 {}

.cta_6_img {
    max-width: 105px !important;
    float: left;
    margin-bottom: 0 !important;
}

.cta_6_content {
    margin-left: 15px;
    float: left;
    margin-top: 11px;
    width: calc(100% - 120px);
}

.cta_6_content .txt1 {}

.cta_6_content .txt2 {
    font-weight: 700;
    text-transform: uppercase;
}


.cta7_img {
    top: -10px !important;
    margin-bottom: -20px !Important;
    margin-right: 5px !Important;
    position: relative;
}

.cta_8 {}

.cta_8 .part_1 {
    border-right: 0;
}

.cta_8 .txt_para {}

.cta_8 .txt_para .portfolio {
    background: #000;
    color: #fff;
    padding: 5px 15px;
    display: table;
    line-height: initial;
    margin-top: 5px;
}

.cta_8 .txt_para .portfolio a {
    font-size: 15px;
    color: #fff;
    vertical-align: middle;
    display: table-cell;
}

.cta_8 .cta7_img {
    max-width: 220px;
    vertical-align: middle;
    margin: 20px 0px 0 0 !Important;
}

.cta_8 .arrow_box:after,
.cta_8 .arrow_box:before {
    display: none;
}

.topic {
    font-size: 16px;
    line-height: initial;
}

.topic .part_1 {}

/*.topic .part_1 .cta_user_name{
    font-weight: 700;
}*/
.topic .part_1 .txt2 {}

.topic .part_1 .txt1 {}

.topic .part_2 {
    padding-top: 0;
    vertical-align: middle;
    height: auto;
}

.topic .part_2 form {

    /* margin: 10px 0; */

    height: auto;
}

.newsletter-msg {
    padding: 0
}

@media (max-width:768px) {
    .new_container .left_part_story {
        width: 100%;
        padding-left: 0;
    }

    .new_container .right_part_story {
        width: 100%;
        padding-left: 0;
        position: relative;
    }

    .contest_cta .part_1 {
        /* float: left; */
    }

    .contest_cta .part_1>a {
        height: auto;
        max-width: 80px;
        max-height: 46px;
        vertical-align: top;
        margin-top: 3px;
    }

    .contest_cta .part_1>a img {
        margin: 0;
        max-height: 45px !important;
    }

    .contest_cta .part_2 {
        padding: 0 5px 0 5px;
        /* float: left; */
    }

    .contest_cta .part_1 .txt_para {
        width: calc(100% - 90px);
        margin-left: 7px;
    }

    .new_cta .btn_click_here {
        min-width: 80px;
        font-size: 12px;
        line-height: 26px;
        min-width: 64px;
    }

    .contest_cta {
        padding: 7px 0;
    }

    .contest_cta .part_1 .txt_para .txt1 {
        font-size: 14px;
        font-weight: 600;
    }

    .contest_cta .part_1 .txt_para .txt2 {
        font-size: 10px;
        line-height: initial;
    }

    .contest_cta .part_1 .txt_para .txt3 {
        font-size: 13px;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 104px;
    }

    .offers_cta .subscribe_img_main_a {
        width: 44px;
        height: 45px;
    }

    .offers_cta .subscribe_img_main {}

    .offers_cta .part_1 {
        padding: 4px;
        width: calc(100% - 40px);
        PADDING-RIGHT: 0;
    }

    .offers_cta .part_1 .txt_para {
        width: calc(100% - 65px);
        margin: 4px 0;
        margin-top: 0;
    }

    .offers_cta .part_1 .txt_para .txt1 {
        font-size: 8px;
        font-weight: 600;
        line-height: initial;
        margin-bottom: 0px;
    }

    .offers_cta .part_1 .txt_para .txt2 {
        font-size: 8px;
        padding-right: 0;
    }

    .offers_cta .part_1 .img2 {
        max-width: 54px;
        margin-bottom: 0;
    }

    .offers_cta .part_2 {
        width: auto;
        padding: 3px 2px;
        max-width: 80px;
    }

    .offers_cta .part_2 .txt1 {
        font-size: 10px;
    }

    .offers_cta .part_2 .txt2 {
        font-size: 10px;
        margin-left: 3px;
    }

    .offers_cta .part_2 .txt3 {
        font-size: 17px;
        line-height: initial;
        margin-top: 0;
        vertical-align: TOP;
    }

    .offers_cta .part_2 .txt4 {

        letter-spacing: -1px;
    }

    .offers_cta .part_2 .txt3 .fa {

        font-size: 17px;

        margin-right: 2px;
    }

    .surveys_cta {
        padding: 7px 0;
    }

    .surveys_cta .part_1>a {
        height: auto;
        max-width: 80px;
        max-height: 46px;
        vertical-align: top;
        margin-top: 3px;
    }

    .surveys_cta .part_1>a img {
        margin: 0;
        max-height: 45px !important;
    }

    .surveys_cta .part_1 .txt_para {
        width: calc(100% - 90px);
        margin-left: 7px;
    }

    .surveys_cta .part_1 .txt_para .txt1 {
        font-size: 14px;
        font-weight: 600;
    }

    .surveys_cta .part_1 .txt_para .txt2 {
        font-size: 10px;
        line-height: initial;
    }

    .surveys_cta .part_1 .txt_para .txt3 {
        font-size: 13px;
        margin-top: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 104px;
    }

    .surveys_cta .part_2 {
        padding: 0 5px 0 5px;
    }

    .cta_6 {
        margin: 8px 0;
    }

    .cta_6_img {
        max-width: 60px !important;
        padding: 5px 0;
    }

    .cta_6_content {
        width: calc(100% - 65px);
        margin-left: 5px;
        margin-top: 9px;
    }

    .cta_6_content .txt2 {
        font-size: 13px;
        line-height: initial;
    }

    .cta_6_content .txt1 {
        font-size: 13px;
        line-height: initial;
    }

    .cta_6 .part_2 {
        padding-bottom: 5px !important;
        height: 35px;
    }

    .cta_8 .part_1 {
        width: 100%;
        text-align: center;
    }

    .cta_8 .cta7_img {
        float: none !important;
        margin-top: 13px !important;
        margin-bottom: 0px !important;
    }

    .cta_8 .txt_para {
        margin-top: 0 !important;
        margin: 0 auto !important;
        display: table;
        float: none !important;
    }

    .topic .part_1 .txt2 {
        text-align: left;
        font-size: 13px;
        line-height: initial;
    }

    .topic .part_1 .txt1 {
        text-align: left;
        margin-bottom: 6px;
        font-size: 13px;
        line-height: initial;
    }

    .cta_8 .txt_para .portfolio {
        margin: 5px auto;
    }

}



@media (min-width:374px) and (max-width:768px) {
    .contest_cta .part_1 .txt_para .txt3 {
        width: 165px
    }
}



/* International popup */
.top_countries_pop {
    background: #999999;
    color: #fff;
    font-family: "Lato", sans-serif;
    padding: 20px 0;

    min-height: 65px;
}

.top_countries_pop .box1 {
    text-align: center;
}

.top_countries_pop .box2 {
    display: none;
}

.top_countries_pop .box1 .close-btn {
    margin-left: 105px;
    position: relative;
    border: 1px dotted;
    border-radius: 100%;
    width: 25px;
    display: inline-block;
    text-align: center;
    height: 25px;
    line-height: 22px;

    color: #fff;
}


.top_countries_pop .box2 .close-btn {
    margin-left: 105px;
    position: relative;
    border: 1px dotted;
    border-radius: 100%;
    width: 25px;
    display: inline-block;
    text-align: center;
    height: 25px;
    line-height: 22px;
}

.top_countries_pop .box2 .close-btn:hover {
    color: #d8d8d8 !important;
}

.top_countries_pop .open_country_list {
    color: #ddd;
    text-decoration: none;
    border-bottom: 1px dotted rgba(221, 221, 221, 0.63);
    padding-bottom: 1px;
    cursor: pointer;
}

.top_countries_pop .box2 .country_list {
    display: table;
    margin: 0 auto;
}

.top_countries_pop .box2 .country_list .item {
    display: table-cell;
    padding: 0 8px;
    /* color: #fff; */
}

.top_countries_pop .box2 .country_list .item a {
    color: rgba(255, 255, 255, 0.83);
    text-decoration: none;
    border-bottom: 1px dotted rgba(221, 221, 221, 0.63);
    padding-bottom: 1px;
}

.ASSOCIATE_p a {
    margin-bottom: 3px;
    display: inline-block;
}

.fly-menu .fly-menu-block .foot .global-presence-container ul.menu li {
    margin-right: 9px;
}

@media (max-width:768px) {
    .top_countries_pop {
        padding: 8px;
        font-size: 12px;
        position: relative;
    }

    .top_countries_pop .box1 {
        text-align: left;
        margin-top: 18px;
    }

    .top_countries_pop .box1 .close-btn {
        margin-top: 3px;
        position: absolute;
        top: 0;
        right: 3px;
        width: 19px;
        height: 19px;
        line-height: 16px;
    }

    .top_countries_pop .box2 .close-btn {
        position: absolute;
        top: 3px;
        right: 3px;
    }

    .top_countries_pop .box2 .country_list .item {
        width: 50%;
        float: left;
        margin-bottom: 8px;
    }

    .top_countries_pop .box2 .country_list .item:last-child {
        margin-bottom: 0
    }

}

/* International popup ends */

.sponsoredStoryGrid iframe,
.relatedStories iframe {
    max-width: 100%;
}

@media (max-width:768px) {
    .relatedStories iframe {
        height: calc(45vw - -60px);
    }
}

/*.addFbComment{
    padding: 5px;
    background: #3c5b9b;
    color:#fff !important;
    text-align: center;
    display: block;
    width: 50%;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.fb_iframe_widget_fluid {
    display: inline !important;
}

@media only screen and (max-width: 767px) {
    .addFbComment{
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }
}

.comment_section{
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 5px 5px;
    margin-bottom: 20px;
}*/

.addFbComment {
    padding: 5px;
    background: #3c5b9b;
    color: #fff !important;
    text-align: center;
    display: block;
    width: 50%;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.fb_iframe_widget_fluid {
    display: inline !important;
}

@media only screen and (max-width: 767px) {
    .addFbComment {
        width: 65%;
        margin-left: auto;
        margin-right: auto;
    }

    .comments_count_wrap,
    .add_a_comment {
        font-size: 12px;
    }

    .relatedStories iframe {
        height: calc(45vw - -47px) !important;
    }
}

.comment_section {
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 5px 5px;
    margin-bottom: 20px;
    clear: both;
}

.comments_count_wrap {
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    width: 40%;
}

.comments_count {
    margin-right: 4px;
}

.add_a_comment {
    display: inline-block;
    width: 58%;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
}

.add_comment_btn {
    text-decoration: none;
    color: #3C5B9B !important;
    background: transparent;
    padding: initial;
    width: initial;
    text-align: right;
    margin: 0;
    border-radius: 0;
    font-size: inherit;
}

.add_comment_btn span {
    margin: 0 7px;
}

.fallback-story {
    display: none;
}

@media only screen and (min-width: 767px) {
    .small-adbanner {
        width: auto;
    }
}

.videoPic a {
    position: relative;
    display: inline-block;
}

.videoPic a:after {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/playVid.png) center no-repeat;
    background-size: 75px 75px;
    content: "";
    cursor: pointer;
    display: block;
    width: 75px;
    height: 75px;
    left: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

@media only screen and (max-width : 767px) {
    .videoPic a:after {
        background-size: 50px 50px;
        width: 50px;
        height: 50px;
    }
}

.bcovePlaylist {
    width: 100%;
    display: block;
    position: relative;
    margin: 20px auto
}

.bcovePlaylist .gqBrightcove {
    margin: 0
}

.gqBrightcove {
    width: 100%;
    display: block;
    position: relative;
    margin: 20px auto
}

.gqBrightcove:after {
    padding-top: 56.25%;
    display: block;
    content: ''
}

.gqBrightcove iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-js {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.vjs-player-wrapper {
    position: relative;
    min-height: 82px
}

.vjs-player-wrapper .vjs-playlist {
    background-color: #141b17;
    width: 100%;
    max-height: 82px;
    min-height: 82px;
    line-height: 76px;
    text-align: center;
    overflow-x: scroll;
    overflow-y: hidden;
    position: absolute;
    white-space: nowrap;
    margin: 0;
    padding: 7px;
    overflow-x: auto
}

.vjs-playlist-item {
    display: inline-block;
    border: 2px solid #141b17;
    padding: 0;
    margin: 0;
    height: 74px;
    width: 124px;
    cursor: pointer;
    vertical-align: middle
}

.vjs-item-inner-div {
    background-size: cover;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    vertical-align: middle
}

.vjs-playlist-item:hover {
    border-color: red
}

.vjs-title {
    color: #fff;
    font-size: .7em;
    font-family: sans-serif;
    font-weight: 700;
    max-width: 124px;
    width: 124px;
    height: 66px;
    margin-top: 30%;
    text-align: center;
    cursor: pointer
}

.relatedVideos .gqBrightcove {
    margin: 0;
}

.story article h2.next_video_txt {
    font-size: 1em;
    margin-top: 10px;
    border-top: 1px solid #F1F1F1;
    padding-top: 17px;
    margin-bottom: 17px;
}

.single .article-tags {
    padding: 3px 0
}

hr.vidSeperator {
    border: none;
    margin-top: 15px;
    clear: both;
    max-width: 100%;
    overflow: hidden;
}

hr.vidSeperator:after {
    content: '...................................................';
    color: #2cbaf0;
    display: block;
    font-size: 18px;
    letter-spacing: 4px;
    line-height: 1;
    text-align: center;
}

.story article h2.next_video_txt .up_next {
    color: #999;
}

hr.vidSeperator {
    color: transparent;
    border-top: 1px solid rgba(0, 173, 239, 0.47);
}

hr.vidSeperator:after {
    content: '' !important
}

.related_videos_new {
    padding-bottom: 20px;
}

/* Start CSS for Index Viral Video Section*/
.viral-video-stage {
    background: #000;
}

.viral-video {
    padding: 30px 50px;
    box-sizing: border-box;
}

.viral-video-tab {
    clear: both;
    overflow: hidden;
    padding: 0 8px 40px 8px;
}

.viral-video-tab ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.viral-video-tab ul li {
    float: left;
    margin-right: 45px;
    text-transform: uppercase;
}

.viral-video-tab ul li:last-child {
    margin-right: 0px;
}

.viral-video-tab ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding-bottom: 6px;
}

.viral-video-tab ul li a.active {
    border-bottom: 1px solid #fff;
}

.viral-video-tabContent {}

.featuredVids {
    position: relative;
    clear: both;
}

/*Selvin Changes*/
.featuredVids .desc h2 a {
    color: #fff;
    text-decoration: none;
}

.featuredVids .desc h2 {
    display: block;
    padding-top: 16px;
    font-weight: normal;
}


/*.featuredVids article a img:hover{
    transform: scale(1.1);
}*/

.featuredVids article {
    height: auto;
    display: inline-block;
    padding: 0 9px;
    text-align: left;
    font-family: "Times New Roman", Georgia, Serif;
    vertical-align: top;
    box-sizing: border-box;
}

.viral-video article .desc {
    height: 86px;
    box-sizing: bordre-box;
    padding-bottom: 15px;
}

.featuredVids article a {
    position: relative;
    display: block;
}

.viralSlider .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px !important;
    top: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /*opacity: 0.5;*/
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/vidsNext-arrow.png") center center no-repeat;
    right: 0;
    color: transparent;
    right: -55px;
}

.viralSlider .owl-controls .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 63px;
    height: 95px;
    margin-top: -47.5px !important;
    top: 50%;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    /*opacity: 0.5;*/
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/vidsPrev-arrow.png") center center no-repeat;
    right: 0;
    color: transparent;
    left: -55px;
}

.viralPlayicon:after {
    content: "";
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/viral-play-icon.png") no-repeat 0 0;
    cursor: pointer;
    display: block;
    width: 42px;
    height: 42px;
    opacity: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -21px;
    margin-left: -21px;
    z-index: 9999;
}

.viralPlayicon:hover:after {
    background: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/viral-play-icon.png") no-repeat 0 -42px;
}

.viralSlider article .gqBrightcove {
    margin: auto;
}

.mobTab {
    text-align: center;
    display: none;
}

.mobTab a {
    color: #ce061e;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
}

@media only screen and (max-width : 1030px) {
    /*.featuredVids ul li { height: 270px;}*/
}

@media only screen and (max-width : 1023px) {
    .featuredVids ul li {
        width: 32%;
        /*height: 215px;*/
    }
}

@media only screen and (max-width : 767px) {
    .viral-video-tab {
        padding: 0 5px 20px;
    }

    .viral-video-tab ul li {
        margin-right: 30px;
    }

    .viral-video-tab ul li a {
        font-size: 11px;
    }

    .viral-video {
        padding: 25px 10px;
    }

    .featuredVids ul li {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        padding: 0;
        display: block;
    }

    .viral-video article .desc {
        height: auto;
    }


    .viralSlider .owl-controls .owl-nav .owl-next {
        opacity: 0.5;
        right: 0px;
    }

    .viralSlider .owl-controls .owl-nav .owl-prev {
        opacity: 0.5;
        left: 0px;
    }

    .mobTab {
        display: block;
    }
}

/* End CSS for Index Viral Video Section*/

@media only screen and (min-width: 767px) {
    .new-ad-unit {
        margin-bottom: 5px !important;
    }
}


.mobile-freestory-wrap {
    display: none;
}

@media only screen and (max-width : 767px) {

    .post-social.fixed-social .socialShare ul, .post-social.fixed-social .social_share_new ul {
        position: fixed;
        top: 7px;
        z-index: 33336;
        float: right;
        right: 5px;
        display: block;
        min-width: 10px;
    }

    .post-social.fixed-social .socialShare li.total_view_share, .post-social.fixed-social .social_share_new li.total_view_share {
        display: none;
    }

    .desktop-menu.fixed-social .mlogo,
    .desktop-menu.fixed-social .after_login_part,
    .desktop-menu.fixed-social .search-btn {
        display: none;
    }

    .mobile-freestory-wrap {
        display: none;
    }

    .desktop-menu.fixed-social .mobile-freestory-wrap {
        display: block;
    }

    .desktop-menu.fixed-social .fly-menu-btn {
        display: none;
    }

    .mobile-freestory {
        position: fixed;
        top: 7px;
        float: right;
        left: 0px;
    }
}

@media only screen and (min-width : 767px) {

    body.single {
        padding-top: 203px;
    }

    body.single .topadbnr {
        top: 103px;
    }
}

body.single .topadbnr {
    bottom: auto;
}

@media only screen and (max-width : 767px) {
    body.single .topadbnr {
        top: auto;
        bottom: 0;
        border: none;
        background: transparent;
    }

    body.single {
        padding-top: 45px;
    }
}

/* Trending CTA CSS */

.tabs-menu {
    height: 30px;
    float: left;
    clear: both;
}

ul.tabs-menu {
    list-style: none;
}


.tabs-menu li {
    height: 30px;
    line-height: 30px;
    float: left;
    margin-right: 10px;
    background-color: #ccc;
    /* border-top: 1px solid #d4d4d1; */
    /* border-right: 1px solid #d4d4d1; */
    /* border-left: 1px solid #d4d4d1; */
    border-radius: 5px;
    border-radius: 3px 3px 0px 0px;
    padding-left: 0 !important;
}

.tabs-menu li.current {
    position: relative;
    background-color: #f6f7f9;
    border-bottom: 1px solid #fff;
    z-index: 5;
    padding-left: 0;
}

.tabs-menu li a {
    padding: 10px 20px;
    /* text-transform: uppercase; */
    color: #fff;
    text-decoration: none;
    font-family: 'savoyregular';
    font-size: 17px;
    transition: none;
    /* border-radius: 5px; */
}

.tabs-menu .current a {
    color: #000000;
}

.tab {
    background-color: #fff;
    float: left;
    margin-bottom: 20px;
    width: 100%;
}

.tab-content {
    width: 100%;
    padding: 0;
    display: none;
}

.tab-content .mostPopularCTA {
    background: #f6f7f9;
    padding: 0 10px;
}

#tab-1 {
    display: block;
}


.tabs-container {
    display: inline-block;
    width: 100%
}

.tabs-menu li:after {
    display: none
}

.tabs-container .desc a {
    font-size: 15px;
    line-height: 15px;
    color: #000;
}


@media (max-width:640px) {
    .tabs-menu li {
        padding-left: 0 !important
    }

    .tabs-menu li a {
        font-size: 16px;
    }

    .tab-content .mostPopularCTA {
        margin-left: 0;
        width: 100%;
        padding-top: 8px;
    }

}

/* Trending CTA CSS ends */

.contest_cta .image_logo,
.surveys_cta .image_logo {
    margin-bottom: 0;
    vertical-align: middle;
    height: 100% !important;
    max-width: 150px;
    object-fit: cover;
    position: relative;
}

@media (max-width: 768px) {

    .contest_cta .part_2 .btn_click_here,
    .surveys_cta .btn_click_here {
        line-height: 12px !important;
        padding: 3px;
        font-size: 11px;
    }
}



.owl1-cols>a {
    position: relative;
    display: table;
}

.owl1-cols>a.cntravellerlogo:after {
    content: "";
    display: block;
    line-height: 0;
    height: 25px;
    background: url(http://media.cntraveller.in/wp-content/themes/cntraveller/images/cnt-logo.png) no-repeat center/40px;
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 50px;

    background-color: rgba(255, 255, 255, 0.40);
    padding: 4px;
}

.owl1-cols>a.voguelogo:after {
    content: "";
    display: block;
    line-height: 0;
    height: 25px;
    background: url(http://media.vogue.in/wp-content/themes/vogue/images/logo.svg) no-repeat center/40px;
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 50px;

    background-color: rgba(255, 255, 255, 0.40);
    padding: 4px;
}

.owl1-cols>a.architecturaldigestlogo:after {
    content: "";
    display: block;
    line-height: 0;
    height: 25px;
    background: url(http://media.architecturaldigest.in/wp-content/themes/cntraveller/images/logo.svg) no-repeat 9px/41px;
    background-position: 10px -10px !Important;
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 50px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 4px;
}

.owl1-cols>a.gqindialogo:after {
    content: "";
    display: block;
    line-height: 0;
    height: 25px;
    background: url(http://media.gqindia.com/wp-content/themes/gq/images/gq-logo.png) no-repeat center/40px;
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 50px;
    background-color: rgba(255, 255, 255, 0.40);
    padding: 4px;
}


.fb_rect_wrapper {
    display: none;
}

.fb_rect_share {
    display: none;
    font-family: 'Lato', FontAwesome;
    /*right: 65px;*/
    text-align: center;
}

@media (max-width: 768px) {

    .fb_rect_wrapper {
        display: block;
    }

    .socialShare ul li a {
        display: none;
    }

    .socialShare ul li.fb_rect_wrapper {
        width: calc(100% - 120px);
        margin-right: 0px !important;
    }

    .socialShare ul li a.fb_rect_share {
        z-index: 33336;
        background: #3C5B9B;
        color: #fff;
        padding: 0;
        text-decoration: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        width: calc(100% - 54px);
        height: 30px;
        line-height: 30px;
        margin: 0;
        float: left;
        margin-right: 4px;
    }

    .socialShare ul li.fb_rect_wrapper .fa-facebook-messenger {
        display: inline-block;
        width: 40px;
        height: 30px;
        float: left;
    }

    .post-social.fixed-social .social_share_new ul .fa-facebook-messenger {
        position: absolute;
        right: 63px;
    }

    .post-social.fixed-social .social_share_new ul #expand_menu {
        position: absolute;
        right: 15px;
    }

    .post-social.fixed-social .socialShare ul li a.fb_rect_share, .post-social.fixed-social .social_share_new ul li a.fb_rect_share {
        width: calc(100% - 192px);
    }

    .post-social.fixed-social .fb_rect_share {
        top: 7px;
        position: fixed;
        right: 116px;
    }

    .socialShare ul li a,
    .socialShare ul li a.pinterest {
        width: 44px;
        height: 33px;
        font-size: 14px;
        line-height: 34px;
        border-radius: 2px;
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
    }

    .socialShare ul li.open_other_social {
        position: relative;
        width: 39.8px !important;
        height: 31px;
        border-radius: 2px !important;
    }

    .post-social.fixed-social .socialShare ul li.open_other_social {
        float: right;
        width: 50px !important;
        top: 1px;
    }


    .post-social.fixed-social .socialShare ul li a {
        width: 54px;
        height: 33px;
        font-size: 14px;
        line-height: 34px;
        border-radius: 2px;
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
    }

    .post-social.fixed-social .socialShare .fb_rect_share {
        display: block;
    }

    .post-social.fixed-social .socialShare {
        width: calc(100% - 65px) !important;
    }

    /*.post-social.fixed-social .socialShare li {
        width: 0;
        overflow: hidden;
        padding-right: 0;   
        transition: all 0.5s ease;
    }*/

    /*.post-social.fixed-social .open_other_social{
        width: 50px!important;
        height: 33px!important;
        font-size: 14px!important;
        line-height: 34px!important;
        border-radius: 2px;
        right: 10px;
        top: 7px;
    }*/

    /*.main-nav-scrolled #navBar{
        background: rgba(255, 255, 255, 0.88);}
    }
    
    .main-nav-scrolled{
        background: rgba(255, 255, 255, 0.22);}
    }*/

    .register_link_story {
        display: inline-block;
        width: 55px;
        height: 36px;
        position: fixed;
        left: 0;
        top: 5px;
        left: 5px;
    }
}


.mp_view_all {
    float: right;
    position: relative;
    margin-top: -25px;
    margin-right: 5px;
    font-weight: 600;
    font-size: 15px;
}

@media (max-width: 320px) {

    .socialShare ul li a,
    .socialShare ul li a.pinterest {
        width: 44px;
    }

    .post-social.fixed-social .socialShare ul li a {
        width: 46px;
    }

    .mp_view_all {
        font-size: 12px;
    }

}

@media (max-width: 768px) {
    .instory_signup .newsletter-msg {
        display: block;
    }
}



/*.tabs-container{
    width: 50%;
    float: left;
    margin-right: 20px;
}*/

/* .regwall_block_v2 */
.regwall_block_v2 {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    /*z-index: 999999999;*/
    /*
     background: rgba(255, 255, 255,0.47);
    background: -webkit-gradient(left top, left bottom, color-stop
 (0%, rgba(255, 255, 255, 0)), 
 color-stop(27%, rgba(255,255,255,0.96)), 
 color-stop(50%, rgba(255, 255, 255, 0.89)), 
 color-stop(100%, rgb(255, 255, 255)));
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255,255,255,0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255,255,255,0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255,255,255,0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255,255,255,0.96) 27%, rgba(255, 255, 255, 0.89) 50%, rgb(255, 255, 255) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.98) 80%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#e2e2e2', GradientType=0 );
    padding-top: 50px; 
    
    */
    position: fixed;
    bottom: 0;
    max-width: 867px;
    z-index: 100000000;
    display: block;
    width: 100%;
    text-align: center;
    min-height: 150px;
    background: rgba(255,
        255,
        255,
        0.47);
    background: -webkit-gradient(left top,
        left bottom,
        color-stop(0,
        rgba(255,
        255,
        255,
        0)),
        color-stop(27%,
        rgba(255,
        255,
        255,
        0.96)),
        color-stop(50%,
        rgba(255,
        255,
        255,
        0.89)),
        color-stop(100%,
        #fff));
    background: -moz-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: -webkit-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: -o-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: -ms-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: linear-gradient(to bottom,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.98) 80%,
        #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede',
        endColorstr='#e2e2e2',
        GradientType=0);
}

.regwall_block_v2 ul {
    display: table;
    margin: 25px auto;
    min-width: 540px;
    font-family: "Lato",
        sans-serif;
    margin-top: 15px;
}

.regwall_block_v2 ul li {}

.regwall_block_v2>ul>li:first-child {
    border-bottom: 1px solid #939393;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.regwall_block_v2>ul>li:first-child .part_1 {
    display: inline-block;
    width: 80%;
}

.regwall_block_v2>ul>li:first-child .part_1 h3 {
    font-size: 35px;
    line-height: 45px;
}

.regwall_block_v2>ul>li:first-child .part_1 .black {
    color: #000;
}

.regwall_block_v2>ul>li:first-child .part_2 {
    display: inline-block;
    width: 20%;
    vertical-align: top;
}

.regwall_block_v2>ul>li:first-child .part_2 .btn {
    display: table;
    padding: 8px 10px;
    margin: 10px auto;
    min-width: 100px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
}

.regwall_block_v2>ul>li:first-child .part_2 .already {
    color: #999999;
    display: table;
    text-align: center;
    font-size: 14px;
    margin: 0 auto;
}

.regwall_block_v2>ul>li:last-child {}

.regwall_block_v2>ul>li:last-child strong {
    margin-bottom: 10px;
    display: table;
    font-size: 17px;
}

.regwall_block_v2>ul>li:last-child p {
    color: #939393;
}

.close_regwall_block_v2 {
    color: #000;
    font-size: 34px;
    right: -25px;
    position: relative;
}

.regwall_block_v2 .col2 {
    display: table;
    min-width: 540px;
    margin: 0 auto;
    text-align: right;
}

@media (max-width: 768px) {
    .regwall_block_v2 {
        width: 100%;
        padding: 10px;
    }

    .regwall_block_v2 ul {
        min-width: 100%;
    }

    .regwall_block_v2>ul>li:first-child .part_1 h3 {
        font-size: 17px;
        line-height: 25px;
    }

    .regwall_block_v2 .col2 {
        min-width: 100%;
    }

    .regwall_block_v2>ul>li:first-child .part_1 {
        width: calc(100% - 85px);
    }

    .regwall_block_v2>ul>li:first-child .part_2 {
        width: 80px;
    }

    .regwall_block_v2>ul>li:first-child .part_2 .btn {
        padding: 5px 5px;
        font-size: 13px;
        margin: 5px auto;
        min-width: 65px;
    }

    .regwall_block_v2>ul>li:first-child .part_2 .already {
        font-size: 10px;
    }

    .regwall_block_v2>ul>li:last-child strong {
        font-size: 15px;
    }

    .regwall_block_v2>ul>li:last-child p {
        font-size: 13px;
    }

    .close_regwall_block_v2 {
        color: #000;
        font-size: 26px;
        right: 19px;
    }
}

/* .regwall_block_v2 ends */
.exclusiveStory a::after {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/exclusive.png) center no-repeat;
    background-size: 75px 75px;
    content: "";
    cursor: default;
    display: block;
    width: 75px;
    height: 75px;
    left: 37.5px;
    top: 37.5px;
    opacity: 1;
    position: absolute;
    z-index: 100;
    transform: translate(-50%,
        -50%);
    -webkit-transform: translate(-50%,
        -50%);
    -moz-transform: translate(-50%,
        -50%);
    -ms-transform: translate(-50%,
        -50%);
    -o-transform: translate(-50%,
        -50%);
}

@media (max-width: 768px) {
    .exclusiveStory a::after {
        background-size: 50px 50px;
        width: 50px;
        height: 50px;
        left: 25px;
        top: 25px;
    }

    .regwall_block_v4 {
        padding: 9px 10px !important;
        margin-top: -137px !important;
        padding-top: 100px !important;
    }

    .regwall_block_v4 {
        padding: 9px 10px !important;
        margin-top: -300px !important;
        padding-top: 180px !important;
        position: relative !important;
    }

    .in-story-slideshow .regwall_block_v4 ul {
        margin-top: 4% !important;
    }

    .regwall_block_v4 li {}

    .regwall_block_v4>ul>li:first-child {
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .regwall_block_v4>ul>li:first-child .part_1 {
        width: 100% !important;
    }

    .regwall_block_v4>ul>li:first-child .part_2 {
        width: 100% !important;
    }

    .regwall_block_v4>ul>li:first-child .part_1 h3 {
        margin-bottom: 5px;
        text-align: left;
    }

    .regwall_block_v4>ul>li:first-child .part_2 .btn {
        padding: 5px 2px !important;
        font-size: 11px;
        line-height: initial;
    }

    .regwall_block_v4 .popup-register-social-block {
        margin-top: 10px !important
    }

    .regwall_block_v4>ul>li:first-child .part_2 .already {
        line-height: initial;
    }

    .regwall_block_v4>ul>li:first-child .part_1 h3 {
        font-size: 13px;
        margin-bottom: 0 !important;
    }

    .regwall_block_v4>ul>li:first-child .part_1 span {
        font-size: 11px;
        line-height: initial;
        display: inline-block;
        text-align: left;
    }

    .regwall_block_v4>ul>li:last-child strong {
        font-size: 13px;
        margin-bottom: 0;
    }

    .regwall_block_v4>ul>li:last-child p {
        line-height: 15px;
        padding-bottom: 0;
        text-align: left;
    }

    .regwall_block_v4 {
        margin-top: 0;
        padding-top: 0;
    }

    .regwall_block_v4>ul>li:first-child .part_1 h3 {
        font-size: 20px;
        color: #797979;
    }

    .regwall_block_v4>ul>li:first-child .part_1 span {
        font-size: 17px;
        line-height: 18px;
        margin-top: 8px
    }

    .regwall_block_v4>ul>li:last-child p {
        font-size: 17px;
        line-height: 18px;
        margin-top: 8px
    }

}

.regwall_block_v4 {
    padding: 25px 15px;
    margin: 15px 0;
    background: rgba(255,
        255,
        255,
        0.47);
    background: -webkit-gradient(left top,
        left bottom,
        color-stop(0,
        rgba(255,
        255,
        255,
        0)),
        color-stop(27%,
        rgba(255,
        255,
        255,
        0.96)),
        color-stop(50%,
        rgba(255,
        255,
        255,
        0.89)),
        color-stop(100%,
        #fff));
    background: -moz-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: -webkit-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: -o-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: -ms-linear-gradient(top,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 27%,
        rgba(255,
        255,
        255,
        0.89) 50%,
        #fff 100%);
    background: linear-gradient(to bottom,
        rgba(255,
        255,
        255,
        0) 0,
        rgba(255,
        255,
        255,
        0.96) 37%,
        #e6e6e6 80%,
        #e6e6e6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede',
        endColorstr='#e2e2e2',
        GradientType=0);
    margin-top: -200px;
    z-index: 10000;
    position: relative;
    padding-top: 180px;
}

.regwall_block_v4 li {
    list-style: none;
    padding-left: 0 !important;
}

.regwall_block_v4 li:after {
    display: none
}

.regwall_block_v4>ul>li:first-child {
    padding-left: 0;
    border-bottom: 1px solid #ccc;
}

.regwall_block_v4>ul>li:first-child .part_1 {
    width: 69%;
}

.regwall_block_v4>ul>li:first-child .part_1 h3 {
    margin-bottom: 5px;
}

.regwall_block_v4>ul>li:first-child .part_2 {
    width: 30%;
}

.regwall_block_v4>ul>li:first-child .part_2 .btn {
    color: #fff;
    padding: 5px;
    margin: 2.5px 0px 2.5px auto;
}

.regwall_block_v4 .close_regwall_block_v2 {
    display: none
}

.regwall_block_v4>ul {
    padding-bottom: 0 !important;
    margin: 5px auto;
    margin-top: 20px;
}

.regwall_block_v4>ul>li:last-child strong {
    font-size: 20px;
    margin-top: 20px;
    font-family: 'savoyregular';
}

.regwall_block_v2>ul>li:first-child .part_2 .already {
    text-align: right;
    margin: 0 0px 2px auto;
}

.in-story-slideshow .regwall_block_v4 {
    margin-top: 0;
    top: -95px;
}

.in-story-slideshow .regwall_block_v4 {
    top: 0;
    position: absolute;
    margin-bottom: 0;
    padding-top: 150px;
}

.social-login .facebook-login-hard-wall {
    background: #3A579B;
}

.regwall_block_v4 .social-login .facebook-login-hard-wall .fa {
    margin-right: 10px
}

.regwall_block_v4 .social-login .facebook-login-hard-wall {
    padding: 5px 10px;
    display: table;
    font-size: 13px;
    color: #fff;
    border-radius: 3px;
    width: 100%;
}

.regwall_block_v4>ul>li:last-child p,
.regwall_block_v4>ul>li:first-child .part_1 h3,
.regwall_block_v4>ul>li:first-child .part_1 span {
    text-align: left;
    font-family: 'savoyregular';
}

.regwall_block_v4>ul>li:first-child .part_1 span {
    display: inline-block;
    width: 100%;
}

.desktop-menu.inner_story_page #menu-top-menu .submenu {
    font-size: 16px;
}

.yt-subscribe-cn {
    float: right;
    margin-top: -23px;
    padding-top: 5px;
}

.embed .yt-subscribe-cn {
    float: right;
    margin-top: -13px;
    padding-top: 5px;
}

.yt-subscribe-cn .fluid-width-video-wrapper {
    padding-top: 0 !important;
}

.yt-subscribe-cn .yt-sub-text {
    display: inline;
    line-height: 25px;
    color: #999999;
    font-weight: 700;
    vertical-align: top;
    font-size: 16px;
}

.in-story-slideshow .yt-subscribe-cn {
    float: right;
    margin-top: -15px;
    padding-top: 5px;
}

.yt-subscribe-cn .yt-subscribe-btn {
    font-family: arial;
    background-color: #e62117;
    color: #fefefe !important;
    width: 82px;
    display: inline-block;
    height: 24px;
    border: solid 1px transparent;
    padding: 0 8px 0 5.5px;
    outline: 0;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    word-wrap: normal;
    line-height: 24px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.yt-subscribe-cn .yt-subscribe-btn i {
    font-size: 17px;
    line-height: 22px;
}

.yt-subscribe-cn .yt-subscribe-btn:hover {
    background-color: #cc181e;
}

.tag-slider .sb-video-ad {
    width: 300px;
    margin: 0 auto;
}

.native_brands.collection form {
    overflow: hidden;
    padding: 20px 30px 10px;
}

.native_brands.collection .selectBox {
    position: relative;
    width: 48%;
    float: left;
    border: solid 1px #ddd;
    margin-right: 2%;
}

.native_brands.collection .selectBox select {
    width: 100%;
    height: 57px;
    font: 400 20px/57px 'Lato', sans-serif;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    padding: 0 20px;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    height: 45px;
    font-size: 15px;
    line-height: 45px;
    border: thin solid #eee;
}

.native_brands.collection .selectBox:before {
    background: #fff;
    pointer-events: none;
    content: "\f0d7";
    font-family: 'FontAwesome';
    font-size: 25px;
    line-height: 45px;
    color: #000;
    width: 10%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    text-align: center;
}

.native_brands.collection .selectBox option {
    width: 100%;
    outline: none;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
    padding: 0 20px;
}

@media only screen and (max-width: 767px) {
    .native_brands.collection .selectBox {
        width: 100%;
        margin-bottom: 10px;
        float: none;
    }

    .native_brands.collection .selectBox select {
        height: 35px;
        line-height: 35px;
        font-size: 13px;
        padding: 0 10px;
    }

    .native_brands.collection .selectBox::before {
        line-height: 35px;
        font-size: 20px;
    }

    .nbcontainer {
        padding: 0 !important;
    }
}

nav ul.menu li.more-options {
    position: relative;
    display: inline-block;
}

nav ul.menu li.more-options .dropdown a {
    padding: 8px 0;
    white-space: nowrap;
}

nav ul.menu li.more-options li {
    display: block;
    padding: 3px 16px;
}

nav ul.menu li .dropdown {
    display: none;
    position: absolute;
    background: #FAFAFA;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    text-align: left;
    border: 1px solid #E4E4E4;
    min-width: 150px;
}

nav ul.menu li.more-options:hover .dropdown {
    display: block;
}


nav ul.menu li.more-options:hover {
    border-left: 1px solid #E4E4E4;
    border-right: 1px solid #E4E4E4;
    padding: 0 10px;
    background: #FAFAFA;
}

.header-subscribe-mobile {
    display: none;
}

@media (max-width:768px) {
    .header-subscribe-mobile {
        display: block;
        background-color: #999;
        color: #fff;
        line-height: 20px;
        padding: 0;
        position: absolute;
        top: 13px;
        right: 10px;
        margin-right: 30px;
        padding: 0 3px;
        border-radius: 3px;
        text-decoration: none;
    }

    .search-btn {
        display: none;
    }

    .fixed-social .header-subscribe-mobile {
        display: none;
    }

    .after_login_part.mobile .profile_icon {
        margin-right: 0;
    }

    #navBar .container {
        padding-right: 10px;
    }
}

/* Subscription popup style */


.subscription_popup_single {
    position: fixed;
    bottom: 0;
    z-index: 22222;
    background: #fff;
    position: absolute;
    bottom: 0;
    max-width: 867px;
    z-index: 3000;
    display: table;
    width: 100%;
    text-align: center;
    min-height: 42vh;
    height: 100%;
    padding-bottom: 1.2%;
    background: rgba(255, 255, 255, 0.47);
    background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(27%, rgba(255, 255, 255, 0.91)), color-stop(90%, rgba(255, 255, 255)), color-stop(100%, #fff));
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 27%, rgb(255, 255, 255) 90%, #fff 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 27%, rgb(255, 255, 255) 90%, #fff 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 27%, rgb(255, 255, 255) 90%, #fff 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 27%, rgb(255, 255, 255) 90%, #fff 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 27%, rgb(255, 255, 255) 90%, #fff 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 27%, rgb(255, 255, 255) 90%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede', endColorstr='#e2e2e2', GradientType=0);
}

@media only screen and (min-width:768px) {
    .midcontent .subscription_popup_single {
        /* display: block; */

        height: 100%;
        /* margin-top: -40%; */
        top: initial;
        /* position: relative; */
    }

    .description .subscription_popup_single .subscribe_part {
        display: block;
        padding: 10% 0;
        position: absolute;
        width: 100%;
        bottom: 0;
    }

    .description .subscription_popup_single h3 {
        max-width: 70%;
        font-size: 3em;
        margin-bottom: 0%;
    }

    .subscription_popup_single .pls_span_txt:empty {
        display: none;
    }

    .in-story-slideshow .subscription_popup_single {
        display: block;
        height: 100%;
    }

    .subscription_popup_single .content_btns {
        max-width: 233px !important;
    }

    .subscription_popup_single .content_btns span {
        margin-top: 4px;
    }

    .subscription_popup_single .content_btns .button {
        width: 100%;
        max-width: 211px !important;
        font-family: 'Roboto', sans-serif;
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .in-story-slideshow .subscription_popup_single .subscribe_part {
        display: block;
        padding: 10% 0;
        position: absolute;
        width: 100%;
        bottom: 0;
    }

    .in-story-slideshow .subscription_popup_single h3 {
        max-width: 70%;
        font-size: 3em;
    }
}

@media only screen and (max-width:768px) {

    .in-story-slideshow .subscription_popup_single {
        display: block;
        height: 100%;
    }

    .in-story-slideshow .subscription_popup_single .subscribe_part {
        padding: 20% 0;
    }
}

.subscription_popup_single .subscribe_part {
    vertical-align: bottom;
    display: table-cell;
}

.subscription_popup_single h3 {
    font-size: 1.5em;
    font-family: 'Roboto', sans-serif;
    line-height: initial;
    margin-bottom: 2%;
    letter-spacing: -1px;
    font-weight: 700;
}

.subscription_popup_single .pls_span_txt {}

.subscription_popup_single .content_btns {
    width: 49%;
    display: inline-block;
    margin: initial;
    text-align: center;
    max-width: 185px;
    font-weight: 600;
}

.subscription_popup_single .content_btns .strike {
    display: inline-block;
    text-decoration: line-through;
    margin-right: 9px;
}

.subscription_popup_single .content_btns .button {
    font-size: 15px;
    background: #999;
    color: #fff;
    border: 0;
    padding: 4px 3px;
    max-width: 183px;
    text-align: center;
    margin: 10px auto;
    border-radius: 3px;
    display: table;
    text-decoration: none;
    font-size: 13px;
    min-height: 37px;
    text-transform: uppercase;
    line-height: 21px;
    font-weight: 500;
    display: table;
    min-height: 60px;
}

.subscription_popup_single .content_btns .button div {
    display: table-cell;
    vertical-align: middle
}

.subscription_popup_single .content_btns .button:hover {
    opacity: 0.8
}


.magazinecredits:empty {
    display: none;
}


.magazine_subscribe_banner {
    position: absolute;
    left: 20px;
    color: #3b5998;
    padding: 8px 0;
}

.magazine_subscribe_banner a {
    color: #333;
}

.magazine_subscribe_banner a:hover {
    color: #000;
    text-decoration: none;
}

.already_login_txt {
    display: table;
    font-size: 16px;
    margin: 5px auto;
    margin-bottom: 0;
}

.already_login_txt a {
    color: #A78048;
    font-weight: 600;
}

@media (max-width:768px) {
    .subscription_popup_single {
        left: 0;
        min-height: 400px;
    }

    .midcontent .subscription_popup_single {
        left: 0;
        min-height: 400px;
        height: 100%;
        margin-top: -50%;
        top: initial;
        position: relative;
        background: rgba(255, 255, 255, 0.47);
        background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(57%, rgba(255, 255, 255, 0.91)), color-stop(90%, rgba(255, 255, 255)), color-stop(100%, #fff));
        background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 57%, rgb(255, 255, 255) 90%, #fff 100%);
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 57%, rgb(255, 255, 255) 90%, #fff 100%);
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 57%, rgb(255, 255, 255) 90%, #fff 100%);
        background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 57%, rgb(255, 255, 255) 90%, #fff 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 57%, rgb(255, 255, 255) 90%, #fff 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.91) 57%, rgb(255, 255, 255) 90%, #fff 100%);
    }

    .subscription_popup_single .subscribe_part {}

    .subscription_popup_single h3 {
        font-size: 5vw;
        margin-bottom: 0;
        padding-bottom: 10px;
        font-weight: 500;
    }

    .subscription_popup_single .content_btns {
        max-width: 208px;
        width: 50%;
    }

    .subscription_popup_single .content_btns .button {
        font-size: 12px;
        max-width: 173px;
        padding: 11px 1px;
        width: 97%;
        font-family: 'Roboto', sans-serif;
        line-height: normal;

        min-height: 50px;
        font-size: 11px;

    }

    .magazine_subscribe_banner {
        display: none;
    }


}


.subscription_popup_single .pls_span_txt:empty {
    display: none;
}


/* Subscription popup style ends */

.login-form-new {
    position: relative
}

.login-form-new.active .p1 {
    opacity: 0.4
}

.login-form-new.active:after {
    content: '';
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/images/loader3.gif);
    background-size: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    position: absolute;
    z-index: 10000;
    width: 100%;
    height: 100%;
    top: 0;
}

.transaction_success {
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/images/loader3.gif);
    background-size: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    z-index: 10000;
    width: 100px;
    height: 100px;
    display: table;
    margin: 0 auto;
    top: 0;
}

.over_slide_btns {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 55;
}

.magazine_subscribe_banner {
    position: absolute;
    left: 20px;
    color: #3b5998;
    padding: 8px 0;
}

.single-story-body {
    position: relative
}

.header-subscribe-mobile {
    display: none;
}

@media (max-width:768px) {
    .header-subscribe-mobile {
        display: block;

        background-color: #999999;
        color: #fff;
        line-height: 20px;
        padding: 0;
        position: absolute;
        top: 12px;
        right: 10px;
        margin-right: 40px;
        padding: 0 3px;
        border-radius: 3px;
        text-decoration: none;
    }

    .search-btn {
        display: none;
    }

    .fixed-social .header-subscribe-mobile {
        display: none;
    }

    .mlogo {
        top: 0;
    }
}

/* user radius */
.my_plan_nav_links_wrap {
    width: 248px;
    float: right;
}

.my_plan_nav_links {}

.my_plan_nav_links>li {
    background: #E1E0DE;
}

.my_plan_nav_links>li>.title {
    padding: 12px 15px;
    display: block;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 17px;
}

.my_plan_nav_links_inner {
    background: #fff;
}

.my_plan_nav_links_inner>li {
    border-bottom: 2px solid #E6E6E6;
    padding: 12px 15px;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.my_plan_nav_links_inner>li a {
    text-decoration: none;
    color: #000;
}

.my_plan_nav_links_inner>li:hover,
.my_plan_nav_links_inner>li.active {
    background: #F3F3F3;
    cursor: pointer
}

.my_plan_nav_links_inner>li:last-child {
    border-bottom: 0
}

.my_plan_nav_links_inner>li .icon {
    vertical-align: middle;
    margin-right: 10px;
}

.my_plan_content {
    display: inline-block;
    border-left: 1px solid #D0D0D0;
    float: right;
    padding-left: 0 !important;
    width: calc(100% - 248px) !important;
}

.inner_profile_wrapper {
    background: #F7F8FA;
}

.inner_profile_container {
    padding: 20px;
    float: left;
}

.inner_profile_container .img_profile {
    float: left;
    margin-right: 20px;
}

.inner_profile_container .img_profile img {
    max-width: 200px;
}

.inner_profile_container .txt_profile {}

.inner_profile_container .txt_profile .name_profile {}

.inner_profile_container .txt_profile .name_profile {
    font-family: 'savoyregular';
    font-size: 30px;
    line-height: 22px;
    padding-bottom: 10px;
    color: #000;
    text-transform: capitalize;
}

.inner_profile_container .txt_profile .designation_profile {
    color: #9E9E9E;
    font-size: 19px;
}

.inner_profile_container .txt_profile .desc_profile {
    font-size: 19px;
    line-height: 23px;
    margin-top: 15px;
}

.my_plan_content .tab {
    font-family: 'savoyregular';
    float: left;
    width: 100%;
    display: none
}

.my_plan_content .tab_1 {
    padding: 40px 50px;
}

.my_plan_content .tab .title {
    display: table;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

.my_plan_content .tab .plans_div {
    margin-top: 45px;
    float: left;
    width: 100%;
}

.my_plan_content .tab .plans_div ul {
    float: left;
    width: 100%;
}

.my_plan_content .tab .plans_div ul>li {
    width: 29.33%;
    float: left;
    margin: 0 2%;
    border: 1px solid #DDDDDD;
    opacity: 0.28;
}

.my_plan_content .tab .plans_div ul>li .tab_type {
    text-align: center;
    padding: 23px 0;
    font-size: 32px;
    text-shadow: 1px 1px 1px rgba(150, 150, 150, 1);
    color: #fff;
    float: left;
    width: 100%;
    display: table;
    line-height: initial;
}

.my_plan_content .tab .plans_div ul>li .tab_price {
    float: left;
    width: 100%;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 48px;
    font-weight: 300;
    display: table;
    line-height: initial;
    padding: 22px 0px;
    background: #FFFFFF;
    border-top: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
}

.my_plan_content .tab .plans_div ul>li .tab_text {
    float: left;
    width: 100%;
    background: #F7F7F7;
    padding: 20px;
    text-align: center;
    line-height: 45px;
    color: #616161;
}

.my_plan_content .tab .plans_div ul>li .tab_plan {
    width: 100%;
    float: left;
    background: #000000;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-weight: 300;
}

.my_plan_content .tab .plans_div ul>li.active {
    opacity: 1;
}

.main-nav-scrolled .top_menu_login,
.home-nav-scrolled .top_menu_login2 {
    display: block
}

.top_menu_login {
    background: #F1F1F1;
    height: 30px;
    border-bottom: 1px solid #D0D0D0;
    float: left;
    width: 100%;
    z-index: 10000;
    position: relative;
    text-align: right;
    display: none
}

.signup_part {
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    height: 100%;
    padding: 8px 0;
}

.are_member_txt {
    margin-right: 10px;
    color: #D8D8D8;
    font-family: "Lato", sans-serif;
}

.register_btn {
    cursor: pointer;
    color: #000;
    text-decoration: none;
}

.login_btn {
    cursor: pointer;
    color: #000;
    text-decoration: none;
}

.after_login_part {
    float: right;
    max-width: 250px;
    font-family: "Lato", sans-serif;
}

.top_menu_login .container {
    height: 100%;
}

.after_login_part .name {
    padding: 8px 15px;
    display: inline-block;
    cursor: pointer;
    float: right;
    background: transparent;
    color: #000;
    font-size: 14px;
}

.after_login_part .login_menu {
    display: none;
    max-width: 300px;
    float: right;
    width: 100%;
    background: #000;
    color: #fff;
    /* font-family: "Lato",sans-serif; */
    transition: ease-in-out 300ms;
    transition: all 0.5s ease;
}

.after_login_part .login_menu li {
    text-align: left;
    padding: 11px 18px;
    font-size: 14px;
}

.after_login_part .login_menu li>a {
    color: #fff;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.after_login_part:hover .name {
    background: #000;
    color: #fff;
}

.after_login_part:hover .login_menu {
    display: inline!important;
    z-index: 33335;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
    margin-top: 2px;
}

.after_login_part .login_menu li:hover {
    background: #ddd;
    color: #000
}

.after_login_part .login_menu li:hover a {
    color: #000
}

.edit_portfolio {
    padding: 20px;
    background: #F4F4F4;
    display: table;
    width: 100%;
}

.n_row {
    /* vertical-align: middle; */
    clear: both;
    float: left;
    width: 100%;
}

.edit_portfolio .img_profile {
    float: left;
    margin-right: 80px;
    min-height: 450px;
}

.edit_portfolio .img_profile img {
    max-width: 200px;
}

.edit_portfolio .profile_form {
    float: left;
    width: calc(100% - 280px);
    font-family: "Lato", sans-serif;
}

.profile_form .l_title {
    min-width: 150px;
    float: left;
    font-size: 15px;
    height: 100%;
    vertical-align: middle;
    padding-top: 15px;
}

.profile_form .n_field {
    float: left;
    width: calc(100% - 150px);
    margin: 10px 0;
}

.profile_form .n_field .form_field {
    width: 100%;
    border: 1px solid #D4D4D4;
    padding: 9px 15px;

}

.profile_form .n_field .chekbox {
    padding: 10px 0;
    display: inline-block;
    padding-right: 12px;
}

.profile_form .n_field .chekbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: top;
}

textarea {
    min-height: 70px;
    transition: all 0.5s ease;
}

textarea:focus {
    min-height: 80px;
}

.follow_wrap {
    font-family: "Lato", sans-serif;
}

.follow_wrap h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.follow_wrap .follow_ul {
    float: left;
}

.follow_wrap .follow_ul>li {
    float: left;
    margin-right: 17px;
    position: relative;
}

.follow_wrap .follow_ul>li>label {
    width: 48px;
    height: 45px;
    display: table;
    text-align: center;
    border: 1px solid #E4E4E4;
    font-size: 25px;
    float: left;
}

.follow_wrap .follow_ul>li>label i {
    vertical-align: middle;
    display: table-cell;
}

.follow_wrap .follow_ul>li .form_field {
    border: 1px solid #E4E4E4;
    margin: 0;
    vertical-align: top;
    border-left: 0;
    height: 45px;
    padding: 0 15px;
    width: 160px;
}

.remove_follow_up_fields {
    width: 14px;
    height: 14px;
    display: block;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/close.png) no-repeat;
    position: absolute;
    top: -5px;
    right: -5px;
    cursor: pointer;
}

.add_more_follow {
    border: 1px solid #E4E4E4;
    width: 48px;
    height: 45px;
    display: inline-block;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/add_follow.png) no-repeat center #FFFFFF;
}

.share_wrap {
    margin-top: 23px;
}

.share_wrap .share_ul>li {
    float: left;
    margin-right: 17px;
    position: relative;
}

.share_wrap .share_ul>li>label {
    width: 48px;
    height: 45px;
    display: table;
    text-align: center;
    border: 1px solid #E4E4E4;
    font-size: 25px;
    float: left;
}

.share_wrap .share_ul>li>label i {
    vertical-align: middle;
    display: table-cell;
}

.share_span {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "Lato", sans-serif;
    display: inline-block;
    float: left;
    margin-right: 15px;
    margin-top: 10px;
}

.edit_portfolio .btn,
.my_plan_contact_form_wrap .btn,
.edit_collection .btn {
    color: #fff;
    padding: 10px;
    /* display: table; */
    border-radius: 2px;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    /* width: 100%; */
    text-align: center;
    margin-top: 15px;
    transition: all 0.5s ease;
    border: 0;
    cursor: pointer;
}

#profile-form-message {
    font-size: small;
    display: table;
    width: 100%;
}

#profile-location-form-message {
    font-size: small;
}

#collection-form-message {
    font-size: small;
}

.btn.vogue {
    background: #A5804A
}

.btn.ad {
    background: #999999
}

.btn.cnt {
    background: #A5804A
}

.btn.gq {
    background: #A5804A
}

.cancel_btn {
    color: #000 !important;
}

.t_center {
    text-align: center
}

.my_plan_other {
    padding: 30px 0;
}

.my_plan_other .portfolioCollection .collection-edit {
    position: absolute;
    color: white;
    padding: 2px 10px;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.55) none repeat scroll 0% 0%;
    top: calc(5% - -10px);
    right: calc(5% - -10px);
}

.my_plan_wrapper #portfolioCollection .owl-controls .owl-nav .owl-prev {
    left: 0
}

.my_plan_wrapper #portfolioCollection .owl-controls .owl-nav .owl-next {
    right: 0
}

.my_plan_wrapper h1.portfolio-section-title {
    padding-right: 20px;
}

.main_title {
    font-family: savoybold, serif;
    font-size: 2.125em;
    line-height: 1.125em;
    color: #000;
    text-transform: capitalize
}

.my_plan_contact_form_wrap {
    background: #F4F4F4;
    display: table;
    width: 100%;
    margin-top: 8px;
    font-family: "Lato", sans-serif;
    padding-bottom: 50px;
}

.my_plan_contact_form {
    width: 100%;
    max-width: 550px;
    display: table;
    margin: 25px auto;
}

.my_plan_contact_form .l_title {
    min-width: 150px;
    float: left;
    font-size: 15px;
    height: 100%;
    vertical-align: middle;
    padding-top: 15px;
}

.my_plan_contact_form .n_field {
    float: left;
    width: calc(100% - 150px);
    margin: 10px 0;
}

.my_plan_contact_form .n_field .form_field {
    width: 100%;
    border: 1px solid #D4D4D4;
    padding: 9px 15px;
}

.n_50 {
    width: 50%;
    clear: initial;
}

.n_47 {
    width: 48%;
    clear: initial;
    margin-left: 2%;
}

.n_47 .l_title {
    min-width: 120px;
    text-align: right;
    padding-right: 15px;
}

.n_47 .n_field {
    width: calc(100% - 120px);
}

.map .map_frame {
    width: 100%;
    margin-bottom: 15px;
    height: 350px;
}

.list_brands {
    padding-top: 20px;
}

.drop_left {
    color: #000;
    font-size: 22px;
    text-transform: capitalize;
    display: inline-block;
    padding-left: 20px;
}

.li_dropdown {
    display: inline-block;
    float: right;
    margin-right: 20px;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    position: relative;
    z-index: 1000;
}

.li_dropdown .selected {
    display: block;
    text-align: right;
    cursor: pointer;
}

.li_dropdown:hover ul {
    display: block
}

.li_dropdown>ul {
    background: #000;
    color: #fff;
    position: absolute;
    z-index: 33335;
    min-width: 180px;
    right: 0;
    display: none
}

.li_dropdown>ul>li {
    padding: 5px 10px;
}

.li_dropdown>ul>li.active,
.li_dropdown>ul>li:hover {
    background: #ddd;
    cursor: pointer
}

.li_dropdown>ul>li.active a,
.li_dropdown>ul>li:hover a {
    color: #000
}

.li_dropdown>ul>li>a {
    color: #fff;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
}

.edit_collection {
    /* padding: 30px 20px; */
    font-family: "Lato", sans-serif !important;
}

.edit_collection .part_1 {
    display: table;
    width: 100%;
    padding-bottom: 25px;
    padding: 30px 20px;
}

.edit_collection .part_1 .c1 {
    float: left;
    width: 60%;
    border-right: 1px solid #E0DEDE;
}

.edit_collection .part_1 .c1 .l_title {
    min-width: 150px;
    float: left;
    font-size: 15px;
    height: 100%;
    vertical-align: middle;
    padding-top: 15px;
}

.edit_collection .part_1 .c1 .n_field {
    float: left;
    width: calc(92% - 150px);
    position: relative;
    margin: 10px 0;
}

.edit_collection .n_field:not(.CTA) {
    padding-right: 20px;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/my_plan/info_icon.png) no-repeat right center;
}


.edit_collection .part_1 .c1 .n_field .form_field {
    width: 100%;
    border: 1px solid #D4D4D4;
    padding: 9px 15px;
    /* min-height: 100px; */
}

.edit_collection .part_1 .c2 {
    float: left;
    width: 40%;
    min-height: 180px;
}

.edit_collection .part_1 .c2 .collection_featured {
    height: 100%;
    display: table;
    min-height: 180px;
    width: 100%;
}

.edit_collection .part_1 .c2 .collection_featured_1 {
    display: table-cell;
    vertical-align: middle;
    width: 55%;
    text-align: center;
    font-size: 14px;
}

.edit_collection .part_1 .c2 .collection_featured_2 {
    display: table-cell;
    vertical-align: middle;
}

.edit_collection .part_2 {
    display: table;
    padding: 20px 25px;
    border-top: 1px solid #D7D4D5;
    border-bottom: 1px solid #D7D4D5;
    width: 100%;
    background: #F9F9F9;
    margin-bottom: 35px;
}

.collection_featured_2 .img_profile {
    position: relative;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/box.png) no-repeat center;
    min-height: 170px;
}

.collection_featured_2 .img_profile img,
.slide_img_profile img {
    margin-bottom: 0 !important;
    display: table;
}

.collection_featured_2 .img_profile .overly,
.slide_img_profile .overly {
    position: absolute;
    bottom: 0;
    display: table;
    width: 100%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background: rgba(0, 0, 0, 0.64);
}

.slide_img_profile {
    float: left;
    max-width: 200px;
    margin-left: 25px;
    position: relative;
    width: 200px;
    height: 200px;
}

.slide_name {
    float: left;
    margin-top: 15px;
    font-size: 15px;
}

.slide_form {
    float: left;
    margin-left: 55px;
    min-width: 550px;
}

.slide_form .l_title {
    min-width: 150px;
    float: left;
    font-size: 15px;
    height: 100%;
    vertical-align: middle;
    padding-top: 15px;
}

.slide_form .n_field {
    float: left;
    width: calc(100% - 150px);
    margin: 10px 0;
}

.slide_form .form_field {
    width: 100%;
    border: 1px solid #D4D4D4;
    padding: 9px 15px;
}

.slides {
    float: left;
    width: 100%;
}

.slides .removeSlide {
    float: right;
    color: red;
    font-size: small;
}

.slide_img_profile.no_img {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/box.png) no-repeat center;
}

.CTA label {}

.add_slide {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/add_more_sign.png) no-repeat center;
    width: 96%;
    height: 155px;
    margin: 0 2%;
    float: left;
    border: 2px dashed #E3E0E2;
    cursor: pointer;
    margin-bottom: 35px;
}

.top_menu_login_homepage {
    display: block;
    background: transparent;
    border: 0;
    height: 22px;
}

.top_menu_login_homepage .login_btn {
    margin-right: 5px;
    font-size: 12px;
    font-weight: bold;
    float: right;
}

.top_menu_login_homepage .register_btn {
    margin-left: 5px;
    font-size: 12px;
    font-weight: bold;
}

.top_menu_login_homepage .fblogin {
    margin-left: 5px;
    font-size: 12px;
    font-weight: bold;
}

.home .header-subscribe {
    float: right;
}

.home .top-section .subscribe-btn {
    height: auto;
    margin-bottom: 10px;
    overflow: initial;
}

.top_menu_login_homepage .after_login_part .name {
    margin-top: -5px;
}

.top_menu_login_homepage .after_login_part .login_menu li {
    display: table;
    width: 100%;
}

.top_menu_login_homepage .after_login_part {
    margin-right: -13px;
}

.top_menu_login_homepage .signup_part {
    padding-top: 0
}

.img_profile_inner {
    position: relative
}

.camera_icon {
    position: absolute;
    left: 10px;
    bottom: 10px;
    cursor: pointer
}

.progress {
    display: block;
    text-align: center;
    width: 0;
    height: 3px;
    background: red;
    transition: width .3s;
}

.progress.hide {
    opacity: 0;
    transition: opacity 1.3s;
}

.info_ico {
    position: absolute;
    top: 0;
    right: -22px;
    bottom: 0;
    margin-bottom: auto !Important;
    margin-top: auto !important;
}


.edit_collection input[type='text']:before,
.edit_collection textarea:before {}

.edit_collection input[type='text']:after,
.edit_collection textarea:after {}

.top_menu_login_homepage .after_login_part .login_menu li.puonly,
.after_login_part .login_menu li.puonly {
    display: none;
}

.top_menu_login_homepage .fblogin {
    color: #000;
}

.top_menu_login .fblogin a {
    color: #000;
    text-decoration: none;
}

.top_menu_login .fblogin i {
    color: #fff;
    float: none;
    background: #3b5998;
    border: 1px solid #fff;
    width: 18px;
    height: 18px;
    display: inline-block;
    padding: 1px 5px;
}

.profile_menu {
    width: 100%;
    background: #F4F4F4;
    border: 0;
    text-transform: uppercase;
    padding: 12px 10px;
    margin-top: 15px;
    border-bottom: 1px solid #D3D3D3;
}



select.profile_menu {
    -webkit-appearance: caret !important;
    /* background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 7px), calc(100% - 15px) calc(1em + 7px), calc(100% - 2.5em) 0.5em;
    /* background-size: 5px 5px,
 5px 5px,
 1px 1.5em; 
    background-repeat: no-repeat; */
    /* background: url(http:images/br_down.png) no-repeat 96% #F4F4F4/9px; */
}

select.profile_menu:focus {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 7px), calc(100% - 15px) calc(1em + 7px), calc(100% - 2.5em) 0.5em;
    /* background-size: 5px 5px,
 5px 5px,
 1px 1.5em; */
    background-repeat: no-repeat;
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/br_up.png) no-repeat 96% #F4F4F4/9px;
}

select {
    outline: none;
    /* styling */
    background-color: white;
    border: thin solid blue;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;

    /* reset */

    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.after_login_part.mobile {
    display: none;
}

.after_login_part.mobile .profile_icon {
    width: 47px;
    margin-top: 6px;
    border-right: 1px solid #000;
    padding-right: 15px;
}

.after_login_part.mobile:hover .name {
    background: transparent;
}

.profile_menu {
    display: none
}

@media (max-width:640px) {
    .profile_menu {
        display: block
    }

    .my_plan_nav_links_wrap {
        display: none
    }

    .my_plan_content {
        width: 100% !important;
        border-left: 0;
    }

    .top_menu_login2 {
        display: none !important
    }

    .after_login_part.mobile {
        display: inline-block;
    }
}

.top_menu_login3 {
    display: block;
    margin-bottom: 10px;
    position: fixed;
}

@media (min-width:767px) {
    body.home header .top-section {
        padding-top: 40px;
        /* 01:05 PM 07-07-2016 */
    }
}

.email_pref {
    width: 100% !important;
}

.email_pref .n_field {
    width: 100%;
    margin-bottom: 0;
}

.email_pref .l_title {
    width: 100%;
}

.email_pref .n_field .form_field {
    width: 16px;
    padding: 12px 15px;
    margin-left: 0;
    margin: 2px 0;
}

@media (min-width:640px) {
    .after_login_part.mobile {
        display: none !important;
    }

    .profile_menu_2 {
        display: none !important;
    }
}

.profile_menu_2 {
    padding: 10px;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    /* -webkit-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset; */
    color: #000;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    width: 100%;
    margin-top: 5px;
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/br_down.png);
    background-position: 96%;
    background-repeat: no-repeat;
    background-color: #f3f3f3;
    background-size: 13px;
    font-family: 'savoyregular';
    font-size: 17px;
    letter-spacing: 0.51px;

}

/*#wpadminbar{ display:none!important }*/

/* 01:05 PM 07-07-2016 */
.top-social-btn-blk a {
    text-align: center;
    margin-right: 5px;
    padding: 0;
    width: auto;
}


.menu-item sup {
    font-size: 11px;
    margin-left: 5px;
    vertical-align: super;
}



.rw2 .reg_wall_box .content_box {
    display: table;
    margin: 0 auto;
}

.rw2 .btn {
    margin-bottom: 2px !important;
    margin-top: 10px;
    font-size: 20px !important;
}

.rw2 .reg_wall_box {
    padding-bottom: 7px;
}


/* get_referal_wrapper */
.get_referal_wrapper {
    display: none;
    display: block;
    height: 90px;
    background: #222;
    position: relative;
    z-index: 9999;
    color: #fff;
}

.get_referal_wrapper .inner_referal_cont {
    display: table;
    width: 90%;
    height: 100%;
    max-width: 970px;
    margin: 0 auto;
}

.get_referal_wrapper .inner_referal_cell {
    display: table-cell;
    vertical-align: middle;
    font-family: "Lato", sans-serif;
}

.get_referal_wrapper .text_cont {
    display: inline-block;
    width: 69.6%;
    font-size: 2em;
}

.get_referal_wrapper .btn_cont {
    display: inline-block;
    width: 30%;
    text-align: right;
}

.get_referal_wrapper .btn_cont a {
    font-size: 1em;
    background: #fff;
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    min-width: 150px;
    text-align: center;
    border-radius: 4px;
}

.text-center {
    text-align: center
}

.p-b-t-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.get_referal_wrapper {
    display: block;
    height: 40px;
    border-bottom: 2px solid #fff;
}

.get_referal_wrapper .inner_referal_cont {
    width: 94%;
}

.get_referal_wrapper .text_cont {
    font-size: 15px;
    width: 66.6%;
    font-family: 'savoyregular';
}

.get_referal_wrapper .btn_cont {
    width: 32%;
}

.get_referal_wrapper .btn_cont a {
    width: 80%;
    min-width: 70%;
    padding: 4px 8px;
    font-size: 15px;
    font-family: 'savoyregular';
}

.get_referal_wrapper_popup {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;

    background: #fafafa;
    font-family: "Lato", sans-serif;
    z-index: 2221999999;
    border-top: 2px solid;
    height: 100%;
    overflow: auto;
}

.desk_wrap {

    height: auto;
}

.get_referal_wrapper_popup .row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 20px;
}

.space_between {
    justify-content: space-between;
}

.space_around {
    justify-content: space-around;
    /* justify-content: space-between; */
}



.get_referal_wrapper_popup .row>div {
    flex-grow: 1;
    /* justify-content: space-between; */
}

.get_referal_wrapper_popup .row:after {
    display: none
}

.get_referal_wrapper_popup h1 {}

.get_referal_wrapper_popup h2 {
    font-size: 1.2em;
    font-weight: 600;
}

.get_referal_wrapper_popup h3 {
    font-size: 1em;
    color: #000;
    text-transform: initial;
    margin-bottom: 0;
    line-height: normal;
}

.border-bottom {
    border-bottom: 2px solid #E1E1E1;
}

.get_referal_wrapper_popup .mag_covers img {
    width: 56px;
    height: 65px;
    object-fit: contain;
}

.get_referal_wrapper_popup .mag_covers {
    width: 65px;
    height: 65px;
    background: #fff;
    margin: 5px;
    max-width: 65px;
    border-radius: 5px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(209, 209, 209, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(209, 209, 209, 1);
    box-shadow: 0px 0px 10px 0px rgba(209, 209, 209, 1);
}

.get_referal_wrapper_popup .referal_a {
    display: inline-block;
    margin: 0 auto;
    color: #000;
    text-decoration: none;
    margin-top: 0;
    width: calc(100% - 120px);
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin: 13px;
    margin-right: 0;
}

.get_referal_wrapper_popup .social_urls {}

.get_referal_wrapper_popup .social_urls ul {}

.get_referal_wrapper_popup .social_urls ul li {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.get_referal_wrapper_popup .social_urls ul li:last-child {
    border-bottom: 0;
}

.get_referal_wrapper_popup .social_urls ul li.header {

    background: #f0f0f0;
    padding: 12px 15px;
    /* margin-bottom: 10px; */
}

.get_referal_wrapper_popup .social_urls ul li img {
    vertical-align: middle;
    margin-right: 15px;
    max-width: 32px;
}

.get_referal_wrapper_popup .social_urls ul li a {
    vertical-align: middle;
    text-decoration: none;
    width: calc(100% - 48px);
    display: inline-block;
    color: #000 !important
}

.get_referal_wrapper_popup .social_urls ul li a:after {
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    right: 14px;
    color: #999;
}

.get_referal_wrapper_popup .bottom_portion {
    height: calc(100% - 52px);
    overflow: auto;
}

@media (min-width: 763px) {
    .get_referal_wrapper_popup {
        /* max-width: 500px; */
        /* max-height: 682px; */
        top: 0;
        bottom: 0;
        /* margin: auto; */
        left: 0;
        right: 0;
        z-index: 500800000;
        background: #00000047;
    }

    .get_referal_wrapper_popup .desk_wrap {
        max-width: 680px;
        max-height: 488px;
        top: 0;
        bottom: 0;
        margin: auto;
        left: 0;
        right: 0;
        z-index: 500800;
        /* margin-top: calc(50% - 341px); */
        position: absolute;
        border-radius: 5px;
        background: #fafafa;
    }

    .get_referal_wrapper_popup .social_urls_invite {
        display: none
    }


}

@media (max-width:763px) {
    .get_referal_wrapper_popup .referal_a {
        width: calc(100% - 79px);
    }

    .copy_coupon_btn {
        padding: 13.6px 16px !important;
        position: absolute;
        right: -3px;
        height: 100%;
        border-radius: 5px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }

    .copy_code_wrapper {
        max-width: calc(100vw - 40px);
        display: block !important;
        float: left;
    }
}

.copy_coupon {
    font-weight: 600;
}

.copy_coupon_btn {
    background: #999999;
    color: #fff;
    border: 0;
    display: inline-block;
    padding: 13.6px 30px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 0px;
    /* margin-left: 60px; */
    float: right;
    position: absolute;
    right: 0;
    height: 100%;
}


.copy_code_wrapper {
    background: #fff;
    display: inline-block;
    margin: 0 auto;
    width: auto;
    border-radius: 5px;
    margin-top: 12px;
    border: 1px solid #999999b8;
    position: relative;
    width: 100%;
}

.loaderDivPopup {
    background: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/loader3.gif) no-repeat left/contain;
    height: 100%;
    /* position: absolute; */
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    /* background-color: #f7f7f7b0; */
    /* width: calc( 100% - 122px); */
    display: table;
    float: left;
    padding-left: 23px;
}

.loaderDivPopup span {
    /* position: absolute; */
    /* top: 57%; */
    /* left: 0; */
    /* right: 0; */
    /* margin: auto; */
    text-align: center;
    background: #fafafa61;
    padding: 5px;
    border-radius: 100px;
    width: calc(100% - 122px);
    /* display: block; */
    font-weight: 600;
}

/* ends get_referal_wrapper */

.fb-reprompt-modal {
    position: fixed;
    z-index: 99999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0, 0, 0, .4)
}

.fb-reprompt-modal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 360px;
    max-width: 100%;
}

.fb-reprompt-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
}

.fb-reprompt-modal .close:focus,
.fb-modal .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.fb-reprompt-modal label {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

.fb-reprompt-modal .inp_email {
    width: 100%;
    background-color: transparent;
    padding: 12px 13px;
    margin-bottom: 3px;
    transition: all 0.5s ease;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    text-align: left;
    text-transform: initial;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    border-bottom: 1px solid #838383;
    padding-left: 8px;
    margin-bottom: 9px;
    margin-top: 15px;
}

.fb-reprompt-modal .inp_email:focus {
    -webkit-box-shadow: inset 4px 0px 0px 0px #999;
    -moz-box-shadow: inset 4px 0px 0px 0px #999;
    box-shadow: inset 4px 0px 0px 0px #999;
}

.fb-reprompt-modal .inp_btn {
    color: #fff;
    padding: 0 18px;
    display: table;
    border-radius: 2px;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin-top: 0;
    transition: all 0.5s ease;
    background: #999;
    outline: 0;
    border: 0;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    display: inline-block;
}

.fb-reprompt-modal #reprompt-message {
    color: red;
}



.get_referal_wrapper_popup h3,
#popup_text {
    font-size: 1em;
    color: #000;
    text-transform: initial;
    margin-bottom: 14px;
    line-height: normal;

    padding: 0 11px;
}

.reg_wall_v2 .reg_wall_box .content_box .content_div>span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {

    .reg_wall_v2 .reg_wall_box .title_txt {
        font-size: 14.5px;
        font-weight: 500;
        padding-bottom: 4px;

        margin-bottom: 0;
    }

    .reg_wall_v2 .reg_wall_box .content_box .content_div>span {
        font-size: 12px;
        line-height: initial;
    }

    .reg_wall_v2 .reg_wall_box .btn {
        min-width: 88px;
        margin-top: 5px;

        line-height: 25px;
    }
}

body.tax-post_series {
    padding-top: 102px;
}

@media only screen and (max-width: 767px) {
    body.tax-post_series {
        padding-top: 50px;
    }
}




/* instory_cta stay_connected_external */
.instory_cta.stay_connected_external {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #ddd;
}

.instory_cta.stay_connected_external .part_1.arrow_box {
    min-width: 45%;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd;
}

.instory_cta.stay_connected_external .part_1.arrow_box .txt_para {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    line-height: initial;
    padding-left: 0px;
}

.instory_cta.stay_connected_external .part_1.arrow_box .logo_story {
    max-height: 55px;
    margin-bottom: 0;
}

.instory_cta.stay_connected_external .part_2 {
    /* align-items: center; */
    /* justify-content: center; */
    min-width: 35%;
}

.instory_cta.stay_connected_external .part_2 ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
}

.instory_cta.stay_connected_external .part_2 ul li {
    padding-left: 10px;
    min-width: 110px;
}

.instory_cta.stay_connected_external .part_2 ul li>div>span {
    width: 100% !important;
}

.instory_cta.stay_connected_external .part_2 ul li>div>span>iframe {
    width: 100% !important;
}

.instory_cta.stay_connected_external .part_2 ul li>iframe {
    min-width: 100% !important;
    background: #1b95e0;
    border-radius: 5px;
}

.instory_cta.stay_connected_external .part_2 ul li>a {
    min-width: 109px;
    display: block;
    height: 29px;
    background: #17548e;
    position: relative;
    border-radius: 5px;
    padding-left: 6px !important;
}

.instory_cta.stay_connected_external .part_2 ul li>a>img {
    border-radius: 9px;
}

.instory_cta.stay_connected_external .part_2 ul li div {
    display: block;
    /* min-width: 105px; */
}

.instory_cta.stay_connected_external .part_2 ul li:first-child {}

.instory_cta.stay_connected_external .part_2 ul li:nth-child(2) {}

.instory_cta.stay_connected_external .part_2 ul li:nth-child(3) {
    /* background: #17548e; */
}



.instory_cta.stay_connected_external .part_2 ul li:after {
    display: none
}

@media (max-width: 768px) {
    .instory_cta.stay_connected_external {
        display: block;
    }

    .instory_cta.stay_connected_external .part_1.arrow_box {
        border: 0;
        text-align: center;
        margin-bottom: 9px;
    }

    .instory_cta.stay_connected_external .part_2 ul li {
        padding-left: 5px;
        padding-right: 5px;
    }

    .instory_cta.stay_connected_external .part_1.arrow_box .logo_story {
        max-height: 35px;
    }

    .instory_cta.stay_connected_external .part_1.arrow_box:before {
        display: none
    }

    .instory_cta.stay_connected_external .part_1.arrow_box .txt_para {
        padding-left: 0
    }
}




/* topics  tag css */

.videoShowMoreContent {
    display: none;
}

.topics-wrapper {}

.topics-wrapper .image-gallery {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.topics-wrapper .topics-description {
    font-style: normal;
    font-weight: normal;
    line-height: initial;
    font-family: "Lato", sans-serif;
}

.topics-wrapper .topic-image {
    text-align: center;
    margin-bottom: 12px;
    display: inline-block;
    float: left;
    margin-right: 24px;
    margin-bottom: 8px;
}

.topics-wrapper .topic-image img {
    width: 180px !important;
    height: auto;
}

.topics-wrapper .topic-search-heading {
    text-transform: capitalize;
    display: inline-block;
}

.topics-wrapper .videoShowMoreContent {
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.topics-wrapper .gallery_title {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.topics-wrapper .image-gallery .desc {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.72) 100%) repeat scroll 0 0;
    padding: 4px 4px;
    width: 100%;
    position: absolute;
    bottom: 0;
    min-height: 38px;
}

.topics-wrapper .image-gallery .desc h2 {
    font-size: 20px;
    text-align: center;
    padding-bottom: 11px;
}

.topics-wrapper .image-gallery .desc h2 a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}

#topic_image_carousel .owl-nav .owl-next {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1000;
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/slider-arrow.png);
    text-indent: -300000px;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    width: 31px !important;
    height: 39px !important;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 0;
    background-size: 14px;
    background-position: 9px -32px;
}

#topic_image_carousel .owl-nav .owl-prev {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1000;
    background-image: url(https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/slider-arrow.png);
    text-indent: -300000px;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    width: 31px !important;
    height: 39px !important;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-size: 14px;
    background-position: 7px 7px;
}

.topics-wrapper .video-gallery .owl-carousel .owl-controls .owl-nav {
    color: transparent;
}

#topic_video_carousel .owl-item .item {
    margin-right: 15px;
}

#topic_video_carousel .owl-nav .owl-prev {
    display: block;
    position: absolute;
    top: 44%;
    z-index: 1000;
    background-image: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/slider-arrow.png");
    text-indent: -300000px;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    width: 31px !important;
    height: 39px !important;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-size: 14px;
    background-position: 7px 7px;
}

#topic_video_carousel .owl-nav .owl-next {
    display: block;
    position: absolute;
    top: 37%;
    z-index: 1000;
    background-image: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/slider-arrow.png");
    text-indent: -300000px;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    width: 31px !important;
    height: 39px !important;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 2%;
    background-size: 14px;
    background-position: 9px -32px;
}

#topic_video_carousel .owl-item .item .viralPlayicon::after {
    left: 48%;
    top: 108px;
}

#topic_video_carousel .owl-item .item img {
    height: auto;
}

.topics-wrapper .owl-carousel img {
    height: auto !important
}

.topics-wrapper #topic_video_carousel.owl-carousel .desc h2 {
    text-align: center;
    text-transform: capitalize;
    margin-top: 15px;
    font-size: 20px;
}

.topics-wrapper #topic_video_carousel.owl-carousel .desc h2 a {
    color: #000;
    text-decoration: none;
    font-weight: 300;
}

.videoShowMore {
    background-color: #fcfcfc;
    text-decoration: none;
    clear: both;
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #010101 !important;
}

.topics-wrapper .video-gallery {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.about-topic-tag {
    text-align: center;
    display: block !important;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px !important;
}

.facebook-messenger {
    background: #0084ff
}

.fa-facebook-messenger {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEyOCAxMjgiIGhlaWdodD0iMTI4cHgiIGlkPSJMYXllcl8xIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMjggMTI4IiB3aWR0aD0iMTI4cHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxnPjxyZWN0IGZpbGw9IiMwMDg0RkYiIGhlaWdodD0iMTI4IiB3aWR0aD0iMTI4Ii8+PC9nPjxwYXRoIGQ9Ik02NCwxNy41MzFjLTI1LjQwNSwwLTQ2LDE5LjI1OS00Niw0My4wMTVjMCwxMy41MTUsNi42NjUsMjUuNTc0LDE3LjA4OSwzMy40NnYxNi40NjIgIGwxNS42OTgtOC43MDdjNC4xODYsMS4xNzEsOC42MjEsMS44LDEzLjIxMywxLjhjMjUuNDA1LDAsNDYtMTkuMjU4LDQ2LTQzLjAxNUMxMTAsMzYuNzksODkuNDA1LDE3LjUzMSw2NCwxNy41MzF6IE02OC44NDUsNzUuMjE0ICBMNTYuOTQ3LDYyLjg1NUwzNC4wMzUsNzUuNTI0bDI1LjEyLTI2LjY1N2wxMS44OTgsMTIuMzU5bDIyLjkxLTEyLjY3TDY4Ljg0NSw3NS4yMTR6IiBmaWxsPSIjRkZGRkZGIiBpZD0iQnViYmxlX1NoYXBlIi8+PC9zdmc+) #0084ff no-repeat center/50%;
}

/*Hide show mobile desktop*/
body .desktopOnly {
    display: block;
}

body .mobileOnly {
    display: none;
}

@media (max-width: 768px) {
    body .desktopOnly {
        display: none;
    }

    body .mobileOnly {
        display: block;
    }
}

/*GOALDIGGER form*/
.single-microsite .embed_form_unit .left_unit_form {
    display: inline-block;
    width: 60%;
}

.single-microsite .embed_form_unit .right_unit_form {
    display: inline-block;
    width: 40%;
}

.single-microsite .embed_form_unit .left_unit_form img {
    width: 100%;
}

.single-microsite .embed_form_unit .right_unit_form .instant_sign_fb {
    display: inline-block;
    max-width: 100%;
    padding: 12px 0;
    background-color: #3B5998;
    color: #fff;
    width: calc(100% - 10px);
    text-align: center;
    text-decoration: none;
}

.single-microsite .embed_form_unit .right_unit_form i {
    display: none;
}

.single-microsite .embed_form_unit .right_unit_form .form_wrapper .gfield_contains_required .gfield_label {
    /*    display: none;*/
}

.single-microsite .embed_form_unit .right_unit_form .form_wrapper .ginput_container {
    /*width: calc(100% - 100px);
    float: left;*/
    margin-top: 0 !important;
    width: 100% !important;
    border: 1px solid #b3b3b3;
    margin-bottom: 6px;
}

.single-microsite .embed_form_unit .right_unit_form .form_wrapper .ginput_container input {
    width: 100%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 0 !important;
}

.embed_form_unit .container {
    margin: 6% auto;
}

.single-microsite .embed_form_unit .gform_footer .gform_button {
    padding: 5px 76px;
    border-radius: 2px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    font-size: 22px;
    border: 0;
}

.single-microsite .gform_footer .gform_button:hover {
    opacity: 0.8;
}

.single-microsite .embed_form_unit .right_unit_form .gform_footer {
    text-align: center;
    margin-top: 0 !important;
}

.single-microsite .right_unit_form .form_wrapper .ginput_container #input_4_4,
#input_4_5 {
    height: 48px;
}

.single-microsite .field_4_4 .gfield_label,
.portfolio-page .field_4_5 .gfield_label {
    line-height: 2.5;
}

.single-microsite .embed_form_unit .field_4_4 .ginput_container,
.portfolio-page .embed_form_unit .field_4_5 .ginput_container {
    margin-bottom: 0 !important;
}

.single-microsite .embed_form_unit .left_unit_form img {
    width: 100%
}

.single-microsite .embed_form_unit .right_unit_form .form_wrapper {
    padding-left: 36px;
}

.single-microsite .embed_form_unit .right_unit_form .form_wrapper .ginput_container #input_4_1,
#input_4_2,
#input_4_3 {
    padding: 8px 0;
}

.single-microsite .seperator-or {
    font-family: 'Lato', sans-serif;
    font-size: 1.9em;
    margin: 10px auto;
    display: table;
    color: #686667 !important;
}

.single-microsite .action_text {
    font-family: FontAwesome, sans-serif;
    text-align: center;
    font-size: 0.7em;
    padding-top: 14px !important;
    padding-left: 10px;
}

.single-microsite .right_unit_form .form_wrapper .gform_wrapper {
    margin-top: 0;
}

.single-microsite .flex_wrapper_microsite_new {
    display: flex;
}

/*ThankYou msg*/
.single-microsite .embed_form_unit .thank_you_msg_wrap .tbl_cont {
    display: table;
    text-align: center;
    width: 100%;
    margin: 125px auto;
}

.single-microsite .embed_form_unit .thank_you_msg_wrap .tbl_cell {
    display: table-cell;
}

.single-microsite .embed_form_unit .thank_you_msg_wrap .tbl_cell h2 {
    font-family: savoybold, sans-serif;
    font-size: 3.6em;
    line-height: initial;
}

.single-microsite .embed_form_unit .thank_you_msg_wrap .tbl_cell .thanks_msg {
    font-family: Lato, sans-serif;
    font-size: 18px;
    line-height: 23px;
    display: table;
    max-width: 290px;
    margin: 0 auto;
    margin-bottom: 0px;
    text-align: center;
    margin-bottom: 32px;
}


.single-microsite .embed_form_unit .share_fb_btn {
    background-color: #3b5998;
    display: table;
    margin: 0 auto;
    /*padding: 8px 11px;*/
    padding: 11px 17px 11px 12px;
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
}

.single-microsite .embed_form_unit .share_fb_btn .fa {

    display: inline;
    color: #fff;
    margin-right: 10px;
    font-size: 26px;
    vertical-align: middle;
}

.instory_newsletter_cta {
    margin-bottom: 0;
    border-bottom: 0;
}

/*temp fix instagram*/
.embed iframe.instagram-media {
    position: relative !important;
}


.extra_txt_subs {
    margin-top: 20px !important;
    line-height: inherit !important;
    display: block;
    font-size: 15px;
}

.extra_txt_subs a {
    font-size: inherit !important;

    font-family: inherit !important;

    font-weight: 600;
}


/*patner/event*/
.art_wrap {
    background: #000;
}

.coverunitWrap {
    background: #000;
    padding: 22px;
    position: relative;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin: 0 auto 15px;
    max-width: 1280px;
}

.coverunitWrap:after {
    content: '';
    display: block;
    clear: both;
}

.coverLeftCont {
    width: 64.84%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    padding-right: 49px;
    border-right: 1px solid #434343;
    float: left;
}

.coverLeftCont a,
.iphoneclrfix {
    color: #fff;
    /*05-03-16*/
}

.lrgVideo img {
    width: 100%;
}

.slideCaption {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 19px;
    padding: 0 0 30px;
    border-bottom: 1px solid #4d4d4d;
    line-height: 28px;
}

.weddingRegister {
    padding: 30px 0 0;
}

.weddingRegister:after {
    display: block;
    clear: both;
    content: '';
}

.wedregLeft {
    width: calc(100% - 220px);
    display: inline-block;
}

.weddingRegister h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 20px;
}

.weddingRegister span {
    display: block;
    font-size: 20px;
    font-weight: 300;
    padding-top: 5px;
    line-height: 22px;
}

.wedRegister {
    display: inline-block;
    float: right;
    margin-top: 20px;
}

.wedRegister a {
    background: #999;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding: 15px 30px;
    text-decoration: none;
    transition: all ease-in-out 0.2s;
}

.wedRegister a:hover {
    background: #999;
}

.coverThumbImage ul li {
    list-style: none;
    position: relative;
    margin-bottom: 18px;
}

.coverThumbImage ul li a {
    color: #fff;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
}

.weddingcoverTwo .coverThumbImage strong {
    display: block;
    height: 274px;
}

.coverThumbImage {
    float: right;
    width: 31%;
}

.coverThumbImage img {
    width: 100%;
}

.coverThumbImage .cont_div {
    bottom: 15px;
    left: 14px;
    position: absolute;
    z-index: 10;
}

.coverThumbImage span {
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 26px;
    z-index: 10;
}

.coverThumbImage p {
    font-size: 16px;
    left: 14px;
    /* top: 168px;*/
    font-weight: bold;
    line-height: 20px;
    z-index: 10;
}

.coverThumbImage a {
    position: relative;
    display: inline-block;
}

.coverThumbImage a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 90%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.80)), color-stop(90%, rgba(0, 0, 0, 0)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 90%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 90%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 90%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 90%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */
}

.coverThumbImage strong img {
    display: block;
}

/*========Cover Unit Two=========*/
.weddingcoverTwo .coverLeftCont {
    width: 49%;
}

.weddingcoverTwo .wedregLeft {
    width: 100%;
}

.weddingcoverTwo .weddingRegister h2 {
    font-size: 66px;
    color: #fff;
    line-height: 62px;
}

.weddingcoverTwo .weddingRegister span {
    font-size: 46px;
    line-height: 42px;
}

.weddingcoverTwo .wedRegister {
    float: none;
    margin-top: 34px;
}

.weddingcoverTwo .wedRegister a {
    width: 100%;
    display: block;
    padding: 22px 0;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
}

.weddingcoverTwo .coverThumbImage ul li {
    display: inline-block;
    margin: 0 9px;
    width: 273px;
}

.weddingcoverTwo .coverThumbImage {
    width: 48%;
}

.weddingcoverTwo .coverThumbImage p {
    position: static;
    text-align: center;
    padding: 10px 20px 15px;
}

.weddingcoverTwo .coverThumbImage p a {
    color: #a78047;
    height: auto;
}

.weddingcoverTwo .coverThumbImage span {
    left: 0;
    text-align: center;
    width: 100%;
    bottom: 80px;
}

.rightPanel {
    float: left;
    width: 50%;
}

.leftPanel {
    float: left;
    width: 50%;
}

.wrapper-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.wrapper-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideTitle {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-weight: bold;
    padding: 20px 0;
    text-transform: capitalize;
}

.coverLeftCont .infoBtn {
    color: #000;
}

.vwsh2 {
    font-size: 45px;
    padding: 12px 0 30px;
    text-align: center;
}

.init-slider.four-col-carousel.curated-topic-carousel-1.lightSlider.lsGrab.lSSlide {
    margin: 0 auto;
}

@media only screen and (max-width : 767px) {
    .slideTitle {
        line-height: 30px;
    }

    .covUnitHolder {
        padding: 0;
    }

    .coverLeftCont {
        border: medium none;
        float: none;
        padding-right: 0;
        width: 100%;
    }

    .coverunitWrap {
        padding: 10px;
    }

    .slideCaption {
        padding: 10px 0 0;
        border-bottom: none;
    }

    .wedregLeft {
        width: 100%;
        padding-bottom: 0;
    }

    .wedRegister {
        float: none;
        margin-top: 10px;
        margin-bottom: 18px;
        width: 100%;
    }

    .wedRegister a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .weddingRegister h2 {
        font-size: 23px;
        color: #fff;
        padding-bottom: 0;
    }

    .weddingRegister span {
        font-size: 20px;
        line-height: 22px;
    }

    .coverThumbImage {
        float: none;
        width: 100%;
    }

    .coverThumbImage {
        border-top: 1px solid #4d4d4d;
        padding-top: 18px;
    }

    .weddingRegister {
        padding: 10px 0 0;
    }

    .wrapper-video.f-image {
        position: relative;
        padding-bottom: 0;
        /* 16:9 */
        height: auto;
    }

    .coverThumbImage .cont_div {
        bottom: auto;
        position: relative;
        left: 0
    }

    .coverThumbImage span {
        position: static;
        font-size: 12px;
        text-align: left;
        display: block;
        line-height: 16px;
        padding: 8px 0;
    }

    .coverThumbImage p {
        position: static;
        font-size: 12px;
        color: #fff;
        text-align: left;
        line-height: 16px;
    }

    .coverThumbImage ul li {
        margin-bottom: 0;
    }

    .coverThumbImage ul {
        text-align: center;
    }

    .coverThumbImage ul li {
        width: 32%;
        display: inline-block;
        margin-right: 1.33%;
        vertical-align: top;
    }

    .lrgVideo {
        position: relative;
    }

    .slideCaption {}

    /*========Cover Unit Two=========*/
    .weddingcoverTwo .coverLeftCont {
        border: medium none;
        float: none;
        padding-right: 0;
        width: 100%;
    }

    .weddingcoverTwo .coverunitWrap {
        padding: 10px;
    }

    .slideTitle {
        text-align: left;
        margin-top: 0px;
        padding-bottom: 0;
        line-height: 30px;
    }

    .weddingcoverTwo .slideCaption {
        text-align: left;
    }

    .weddingcoverTwo .wedregLeft {
        width: 100%;
    }

    .weddingcoverTwo .wedRegister {
        float: none;
        margin-top: 10px;
        margin-bottom: 18px;
    }

    .weddingcoverTwo .wedRegister a {
        display: block;
        width: 100%;
        padding: 33px 0;
        text-align: center;
        font-weight: normal;
        margin-top: 10px;
    }

    .weddingcoverTwo .weddingRegister h2 {
        font-size: 47px;
        color: #fff;
    }

    .weddingcoverTwo .weddingRegister span {
        font-size: 32px;
        line-height: 35px;
    }

    .weddingcoverTwo .coverThumbImage {
        float: none;
        width: 100%;
    }

    .weddingcoverTwo .coverThumbImage {
        border-top: 1px solid #4d4d4d;
        padding-top: 18px;
    }

    .weddingcoverTwo .weddingRegister {
        padding: 18px 0 0;
    }

    .weddingcoverTwo .coverThumbImage span {
        position: static;
        font-size: 11px;
        text-align: center;
        display: block;
    }

    .weddingcoverTwo .coverThumbImage p {
        font-size: 11px;
        margin-bottom: 10px;
        padding: 0;
        position: static;
        text-align: center;
    }

    .weddingcoverTwo .coverThumbImage ul {
        text-align: left;
    }

    .weddingcoverTwo .coverThumbImage ul li {
        display: inline-block;
        float: none;
        margin: 0 0 0 9px;
        width: 21%;
    }

    .coverThumbImage img {
        height: auto;
    }

    .weddingcoverTwo .coverThumbImage img {
        height: 90px;
    }

    .coverThumbImage ul li a {
        height: auto;
    }

    .coverThumbImage strong {
        height: auto;
    }

    .weddingcoverTwo .coverThumbImage strong {
        height: auto;
    }
}

/*Portfolio revamp 16-07-2018 sel*/
.single-portfolio .left-img img {
    border-radius: 50%;
}

.single-portfolio .portfolio-block-transparent {
    background: transparent !important;
    padding: 0;
    position: relative;
}

.single-portfolio .portfolio-block-transparent .block-content:before {
    background-image: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/portfolio/grey_quote.png");
    font-size: 60px;
    width: 70px;
    height: 70px;
    left: 0;
    content: "";
    top: 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
}

.single-portfolio .portfolio-block-transparent .block-content:after {
    content: "";
    font-size: 20px;
    background-image: url("https://www.architecturaldigest.in/wp-content/themes/cntraveller/images/portfolio/grey_quote.png");
    font-size: 60px;
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.single-portfolio .portfolio-block-transparent .quote_wrapper .quote_image img {
    width: auto !important;
    min-width: 182px;
    max-width: 200px;
}

.single-portfolio .portfolio-block-transparent .quote_wrapper {
    width: calc(100% - 140px);
    margin-left: 70px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-portfolio .portfolio-block-transparent .quote_wrapper .quote_image {
    vertical-align: middle;
}

.single-portfolio .portfolio-block-transparent .quote_wrapper .quote_title {
    display: inline-block;
    font-size: 3em;
    line-height: initial;
    margin-bottom: 6px;
    font-family: savoybold, serif;
}

.single-portfolio .portfolio-block-transparent .quote_wrapper .quote_desc {
    padding-left: 28px;
}

.single-portfolio .portfolio-block-transparent .quote_wrapper .quote_meta_desc {
    /* display: table-cell; */
    /* vertical-align: middle; */
    font-size: 19px;
    line-height: initial;
    font-family: savoyregular, serif;
}

.single-portfolio .portfolio-block-transparent .block-content {
    position: relative;
    margin-bottom: 20px;
}

.single-portfolio .top-social-btn-blk a {
    margin-right: 7px
}

.single-portfolio .star_rate {
    display: inline-block;
    margin-top: 5px;
    margin-right: 5px;
}

.single-portfolio .single-story-block #portfolioCollection .owl1-cols .count {
    background-position: center center;
    background-repeat: no-repeat;
    bottom: calc(0% - -10px);
    color: #fff;
    display: block;
    font-size: 12px;
    height: 43px;
    left: 0%;
    line-height: 39px;
    padding: 0 10px 0 16px;
    position: absolute;
    text-align: left;
    width: 55px;
}

/*Designer section*/

.single-portfolio .mainContent {
    max-width: 1240px;
}

.single-portfolio .right-block .portfolio_type_label,
.single-portfolio .right-block .portfolioLabel {
    color: #686667 !important;
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 15px;
    min-width: 100px;
    display: inline-block;
    text-transform: initial;
}

.single-portfolio .right-block .follow-block .top-social-btn-blk h3 {
    color: #666766 !important;
    text-transform: initial;
    margin-top: 0;
}

.single-portfolio .block-content .left-img {
    width: 324px;
}

.single-portfolio .block-content .right-block {
    padding: 10px 27px;
    width: calc(100% - 324px);
}

.single-portfolio .right-block p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
}

.single-portfolio .portifolio-block .right-block strong {
    font-weight: 600;
}

.single-portfolio .mainContent article {
    padding-right: 320px;
}

.single-portfolio .portifolio-block {
    width: 74%;
    padding: 25px;
}

.single-portfolio .right-block h2 {
    padding-bottom: 5px;
}

.portifolio-block .videoShowMore:before {
    content: '... ';
    color: #000
}

.portifolio-block .videoShowMore {
    border: 0;
    padding: 0;
    display: inline;
    text-transform: capitalize;
    color: #3a579b !important;
    font-weight: 500;
    margin-left: 2px;
    font-size: 14px;
    line-height: 23px;
}

.portifolio-block .videoShowMore .fa {
    display: none;
}

.single-portfolio .social-share-blk {
    display: none !important
}

.single-portfolio .portifolio-block .right-block a {
    text-decoration: underline;
    color: #3a579b !important;
}

.single-portfolio .portfolio-contact-form .gform_wrapper .gform_footer {
    padding: 0 0 .625em;
}

.single-portfolio .socialShare .nextb {
    display: none;
}

.single-portfolio .story .midcontent .contact-map {
    display: table;
    width: 100%;
}

.single-portfolio .story .midcontent .contact-map .map-canvas {
    display: table-cell;
    float: none !important;
}

.single-portfolio .story .midcontent .contact-map .portfolio-contact-form {
    display: table-cell;
    padding-left: 1%;
    float: none !important;
}

.single-portfolio .story .midcontent .contact-map .portfolio-contact-form .gform_button {
    margin-bottom: 3%;
}

@media only screen and (max-width : 767px) {
    .single-portfolio .portifolio-block {
        width: 100%;
        padding: 0;
    }

    .single-portfolio .block-content .left-img {
        width: 100%;
    }

    .single-portfolio .block-content .left-img img {
        max-width: 220px;
        display: table;
        margin: 0 auto;
    }

    .single-portfolio .block-content .left-img {
        width: 100%;
    }

    .single-portfolio .block-content .right-block {
        padding: 10px;
        width: 100%;
    }

    .single-portfolio article {
        padding-right: 0
    }

    .single-portfolio .single-story-block .contact-map .portfolio-contact-form {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 13px 10px !important;
        overflow: hidden;
    }

    .single-portfolio .portfolio-contact-form .gform_wrapper input[type="text"],
    .portfolio-contact-form .gform_wrapper textarea.medium {
        width: 90% !important
    }

    .single-portfolio .story .midcontent .contact-map {
        display: block;
        width: 100%;
    }

    .single-portfolio .contact-map #map_canvas {
        display: block;
        width: 100%;
        clear: both;
    }

    .single-portfolio .story .midcontent .contact-map .portfolio-contact-form {
        display: block;
        width: 100%;
        clear: both;
    }
}



.renewal-check-wrapper {
    padding: 10px 0;
    font-family: "Lato", sans-serif;
    margin-top: 20px;
}

.renewal-check-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer
}

.renewal-check-wrapper label div {
    padding-left: 28px;
    margin-top: 7px;
    display: flex;
    flex-direction: column;
}

.renewal-check-wrapper label div span {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 300;
}

.renewal-check-wrapper input[type="radio"] {
    margin-right: 10px;
    margin-top: 0;
    vertical-align: bottom;
}

.renewal-check-wrapper span {}

.instant_sign_fb {
    font-family: "Lato", sans-serif;
    margin-top: 10px;
}


/*.sb-mpu-ad{
        position: absolute;
    right: 0;
    z-index: 11;
}
*/


.single-microsite .embed_form_unit .right_unit_form .form_wrapper .ginput_container input {
    padding: 10px 8px;
}

.single-microsite .embed_form_unit .right_unit_form .form_wrapper .ginput_container.ginput_container_textarea textarea {
    border: 0;
    width: 100%;
}

.single-microsite .embed_form_unit .right_unit_form .form_wrapper .ginput_container .gfield_select {
    width: 100%;
    border: 0;
    margin-left: 0;
}

#gform_1 select {
    border: none;
    width: 99.5%;
    cursor: pointer;
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMjkgMTI5IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjkgMTI5IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4Ij4KICA8Zz4KICAgIDxwYXRoIGQ9Im0xMjEuMywzNC42Yy0xLjYtMS42LTQuMi0xLjYtNS44LDBsLTUxLDUxLjEtNTEuMS01MS4xYy0xLjYtMS42LTQuMi0xLjYtNS44LDAtMS42LDEuNi0xLjYsNC4yIDAsNS44bDUzLjksNTMuOWMwLjgsMC44IDEuOCwxLjIgMi45LDEuMiAxLDAgMi4xLTAuNCAyLjktMS4ybDUzLjktNTMuOWMxLjctMS42IDEuNy00LjIgMC4xLTUuOHoiIGZpbGw9IiMwMDAwMDAiLz4KICA8L2c+Cjwvc3ZnPgo=) 98% center no-repeat/15px;
}

nav ul.menu li.more-options:hover .dropdown {
    z-index: 2
}

@media (min-width: 768px) {

    .coverunitWrap .weddingRegister {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .coverunitWrap .wedregLeft {
        width: auto;
        flex: 1;
    }

    .coverunitWrap .wedregLeft h2 {
        padding-bottom: 0
    }

    .coverunitWrap .wedRegister {
        margin-top: 0;
        /* display: inline-flex; */
        /* float: none; */
        /* flex: 1; */
    }

}

.embed_form_unit .description {
    margin-bottom: 30px !important;
}

.single-story-block {}

.register-form-single {}

.register-form-single h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

.register-form-single .gform_wrapper {
    margin-top: 30px;
    max-width: 100%;
    /* border-top: 1px solid #ddd; */
}

.register-form-single p {
    text-align: center;
    line-height: initial;

    font-size: 1.2em;
}

.register-form-single .gform_title,
#gform_1 .gform_title {
    display: none;
}

.register-form-single .gform_wrapper form {
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #dddddd54;
}

.register-form-single input,
.register-form-single textarea,
.register-form-single select {
    width: 100% !important;
    padding: 10px 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 2px;
}

.register-form-single .gform_wrapper .left_label .gfield_label {
    display: block;
    margin: 0;
    margin: 0 0 .7em 0 !important;
    width: 100%;
}


.register-form-single .gform_wrapper .gform_footer {
    width: 100% !important;
    margin-left: 0 !important;
}

.register-form-single .gform_wrapper .gform_footer .gform_button {
    max-width: 200px;
    margin: 0 auto;
    display: table;
    background: #000;
    color: #fff;
    border-radius: 3px;
    cursor: pointer
}

.register-form-single #extensions_message {
    margin-top: 5px;
    display: block;
    font-size: 13px;
}

@media (max-width: 768px) {
    .register-form-single .gform_wrapper {
        margin-top: 5%;
    }
}

.embed_form_unit .unit_title {

    margin-bottom: 10px;
}



.art_wrap .cni_vertical_carousel.coverThumbImage span,
.art_wrap .coverunitWrap .slideTitle,
.art_wrap .coverunitWrap .weddingRegister .wedregLeft h2,
.art_wrap .coverLeftCont .slideCaption {
    font-family: 'savoyregular';
    color: #000;
}

.art_wrap .cni_vertical_carousel.coverThumbImage span {
    color: #fff
}

.art_wrap,
.art_wrap .coverunitWrap {
    background: #f9f9f9
}


@media (max-width: 768px) {
    .art_wrap .cni_vertical_carousel .cont_div {
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .art_wrap .cni_vertical_carousel.coverThumbImage span {
        text-align: center;
    }

    .art_wrap .coverunitWrap .weddingRegister .wedregLeft h2 {
        font-size: 19px;
        line-height: 26px;
        font-family: 'savoybold';
    }
}


.microsite_carousel .product_carousel .desc {
    position: relative;
    min-height: auto !important;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    background: none !important;
}

.microsite_carousel .product_carousel .desc .tag {
    /* display: inline-flex; */
    /* flex: 1; */
    width: 100%;
    margin-bottom: 0
}

.microsite_carousel .product_carousel .desc h5 {
    /* display: block; */
    width: 100%;
    /* flex: 1; */
}

.microsite_carousel .product_carousel .desc .tag a {
    color: #000;
}

.microsite_carousel .product_carousel .desc h5 a {
    color: #000
}

@media (max-width: 768px) {
    .subscribe.squareFeatureMobile {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        height: auto !important;
        padding: 15px 20px;
        align-items: center;
    }

    .subscribe.squareFeatureMobile .vertical-img {
        position: relative;
        left: 0 !important;
        top: 0;
        float: none;
    }

    .subscribe.squareFeatureMobile .subscribe-details {
        padding-left: 10px;
    }

    .subscribe.squareFeatureMobile .subscribe-details .innerwrap {
        padding: 0 !important;
    }

    .subscribe.squareFeatureMobile .subscribe-details .subcribe-button {
        padding: 6px 5px !important;
        width: 100% !important;
        font-size: 13px !important;
        margin-top: 15px !important;
    }

}




.gfield_select {

    border: none;
    width: 99.5%;
    cursor: pointer;
    background: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMjkgMTI5IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMjkgMTI5IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4Ij4KICA8Zz4KICAgIDxwYXRoIGQ9Im0xMjEuMywzNC42Yy0xLjYtMS42LTQuMi0xLjYtNS44LDBsLTUxLDUxLjEtNTEuMS01MS4xYy0xLjYtMS42LTQuMi0xLjYtNS44LDAtMS42LDEuNi0xLjYsNC4yIDAsNS44bDUzLjksNTMuOWMwLjgsMC44IDEuOCwxLjIgMi45LDEuMiAxLDAgMi4xLTAuNCAyLjktMS4ybDUzLjktNTMuOWMxLjctMS42IDEuNy00LjIgMC4xLTUuOHoiIGZpbGw9IiMwMDAwMDAiLz4KICA8L2c+Cjwvc3ZnPgo=) 98% center no-repeat/15px;

}

.gform_confirmation_message_6 {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 30px;
    font-size: 1.2em;
    margin-top: 30px;
    font-weight: 600;
}


span.glogin {
    margin-left: 1px;
    margin-right: 1px;
    border-left: 1px solid #ccc;
    padding-left: 2px;
    cursor: pointer
}

span.glogin .fa {
    color: #fff;
    width: 16px;
    display: inline-block;
    height: 17px;
    line-height: 17px;
    text-align: center;
    border-radius: 2px;
    vertical-align: baseline;
    margin-left: 2px;
    background-size: 13px;
}

.fa-google {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBhdGggc3R5bGU9ImZpbGw6I0ZCQkIwMDsiIGQ9Ik0xMTMuNDcsMzA5LjQwOEw5NS42NDgsMzc1Ljk0bC02NS4xMzksMS4zNzhDMTEuMDQyLDM0MS4yMTEsMCwyOTkuOSwwLDI1NiAgYzAtNDIuNDUxLDEwLjMyNC04Mi40ODMsMjguNjI0LTExNy43MzJoMC4wMTRsNTcuOTkyLDEwLjYzMmwyNS40MDQsNTcuNjQ0Yy01LjMxNywxNS41MDEtOC4yMTUsMzIuMTQxLTguMjE1LDQ5LjQ1NiAgQzEwMy44MjEsMjc0Ljc5MiwxMDcuMjI1LDI5Mi43OTcsMTEzLjQ3LDMwOS40MDh6Ii8+CjxwYXRoIHN0eWxlPSJmaWxsOiM1MThFRjg7IiBkPSJNNTA3LjUyNywyMDguMTc2QzUxMC40NjcsMjIzLjY2Miw1MTIsMjM5LjY1NSw1MTIsMjU2YzAsMTguMzI4LTEuOTI3LDM2LjIwNi01LjU5OCw1My40NTEgIGMtMTIuNDYyLDU4LjY4My00NS4wMjUsMTA5LjkyNS05MC4xMzQsMTQ2LjE4N2wtMC4wMTQtMC4wMTRsLTczLjA0NC0zLjcyN2wtMTAuMzM4LTY0LjUzNSAgYzI5LjkzMi0xNy41NTQsNTMuMzI0LTQ1LjAyNSw2NS42NDYtNzcuOTExaC0xMzYuODlWMjA4LjE3NmgxMzguODg3TDUwNy41MjcsMjA4LjE3Nkw1MDcuNTI3LDIwOC4xNzZ6Ii8+CjxwYXRoIHN0eWxlPSJmaWxsOiMyOEI0NDY7IiBkPSJNNDE2LjI1Myw0NTUuNjI0bDAuMDE0LDAuMDE0QzM3Mi4zOTYsNDkwLjkwMSwzMTYuNjY2LDUxMiwyNTYsNTEyICBjLTk3LjQ5MSwwLTE4Mi4yNTItNTQuNDkxLTIyNS40OTEtMTM0LjY4MWw4Mi45NjEtNjcuOTFjMjEuNjE5LDU3LjY5OCw3Ny4yNzgsOTguNzcxLDE0Mi41Myw5OC43NzEgIGMyOC4wNDcsMCw1NC4zMjMtNy41ODIsNzYuODctMjAuODE4TDQxNi4yNTMsNDU1LjYyNHoiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0YxNDMzNjsiIGQ9Ik00MTkuNDA0LDU4LjkzNmwtODIuOTMzLDY3Ljg5NmMtMjMuMzM1LTE0LjU4Ni01MC45MTktMjMuMDEyLTgwLjQ3MS0yMy4wMTIgIGMtNjYuNzI5LDAtMTIzLjQyOSw0Mi45NTctMTQzLjk2NSwxMDIuNzI0bC04My4zOTctNjguMjc2aC0wLjAxNEM3MS4yMyw1Ni4xMjMsMTU3LjA2LDAsMjU2LDAgIEMzMTguMTE1LDAsMzc1LjA2OCwyMi4xMjYsNDE5LjQwNCw1OC45MzZ6Ii8+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: transparent;
}

span.glogin .fa-google {
    vertical-align: top;
}

.fa-google:before {
    content: '' !important
}

.login_fbg_wrapper span.fblogin {

    margin-right: 4px;
}



/* .newsletter_story_wrap */
.newsletter_story_wrap>a {
    margin-left: 5px;
    text-transform: capitalize;
    color: #000
}

.newsletter_story_wrap i a {
    border: 0;
    color: #000;
}


.newsletter_story_wrap em {
    display: inline;
    margin-left: 3px;
}

.newsletter_story_wrap p>a {
    margin-left: 10px;
    text-transform: uppercase;
    color: #000;
    border-color: #000;
    font-size: 14px;
    text-decoration: underline !important;
}

.newsletter_story_wrap p>a:hover {
    border-color: #000
}

.newsletter_story_wrap i a {
    border: 0;
    color: #000;
}

.newsletter_story_wrap {
    margin-bottom: 50px;
}

.newsletter_story_wrap>h2 {
    margin: 10px 0 !important;
    line-height: initial !important;
}

.newsletter_story_wrap i {
    display: table;
    margin-bottom: 3px;
    margin-top: 0px;
    /* font-family: "Roboto Slab",sans-serif; */
    font-size: 17px;
    font-family: savoyitalic, serif;
    font-size: 18px;
    /* font-style: italic; */
    padding: 5px 0;
    padding-top: 0;
    line-height: initial;
}

.newsletter_story_wrap>a:first-child {
    margin-left: 0 !important
}

.newsletter_story_wrap p:empty {
    display: none
}

.sales_page_wrapper .twoCol .first{
    padding-top: 0;
}



.socialShare.socialShare-top.social-sharer-buttons-article-top {
    display: inline;
}

.post-social .post-body-meta {
    margin-top: 0;
}

.post-social .post-body-meta .photo-credit:not(empty) {
    padding-left: 55px !important;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .post-header .post-social {
        height: auto !important;
        display: block;
        padding-bottom: 0;
        margin-bottom: 1px;
        width: 100%;
    }
}


/*social_share_new*/
.social_share_new{}
.post-social{    
    height: auto!important;
}

.post-social .socialShare{
    display: block!important;
}
.post-body-meta div:first-child:nth-last-child(1) {

}

.post-social .post-body-meta .photo-credit
{
    padding-left: 55px!important
}


@media (max-width: 768px){
    .post-body-meta>div:first-child{
        padding: 10px 16px 10px 55px!important
    }
}