/*
Theme Name: Vroperty
Version: 2.0
Theme URI: http://www.oketheme.com/themes/vroperty-theme
Author: Tri Yuli Kurniawan
Author URI: http://www.oketheme.com
Description: Vroperty Theme adalah tema WordPress yang dirancang khusus untuk website properti, ideal bagi para agen properti di Indonesia. Dengan Vroperty Theme, Anda mendapatkan gratis update dan support selamanya, menjadikannya pilihan wajib untuk memaksimalkan potensi pemasaran properti Anda!
Tags: vroperty, oketheme, properti, agen properti, properti agency
Requires at least: 5.0
Requires PHP: 7.2
*/

/* ROOT VARIABLE */

:root {
    --color1: #1f6abe;
    --color2: #ff8000;
    --colorbg: #fafafa;
    --colorborder: #f7f7f7;
    --colorbody: #333333;
    --colordark: #222222;
    --colorlight: #fefefe;
    --colortrans: #ffffffcf;
    --colorwhite: #ffffff;
    --maxwidth: 1100px;
    --bradius: 10px;
    --inbradius: calc(var(--bradius) / 2);
    --autopad: calc((100% - var(--maxwidth)) / 2 + 20px);
}

/* HTML RESET */

body {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    line-height: 1.6em;
    color: var(--colorbody);
    background: var(--colorlight);
    margin: 0;
}

*,
:after,
:before {
    box-sizing: border-box;
}

ul,
li {
    margin: 0;
    padding: 0;
}

/* LINK */

a{
    color: var(--color1);
    transition: .3s;
}

a:hover {
    color: var(--color2);
}

a:active,
a:hover,
a:link,
a:visited {
    text-decoration: none;
}

/* HEADING */

h1 {
    font-size: 1.6em;
}

h2 {
    font-size: 1.4em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5 {
    font-size: 1em;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 20px 0;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--color1);
}
b, strong {
    font-weight: 600;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
}

/* FORM, INPUT, SELECT, TEXTAREA, RADIO & BUTTON */
input:not([type='radio']):not([type='checkbox']),
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

input[readonly],
textarea[readonly] {
    background: var(--colorbg)!important;
    color: #AAA!important;
}

input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='image']):not([type='range']):not([type='file']),
select,
textarea {
    padding: .6em .8em;
    outline: 0;
    background: var(--colorbg);
    color: var(--colorbody);
    border: 1px solid var(--colorborder);
    border-radius: var(--inbradius);
    line-height: normal;
}

select {
    cursor: pointer;
}

input[type=text]:focus,
select:focus,
textarea:focus {
    background: var(--colorbg);
}

textarea::placeholder,
input::placeholder {
    color: #AAA;
}

/* Input Type Range */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    border-radius: var(--bradius);
}
/* Track: webkit browsers */
input[type="range"]::-webkit-slider-runnable-track {
    height: 16px;
    background: var(--colorborder);
    border-radius: var(--bradius);
}
/* Track: Mozilla Firefox */
input[type="range"]::-moz-range-track {
    height: 16px;
    background: var(--colorborder);
    border-radius: var(--bradius);
}
/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 16px;
    width: 16px;
    background-color: var(--colorlight);
    border-radius: var(--bradius);
    border: 2px solid var(--color1);
    box-shadow: -408px 0 0 400px var(--color1);
}
/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    background-color: var(--colorlight);
    border-radius: var(--bradius);
    border: 2px solid var(--color1);
    box-shadow: -408px 0 0 400px var(--color1);
}

/* Button */
.bttn,
.button-primary,
input[type='submit'],
button {
    cursor: pointer;
    padding: .6em .8em;
    background: var(--color1);
    border: 0;
    outline: 0;
    color: var(--colorwhite);
    transition: .3s;
    display: inline-flex;
    border-radius: var(--inbradius);
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: normal;
}
.bttn:hover,
.button-primary:hover,
.form-submit input:hover,
button:hover {
    color: var(--colorwhite);
    background: var(--color2);
}
.bttn:focus {
    color: var(--colorwhite);
}

.underlink {
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--color1);
    font-weight: 500;
    text-transform: uppercase;
    font-size: .8em;
    letter-spacing: .1em;
}

/* BLOCKQUOTE & CODE */
blockquote {
    font-size: 110%;
    width: 95%;
    margin: 20px auto;
    padding: 20px 40px;
    border: 1px solid var(--colorborder);
    position: relative;
    background: var(--colorbg);
    border-radius: var(--bradius);
}

blockquote::before {
    font-family: arial, sans-serif;
    content: "\201C";
    color: var(--color1);
    font-size: 6em;
    position: absolute;
    left: 5px;
    top: 15px;
}

blockquote::after {
    content: '';
}

code {
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    padding: 15px;
    display: block;
    border-radius: var(--inbradius);
}

/* WP RESET IMAGE & CAPTION */
.wp-caption,
img.alignnone,
p img {
    max-width: 100%!important;
    width: auto!important;
}

img {
    max-width: 100%;
    height: auto;
}

a img {
    border: none;
}

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img.aligncenter {
    display: block;
    margin: 10px auto;
}

img.alignright {
    display: inline;
    float: right;
    margin: 0 0 5px 5px;
}

img.alignleft {
    display: inline;
    float: left;
    margin: 0 5px 5px 0;
}

.wp-caption img {
    margin: 0;
    padding: 0;
    border: none;
}

.wp-caption p.wp-caption-text {
    font-size: .8em;
    margin: 0;
    text-align: center;
}

.wp-caption.aligncenter {
    display: block;
    margin: 10px auto;
}

.wp-caption.alignleft {
    float: left;
    margin: 5px 10px 5px 0;
}

.wp-caption.alignright {
    float: right;
    margin: 5px 0 5px 10px;
}

/* BLINKER ANIMATION */

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.blink {
    animation: blinker 1s linear infinite;
}

/* MOVEINRIGT ANIMATION */

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(-50px)
    }

    80% {
        transform: translateX(10px)
    }

    100% {
        opacity: 1;
        transform: translateX(0px)
    }
}

/* SCROLLBAR  */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--colorborder);
}

::-webkit-scrollbar-thumb {
    background: var(--color1);
    opacity: .1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color2);
}

body ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* FONTS SIZE & COLOR */

.small {
    font-size: .8em!important;
}

.medium {
    font-size: .9em!important;
}

.big {
    font-size: 1.5em!important;
}

.jumbo {
    font-size: 2.7em!important;
}

.hidden {
    font-size: 0;
}

.color1 {
    color: var(--color1);
}
.color2 {
    color: var(--color2);
}
.swap {
    background: var(--color2);
}
.swap.hover:hover {
    background: var(--color1);
}

/* BOX */

.info,
.notice,
.sukses,
.warning {
    width: 100%;
    padding: 15px;
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    overflow: hidden;
    border-radius: var(--bradius);
}

.notice {
    background: #FFFFEC;
    border-color: #FFB973;
    color: #FF8000;
}

.warning {
    background: #ffe2e2;
    border-color: #f7b1b1;
    color: red;
}

.sukses {
    color: #38baa7;
    background-color: #ebf8f6;
    border-color: #b7e1db;
}

/* EXTRA */

.latin {
    font-size: 130%;
    font-weight: 500;
}

.rounded {
    border-radius: var(--bradius);
}

.circle {
    border-radius: 50%;
}

.nm {
    margin: 0 !important;
}

.nm-top {
    margin-top: 0 !important;
}

.nm-bottom {
    margin-bottom: 0 !important;
}

.nolist {
    list-style: none;
}

.center {
    text-align: center;
}

.coret {
    text-decoration: line-through;
}

.elipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}
.elipsis.clamp2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.elipsis.clamp3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.relative {
    position: relative;
}

/* FLEX */

.flexcon {
    display: flex;
}
.flexcon.column {
    flex-direction: column;
}
.flexcon.column.nm > * {
    margin: 0;
}

/* GRID */

.gridcon {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.two-col {
    grid-template-columns: repeat(2, 1fr)!important;
}
.three-col {
    grid-template-columns: repeat(3, 1fr)!important;
}
.four-col {
    grid-template-columns: repeat(4, 1fr)!important;
}

/* GAP */
.gap-5 {
    gap: 5px!important;
}
.gap-10 {
    gap: 10px!important;
}
.gap-15 {
    gap: 15px!important;
}
.gap-20 {
    gap: 20px!important;
}
.gap-30 {
    gap: 30px!important;
}
.gap-40 {
    gap: 40px!important;
}
.gap-50 {
    gap: 50px!important;
}

/* ALIGN */
.align-center {
    align-items: center!important;
}
.align-start {
    align-items: flex-start!important;
}
.align-end {
    align-items: flex-end!important;
}
.align-baseline {
    align-items: baseline!important;
}

/* JUSTIFY */
.justify-center {
    justify-content: center;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}

/* OBJECT FIT COVER */
.ofc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* ---------------- END RESET ---------------- */

/* OWL SLIDER */
/* 
.megaslider .owl-controls .owl-buttons div {
    background: var(--colorbg);
    border-radius: var(--inbradius);
}

.megaslider .owl-controls .owl-buttons .owl-prev {
    left: 80px;
}

.megaslider .owl-controls .owl-buttons .owl-next {
    right: 80px;
}

.megaslider.owl-carousel .owl-buttons .owl-prev,.megaslider.owl-carousel .owl-buttons .owl-next {
    transition: .3s;
    opacity: .05;
}

.megaslider.owl-carousel:hover .owl-buttons .owl-prev {
    left: 50px;
    opacity: .5;
}

.megaslider.owl-carousel:hover .owl-buttons .owl-next {
    right: 50px;
    opacity: .5;
} */

/* OWL SLIDER 2 */
.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.owl-dot {
    display: block;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    outline:  2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    background-color: var(--colorbody)!important;
    opacity: .4;
    align-self: center;
}
.owl-dot.active {
    opacity: 1;
    width: 13px;
    height: 13px;
    background-color: var(--color1)!important;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    transform: translateY(-50%);
    opacity: 0;
    transition: ease-in-out .5s;
}
.owl-carousel:hover .owl-nav{
    opacity: 1;
    left: 20px;
    right: 20px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--colorlight)!important;
    /* background-color: #00000048!important; */
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span{
    color: var(--colorlight)!important;
    font-size: 30px;
    padding-bottom: 3px;
}
.owl-nav .owl-prev {
    margin-left: 10px;
}
.owl-nav .owl-next {
    margin-right: 10px;
}

.post-slider .owl-item {
    padding: 10px;
}
.post-slider {
    margin: -10px -10px 0 -10px;
    width: calc(100% + 20px);
}
.post-slider .owl-nav {
    top: -53px;
    right: 0;
    left: unset;
    transform: none;
    opacity: unset;
    gap: 5px;
}
.post-slider:hover .owl-nav{
    left: unset;
    right: 0;
}
.post-slider .owl-nav .owl-prev,
.post-slider .owl-nav .owl-next {
    background-color: var(--colorbg)!important;
    width: 30px;
    height: 30px;
}
.post-slider .owl-nav .owl-prev span,
.post-slider .owl-nav .owl-next span {
    color: var(--colorbody)!important;
    font-size: 20px;
}

/* POPUP - FANCYBOX*/

.popup {
    min-width: 300px;
    max-width: 780px;
    display: none;
    border-radius: var(--bradius);
    padding: 15px;
    background: var(--colorlight);
}

.popup a {
    outline: none;
}

.popup ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--colorbg);
}

.popup iframe, .popup img {
    border-radius: var(--inbradius);
}

.popup blockquote {
    font-style: unset;
    padding: 0;
    border: none;
    background: none;
    margin: 0 auto!important;
}

.popup blockquote::before {
    content: '';
}

.fancybox-button:hover svg {
    color: var(--colorwhite);
}
.fancybox-close-small {
    background: var(--colorlight);
    transition: .3s;
}

/* Tabset Custom */
.tab-panel {
    border-radius: var(--bradius);
    background: var(--colorlight);
    border-color: var(--colorborder);
}
.tabset > label {
    border-top-right-radius: var(--inbradius);
    border-top-left-radius: var(--inbradius);
    padding-top: 5px;
}
.tabset label.edit-post a{
    color: #ccc;
}
.tabset label.edit-post:hover a{
    color: var(--color1);
}
.tabset label:first-of-type {
    margin-left: 20px;
}
.tabset > input:checked + label {
    background: var(--colorlight);
    border-color: var(--colorborder);
    border-bottom: 1px solid var(--colorlight);
}
.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
    color: var(--color1);
}
.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
    background: var(--color2);
}

/* BG Transparent */
.bgtrans:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    filter: grayscale(1);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* HSCROLL */
.hscroll {
    overflow-x: auto;
    white-space: nowrap; 
}
/* .hscroll::-webkit-scrollbar {
    display: none;
} */

/* BREADCRUMB */
.crumbs {
    font-size: .9em;
}

/* WRAP POST */
.wrap-post ul li,
.wrap-post ol li {
    margin-left: 20px;
}
.wrap-post p:first-child {
    margin-top: 0;
}
.wrap-post p:last-child {
    margin-bottom: 0;
}
.wrap-post img {
    border-radius: var(--bradius);
}

/* SEO */
.xeo {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
