/* Variables */

:root {
    /* Color Variables */
    --DTPrimary_RGB: 252, 132, 107;
    --DTSecondary_RGB: 55, 55, 55;
    --DTTertiary_RGB: 255, 242, 240;
    --DTQuaternary_RGB: 252, 213, 208;
    --DTBodyBG_RGB: 255, 255, 255;
    --DTBodyTxt_RGB: 55, 55, 55;
    --DTLink_RGB: 0, 0, 0;
    --DTLinkHover_RGB: 252, 132, 107;
    --DTBorder_RGB: 221, 221, 221;
    --DTBlack_RGB: 0, 0, 0;
    --DTWhite_RGB: 255, 255, 255;
    --DTBorderColor: #ddd;
    --DTBlackColor: #373737;
    --DTWhiteColor: #fff;
    /* Font Family Typo Variables */
    --DTFontTypo_Base: "Poppins", sans-serif;
    /* for Body */
    --DTFontTypo_Alt: "Playfair Display", serif;
    /* for Headings */
    --DTFontTypo_Ext: "Poppins", sans-serif;
    /* for Extra or Extended fonts */
    /* Font Size Typo Variables */
    --DTFontSizeBase: 18px;
    --DTFontSize_H1: 72px;
    --DTFontSize_H2: 40px;
    --DTFontSize_H3: 36px;
    --DTFontSize_H4: 30px;
    --DTFontSize_H5: 24px;
    --DTFontSize_H6: 20px;
    /* Line-height Typo Variables */
    --DTLineHeightBase: 1.7;
    /* Radius Variables */
    --DTRadius_Zero: 0;
    --DTRadius_Part: 2em;
    --DTRadius_Full: 50%;
    --DTRadius_1X: 3px;
    --DTRadius_2X: 5px;
    --DTRadius_3X: 10px;
    /* Padding Variables */
    --DTInputPadding: 12px 0;
    --DTSelectPadding: 12px;
    --DTPadding_Btn: 14px 30px;
    --DTPadding_MiniBtn: 12px 20px;
    --DTPadding_MaxiBtn: 16px 35px;
    --DTBaseTransition: all 0.3s linear 0s;
}


/* Typography - Defaults */


/* Base */

body,
button,
input,
textarea,
select,
optgroup {
    font-family: var(--DTFontTypo_Base);
    font-size: var(--DTFontSizeBase);
    font-weight: normal;
    letter-spacing: 0;
    line-height: var(--DTLineHeightBase);
    text-transform: none;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button[type="button"],
[role="button"],
button,
.button,
a.button,
.dt-sc-button,
.elementor-button.dt-elementor-button,
.yith-wcwl-add-to-wishlist a,
.yith-wcqv-button,
.dt-wcsg-button {
    line-height: 1em;
}


/* Headings */

h1 {
    font-size: var(--DTFontSize_H1);
}

h2 {
    font-size: var(--DTFontSize_H2);
}

h3 {
    font-size: var(--DTFontSize_H3);
}

h4 {
    font-size: var(--DTFontSize_H4);
}

h5 {
    font-size: var(--DTFontSize_H5);
}

h6 {
    font-size: var(--DTFontSize_H6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--DTFontTypo_Alt);
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.25em;
    text-transform: none;
}


/* Menu */

.dt-header-menu li a {
    font-family: var(--DTFontTypo_Alt);
    font-weight: 500;
}

.dt-header-menu ul li ul li>a {
    font-size: 18px;
    font-weight: normal;
}


/* Breadcrumb */

.main-title-section h1 {
    font-family: var(--DTFontTypo_Alt);
}

.breadcrumb {
    font-family: var(--DTFontTypo_Base);
}

.main-title-section-wrapper>.container {
    width: 1650px;
}

.main-title-section-wrapper>.main-title-section-bg:after {
    background-color: rgba(var(--DTBodyBGColor), 0.05);
}


/* Footer */

div.footer-widgets .widgettitle,
#footer .widgettitle {
    font-family: var(--DTFontTypo_Alt);
}

#footer,
.footer-copyright,
div.footer-widgets .widget {
    font-family: var(--DTFontTypo_Base);
}


/* Base Colors - Defaults */

body,
.layout-boxed .inner-wrapper {
    background-color: var(--DTBodyBGColor);
}


/* Base */

body {
    color: var(--DTBodyTxtColor);
}


/* Links */

a {
    color: var(--DTLinkColor);
}

a:hover {
    color: var(--DTLinkHoverColor);
}


/* a:hover { color: rgba(var(--DTLinkHoverColor), 0.5); } */


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--DTBlackColor);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--DTLinkHoverColor);
}


/* Menu */

.no-header-menu ul li a,
.dt-header-menu .dt-primary-nav li a {
    color: var(--DTBlackColor);
}

.no-header-menu ul>li>a,
.dt-header-menu .dt-primary-nav>li>a {
    color: var(--DTBlackColor);
    padding: 50px 30px;
    font-family: var(--DTFontTypo_Base);
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.dt-header-menu ul.dt-primary-nav>li.menu-item-has-children>a>span:after {
    position: absolute;
    content: "\e855";
    font-family: 'DT Icons';
    margin: auto;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.dt-header-menu ul.dt-primary-nav>li.menu-item-has-children>a>span {
    position: relative;
}


/* Footer */

div.footer-widgets .widgettitle,
#footer .widgettitle {
    color: var(--DTBlackColor);
}

#footer,
.footer-copyright,
div.footer-widgets .widget {
    color: #fff;
    font-size: 14px;
}

.footer-widgets a,
#footer a {
    color: var(--DTLinkColor);
}

.footer-widgets a:hover,
#footer a:hover {
    color: var(--DTLinkHoverColor);
}

.dt-no-footer-builder-content.footer-copyright,
.footer-copyright {
    background-color: var(--DTSecondaryColor);
}

@media only screen and (max-width: 479px) {
    body,
    button,
    input,
    textarea,
    select,
    optgroup {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .commentlist ul.children li>.children {
        padding-left: 6%;
    }
}

@media only screen and (min-width:1025px) and (max-width:1280px) {
    .commentlist ul.children li>.children {
        padding-left: 6%;
    }
}

.woocommerce .product form.cart .variations li.zoo-cw-attr-row>.zoo-cw-type-text>.zoo-cw-attribute-option .zoo-cw-attr-item {
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    line-height: 40px;
    margin: 0;
    padding: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    width: 100%;
    height: auto !important;
    font-size: 12px;
}

.woocommerce .product form.cart .variations li.zoo-cw-attr-row>.zoo-cw-type-text>.zoo-cw-attribute-option .zoo-cw-attr-item span {
    display: inline-block;
    font-size: 16px;
    line-height: 0;
    padding: 0 10px;
    position: relative;
    width: 100%;
    height: 100%;
}

.woocommerce .product form.cart .variations li.zoo-cw-attr-row>.zoo-cw-type-text>.zoo-cw-attribute-option .zoo-cw-attr-item span:first-letter {
    font-size: 14px;
    line-height: 32px;
}