/*-----------------------------------------------*/
/*          ELEMENTOS GENERALES DE HTML          */
/*-----------------------------------------------*/

:root {
    --primary-color: #C39B62;
    --primary-alt-color: #D2B489;

    --soft-primary-color: #f3EBE0;
    --soft-gray-color: #E2E2E3;

    --black-color: #1D1818;
    --white-color: #FFFFFF;
    --green-color: #62B03D;
    --red-color: #F84B4B;
    --orange-color: #e8882f;
    --yellow-color: #f8bd4b;
    --gray-color: #A5A5A5;

    --green-shiny-color: #9CF863;
    --gray-opaque-color: #3F4853;
    --primary-opaque-color: #70593d;

    --placeholder-gray-color: #B7B7B7;
    --placeholder-gray-alt-color: #D0D0D0;
    --background-gray-color: #EEEEEE;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

input, input:focus, input:active,
button, button:hover, button:active,
textarea, textarea:hover, textarea:active, textarea:focus, 
select {
    outline: none;
    box-shadow: none;
}
button, button:hover, button:active {
    border: none;
}

/*-----------------------------------------------*/
/*                BACKGROUND COLOR               */
/*-----------------------------------------------*/

.bgcolor-primary {
    background-color: var(--primary-color) !important;
}
.bgcolor-black {
    background-color: var(--black-color) !important;
}
.bgcolor-white {
    background-color: var(--white-color) !important;
}
.bgcolor-green {
    background-color: var(--green-color) !important;
}
.bgcolor-red {
    background-color: var(--red-color) !important;
}
.bgcolor-orange {
    background-color: var(--orange-color) !important;
}
.bgcolor-yellow {
    background-color: var(--yellow-color) !important;
}
.bgcolor-gray {
    background-color: var(--gray-color) !important;
}
.bgcolor-soft-gray {
    background-color: var(--soft-gray-color) !important;
}

/*-----------------------------------------------*/
/*                   TEXT COLOR                  */
/*-----------------------------------------------*/

.txtcolor-primary {
    color: var(--primary-color) !important;
}
.txtcolor-black {
    color: var(--black-color) !important;
}
.txtcolor-white {
    color: var(--white-color) !important;
}
.txtcolor-gray {
    color: var(--gray-color) !important;
}
.txtcolor-placeholder {
    color: var(--placeholder-gray-color) !important;
}
.txtcolor-placeholdera-alt {
    color: var(--placeholder-gray-alt-color) !important;
}

/*-----------------------------------------------*/
/*                   TEXT ALIGN                  */
/*-----------------------------------------------*/

.text-justify {text-align: justify !important;}

/*-----------------------------------------------*/
/*                     FONTS                     */
/*-----------------------------------------------*/

/* FONT: "Raleway" */
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Raleway";
    src: url("../fonts/raleway/Raleway-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
  
/* FONT: "Roboto" */
@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/*-----------------------------------------------*/
/*                  FONT FAMILY                  */
/*-----------------------------------------------*/

.ff-raleway {font-family: 'Raleway', sans-serif;}
.ff-roboto {font-family: 'Roboto', sans-serif;}

/*-----------------------------------------------*/
/*                   FONT SIZE                   */
/*-----------------------------------------------*/

.fs-10 {font-size: 10px !important;}
.fs-12 {font-size: 12px !important;}
.fs-14 {font-size: 14px !important;}
.fs-16 {font-size: 16px !important;}
.fs-18 {font-size: 18px !important;}
.fs-20 {font-size: 20px !important;}
.fs-22 {font-size: 22px !important;}
.fs-24 {font-size: 24px !important;}
.fs-26 {font-size: 26px !important;}
.fs-28 {font-size: 28px !important;}

/*-----------------------------------------------*/
/*                  FONT WEIGHT                  */
/*-----------------------------------------------*/

.fw-400 {font-weight: 400 !important;}
.fw-500 {font-weight: 500 !important;}
.fw-600 {font-weight: 600 !important;}
.fw-700 {font-weight: 700 !important;}

/*-----------------------------------------------*/
/*                   BOX SHADOW                  */
/*-----------------------------------------------*/

.box-shadow-25 {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.box-shadow-50 {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
}

/*-----------------------------------------------*/
/*                     BORDERS                   */
/*-----------------------------------------------*/

.border-1-primary {border: 1px solid var(--primary-color);}
.border-2-primary {border: 2px solid var(--primary-color);}
.border-1-black {border: 1px solid var(--black-color);}
.border-2-black {border: 2px solid var(--black-color);}

/*-----------------------------------------------*/
/*                  BUTTON COLORS                */
/*-----------------------------------------------*/

.button-primary, .button-primary:hover, .button-primary:active {
    background-color: var(--primary-color);
}
.button-red, .button-red:hover, .button-red:active {
    background-color: var(--red-color);
}
.button-gray, .button-gray:hover, .button-gray:active {
    background-color: var(--gray-color);
}
.button-black, .button-black:hover, .button-black:active {
    background-color: var(--black-color);
}

/*-----------------------------------------------*/
/*                  SWEET ALERT 2                */
/*-----------------------------------------------*/

/* SWAL SUCCESS ICON */
.swal2-icon.swal2-success .swal2-success-ring {
    border: .25em solid rgba(195, 155, 98, 0.3) !important;
}
.swal2-icon.swal2-success {
    border-color: var(--primary-color) !important;
}
.swal2-icon.swal2-success [class^="swal2-success-line"] {
    background-color: var(--primary-color) !important;
}

/* SWAL CONTENT (TEXT) */
.swal2-content {
    font-family: 'Raleway', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: var(--gray-color) !important;
    margin-bottom: 0.3em !important;
}

/* SWAL BUTTONS */
.swal2-styled.swal2-confirm, .swal2-styled.swal2-cancel {   
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25) !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--white-color) !important;
    width: 80%;
}
/* .swal2-styled.swal2-confirm {
    background-color: var(--primary-color) !important;
}
.swal2-styled.swal2-cancel {
    background-color: var(--red-color) !important;
} */

/*-----------------------------------------------*/
/*                   BADGE LABEL                 */
/*-----------------------------------------------*/

.badge-label, .badge-label-small {
    font-family: 'Raleway', sans-serif;
    color: var(--white-color);
    font-weight: 700;
    padding: 0.25em 0.5em;
    position: absolute;
    z-index: 10;
}
.badge-label {font-size: 16px;}
.badge-label-small {font-size: 14px;}
.badge-label::after, .badge-label-small::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    border-right: 15px solid transparent;
}
/* PRIMARY COLOR */
.badge-label-primary, .badge-label-small-primary {background-color: var(--primary-color);}
.badge-label-primary::after {
    border-top: 16px solid var(--primary-color);
    border-bottom: 16px solid var(--primary-color);
}
.badge-label-small-primary::after {
    border-top: 14px solid var(--primary-color);
    border-bottom: 14px solid var(--primary-color);
}
/* ORANGE COLOR */
.badge-label-orange, .badge-label-small-orange {background-color: var(--orange-color);}
.badge-label-orange::after {
    border-top: 16px solid var(--orange-color);
    border-bottom: 16px solid var(--orange-color);
}
.badge-label-small-orange::after {
    border-top: 14px solid var(--orange-color);
    border-bottom: 14px solid var(--orange-color);
}
/* RED COLOR */
.badge-label-red, .badge-label-small-red {background-color: var(--red-color);}
.badge-label-red::after {
    border-top: 16px solid var(--red-color);
    border-bottom: 16px solid var(--red-color);
}
.badge-label-small-red::after {
    border-top: 14px solid var(--red-color);
    border-bottom: 14px solid var(--red-color);
}

/*-----------------------------------------------*/
/*              HEART TOGGLE BUTTON              */
/*-----------------------------------------------*/

.heart-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    width: 32px;
    min-height: 32px;
    height: 32px;
    border-radius: 5px;
}
.heart-toggle, .heart-toggle:hover, .heart-toggle:active {
    border: 1px solid var(--primary-color);
    background-color: var(--white-color);
    color: var(--red-color);
}
.heart-toggle-transparent, .heart-toggle-transparent:hover, .heart-toggle-transparent:active {
    border: none;
    background: rgba(255, 255, 255, 0.4);
}

/*-----------------------------------------------*/
/*                  ADD BUTTON                   */
/*-----------------------------------------------*/

.add-button, .add-button:hover, .add-button:active, .add-button:focus {
    background-color: var(--black-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    position: fixed;
    bottom: 80px;
    right: 10px;
}

/*-----------------------------------------------*/
/*                  SEE MAP BUTTON               */
/*-----------------------------------------------*/

.see-map-button, .see-map-button:hover, .see-map-button:active, .see-map-button:focus {
    background-color: var(--black-color);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 80px;
    right: 10px;
}
.see-map-button img {
    width: 26px;
    max-width: 26px;
    min-width: 26px;
    height: 26px;
    max-height: 26px;
    min-height: 26px;
}

/*-----------------------------------------------*/
/*                  SEE DETAILS                  */
/*-----------------------------------------------*/

.button-see-details, .button-see-details:hover, .button-see-details:active, .button-see-details:focus {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    width: 20px;
    min-height: 20px;
    height: 20px;
}
.button-see-details img {
    max-width: 10px;
    min-width: 10px;
    width: 10px;
    max-height: 10px;
    min-height: 10px;
    height: 10px;
}

/*-----------------------------------------------*/
/*                     SPLASH                    */
/*-----------------------------------------------*/

.splash {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

/*-----------------------------------------------*/
/*  START, LOGIN, REGISTER AND RECOVER PASSWORD  */
/*-----------------------------------------------*/

.view-start {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
}

.view-start-header {
    background-image: url(../images/background-login.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 235px;
}

.view-start-content {
    background-color: #62B03D;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    margin-top: -30px;
    height: 100%;
    display: flex;
    justify-content: center;
}

.view-start-content > div {
    max-width: 425px;
    min-width: 300px;
}
.view-start-content > div p {
    text-align: justify;
}

.login-background {
    background-image: url(../images/background-login.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
    min-height: 100vh;
    backdrop-filter: blur(2.5px);
}

.login-background-overlay {
    background: linear-gradient(180deg, #000000 0%, rgba(217, 217, 217, 0.25) 100%);
    backdrop-filter: blur(2.5px);
    min-height: 100vh;
}

.login, .register {
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.recover-password {
    display: flex;
    flex-direction: column;
}

.login, .register, .recover-password {
    font-family: 'Raleway', sans-serif;
    max-width: 425px;
    min-width: 300px;
}

.login .login-inputs label, .register .login-inputs label, .recover-password .login-inputs label {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}

.login .login-inputs input, .register .login-inputs input, .recover-password .login-inputs input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    padding: 0 10px 0 20px;
    outline: none;
    font-size: 14px
}

.recover-password .login-inputs input {
    border-top: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.login .login-inputs input::placeholder, .register .login-inputs input::placeholder,
.recover-password .login-inputs input::placeholder {
    color: var(--placeholder-gray-color);
    font-style: italic;
    font-weight: 400;
}

.login .login-inputs .input-next-icon, .register .login-inputs .input-next-icon,
.recover-password .login-inputs .input-next-icon {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.login-inputs > div {
    display: flex;
}

.login .login-inputs span, .login .login-inputs button,
.register .login-inputs span, .register .login-inputs button,
.recover-password .login-inputs span, .recover-password .login-inputs button {
    background-color: var(--white-color);
    color: var(--placeholder-gray-color);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    border: none;
    outline: none;
    height: 45px;
    width: 45px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 0;
}

.recover-password .login-inputs span, .recover-password .login-inputs button {
    border-top: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.login .login-inputs i, .register .login-inputs i,
.recover-password .login-inputs i {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login a, .login a:hover, .login a:active, .login a:focus,
.register a, .register a:hover, .register a:active, .register a:focus,
.recover-password a, .recover-password a:hover, .recover-password a:active, .recover-password a:focus,
.view-start-content a, .view-start-content a:hover, .view-start-content a:active, .view-start-content a:focus {
    color: var(--white-color);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.login-buttons-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-buttons-actions button, .login-buttons-actions button:hover {
    height: 48px;
    width: 100%;
    text-align: center;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
}

.login-buttons-actions a, .login-buttons-actions a:hover, 
.login-buttons-actions a:active, .login-buttons-actions a:focus  {
    color: var(--white-color);
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recover-password-content {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

/*-----------------------------------------------*/
/*                     HEADER                    */
/*-----------------------------------------------*/

#header {
    font-family: 'Raleway', sans-serif;
    background-color: var(--black-color);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    position: fixed;
    top: 0;
    z-index: 999;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .header-logo img {
    height: 60px;
    width: auto;
}
#header .header-account {
    display: flex;
    color: var(--primary-color);
    min-width: 40px;
    min-height: 40px;
}
#header .header-account img {
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    height: 40px;
    width: 40px;
}
#header .header-account span {
    left: 35px;
    bottom: 15px;
}
#header .header-return, #header .header-title {
    color: var(--primary-color);
}
#header .header-return,
#header .header-edit {
    max-height: 40px;
    min-height: 40px;
    height: 40px;
    max-width: 40px;
    min-width: 40px;
    width: 40px;
}
#header .header-return a, #header .header-return a:active, #header .header-return a:hover,
#header .header-edit a, #header .header-edit a:active, #header .header-edit a:hover {
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
#header.header-logo-title .header-logo {
    min-width: 80px;
}
#header.header-logo-title .header-logo img {
    height: 75px;
}
#header.header-logo-title .header-title {
    width: 100%;
}
#header.header-logo-title .header-title h2 {
    padding-left: 5px;
    padding-right: 25px;
    text-align: center;
}

/*-----------------------------------------------*/
/*                      MAIN                     */
/*-----------------------------------------------*/

main {
    margin-top: 70px;
    margin-bottom: 70px;
}

/*-----------------------------------------------*/
/*                     FOOTER                    */
/*-----------------------------------------------*/

#navbar {
    background-color: var(--black-color);
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/*-----------------------------------------------*/
/*                   SEARCH BAR                  */
/*-----------------------------------------------*/

.search-bar {
    display: flex;
    width: 100%;
    color: var(--gray-color);
}
.search-bar form, .search-bar input {
    width: 100%;
    height: 40px;
}
.search-bar button, .search-bar input {
    background-color: #f3f4f8;
}
.search-bar button {
    height: 40px;
    width: 40px;
    min-width: 40px;
}
.search-bar form input {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    border: none;
    border-top: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
    color: var(--gray-opaque-color);
}
.search-bar form input::placeholder {
    color: var(--gray-color);
}
.search-bar form button {
    color: var(--gray-color);
    font-size: 18px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top: 1px solid var(--gray-color);
    border-left: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
}
.search-bar .search-bar-filter {
    width: 50px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top: 1px solid var(--gray-color);
    border-right: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
}
.search-bar-alt form input {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-right: 1px solid var(--gray-color);
}

/*-----------------------------------------------*/
/*                      HOME                     */
/*-----------------------------------------------*/

.owl-home-propierties .owl-stage-outer {
    padding-bottom: 10px;
}

.card-category-property, button.card-category-property:hover, button.card-category-property:active {
    font-family: 'Roboto', sans-serif;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 105px;
    height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-category-property img {
    max-width: 58px;
    max-height: 58px;
    min-width: 58px;
    min-height: 58px;
    width: 58px;
    height: 58px;
}

/* SMALL CARDS */
.card-home-small-preview {
    position: relative;
    overflow: hidden;  
    display: flex;
    width: 100%;
}
.card-home-small-preview .badge-label, .card-home-small-preview .badge-label-small {
    top: 17px;
}
.card-home-small-preview img {
    border-radius: 15px;
    width: 100%;
    height: 200px;
    filter: blur(0.5px) brightness(80%);
}
.card-home-small-description {
    color: var(--white-color);
    position: absolute; 
    left: 0; 
    bottom: 0;
    align-self: flex-end; padding: 0.5rem;
}
.card-home-small-buttons {
    display: flex;
    justify-content: space-evenly;
}
.card-home-small-buttons a, .card-home-small-buttons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}
.card-home-small-buttons a, .card-home-small-buttons a:hover, .card-home-small-buttons a:active {
    color: var(--white-color);
    font-size: 16px;
}
.card-home-small-buttons button, .card-home-small-buttons button:hover, .card-home-small-buttons button:active {
    background-color: var(--white-color);
    color: var(--red-color);
}

/* BIG CARDS */
.card-home-big {
    border-radius: 15px;
}
.card-home-big-preview {
    position: relative;
    overflow: hidden;  
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.card-home-big-preview .badge-label, .card-home-big-preview .badge-label-small {
    position: relative;
}
.card-home-big-preview img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 180px;
    width: 100%;
    filter: brightness(95%);
}
.card-home-big-extras {
    position: absolute;
    width: 100%;
    top: 20px;
    display: flex;
    justify-content: space-between;
}
.card-home-big-description {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.card-home-big-description h2 {
    display: flex;
    align-items: center;
}
.card-home-big-description a,.card-home-big-description a:hover, .card-home-big-description a:active {
    border-radius: 5px;
    max-width: 70px;
    min-width: 70px;
    width: 70px;
    max-height: 25px;
    min-height: 25px;
    height: 25px;
    text-align: center;
}

/*-----------------------------------------------*/
/*                PROPERTY DETAILS               */
/*-----------------------------------------------*/

/* CAROUSEL PROPERTY DETAILS MAIN PREVIEW */
.carousel-propierty-main {
    margin-top: -15px;
}
.carousel-propierty-main .owl-carousel .owl-item img {
    max-height: 300px;
    min-height: 300px;
    height: 300px !important;
}
.carousel-propierty-main .owl-theme .owl-nav.disabled + .owl-dots {
    position: absolute !important;
    margin-top: -50px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
}
.carousel-propierty-main .carousel-propierty-main .owl-theme .owl-dots .owl-dot span {
    background: var(--white-color) !important;
    width: 12px !important;
    height: 12px !important;
    margin: 5px 4px !important;
}
.carousel-propierty-main .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color) !important;
    border: 2px solid var(--white-color) !important;
    width: 15px !important;
    height: 15px !important;
}

/* PROPERTY DETAILS CONTENT */
.property-details-content {
    background-color: var(--white-color);
    margin-top: -30px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    position: relative;
    z-index: 9;
}

.property-details-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.property-details-features {
    font-family: 'Roboto', sans-serif;
    color: var(--gray-opaque-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-details-features span {
    background-color: var(--gray-color);
    width: 1px;
    height: 50px;
}

/* CAROUSEL PROPERTY DETAILS GALLERY */
.owl-property-gallery .item img {
    border-radius: 5px;
    width: 90px;
    height: 90px;
}

/* PRICE AND BUTTON DATE */
.property-details-price a, .property-details-price a:hover, .property-details-price a:active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

/* INTERESTED CUSTOMERS */
.card-customer-small-info {
    background-color: var(--soft-primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-customer-small-info img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.card-customer-small-info a, .card-customer-small-info a:active, .card-customer-small-info a:hover {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    min-height: 32px;
    height: 32px;
    min-width: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
}
.card-customer-small-info a i, .card-customer-small-info a:active i, .card-customer-small-info a:hover i {
    font-size: 14px;
}

/*-----------------------------------------------*/
/*                     PROFILE                   */
/*-----------------------------------------------*/

.black-space {
    background-color: var(--black-color);
    margin-top: -15px;
    padding-top: 25px;
    height: 150px;
    width: 100%;
}

.profile-content {
    font-family: 'Raleway', sans-serif;
    background-color: var(--white-color);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    margin-top: -40px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile-info img {
    border: 2px solid var(--white-color);
    border-radius: 50%;
    margin-top: -60px;
    min-width: 120px;
    width: 120px;
    min-height: 120px;
    height: 120px;
}

.profile-options-button, .profile-options-button:active, .profile-options-button:hover {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    height: 50px;
    color: var(--soft-gray-color);
}

/*-----------------------------------------------*/
/*                  PROPERTIES                   */
/*-----------------------------------------------*/

.card-home-features {
    display: flex;
    align-items: center;
    min-height: 25px;
    height: 25px;
}

.list-properties .card-home-description a, .list-properties .card-home-description a:hover, .list-properties .card-home-description a:active {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90px;
    min-width: 90px;
    width: 90px;
    max-height: 32px;
    min-height: 32px;
    height: 32px;
}

/*-----------------------------------------------*/
/*                  ADD PROPERTY                 */
/*-----------------------------------------------*/

/* FORM STEPS */
.headerSteps{
	margin-bottom: 1em;
	display: flex;
	justify-content: center;
}
.headerSteps ul{
    list-style: none;
	display: flex;
    padding: 0;
    margin-top: 0.5em;
}
.headerSteps ul li{
	margin-right: 25px;
	position: relative;
}
.headerSteps ul li:last-child{
	margin-right: 0;
}
.headerSteps ul li:before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 25px;
	width: 100%;
	height: 4px;
	background: var(--primary-opaque-color);
}
.headerSteps ul li:first-child:before{
	display: none;
}
.headerSteps ul li div{
	border-radius: 50%;
}
.headerSteps ul li p{
	width: 40px;
	height: 40px;
	background: var(--primary-opaque-color);
	color: var(--gray-color);
	text-align: center;
	border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}
.headerSteps ul li.active:before{
	background: var(--primary-color);
    transition: 0.5s ease;
}
.headerSteps ul li.active p{
	background: var(--primary-color);
    color: var(--white-color);
    transition: 0.5s ease;
}

/* FORM CONTENT */
.property-add-form {
    border-top-right-radius: 55px;
    border-top-left-radius: 55px;
    background-color: var(--white-color);
    margin-top: -55px;
}
.property-add-label, .property-add-input, .property-add-input::placeholder, 
.property-add-select, .property-add-textarea {
    font-family: 'Raleway', sans-serif;
    width: 100%;
}
.property-add-label {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 700;
}

.property-add-input, .property-add-input:hover, .property-add-input:focus, 
.property-add-select, .property-add-select:focus, .property-add-select:active,
.property-add-textarea, .property-add-textarea:focus, .property-add-textarea:hover {
    background-color: var(--white-color);
    border: none;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    color: var(--black-color);
    font-weight: 500;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.property-add-input, .property-add-input:hover, .property-add-input:focus, 
.property-add-select, .property-add-select:focus, .property-add-select:active {
    min-height: 38px;
    height: 38px;
}
.property-add-input::placeholder, .property-add-textarea::placeholder {
    color: var(--placeholder-gray-color);
    font-weight: 700;
}
.property-add-textarea {
    resize: none;
}
.property-add-textarea::placeholder {
    font-size: 14px;
}
.property-add-buttons, .contact-add-buttons {
    display: flex;
    flex-direction: column;
}
.property-add-buttons button, .property-add-buttons button:hover, .property-add-buttons button:active,
.contact-add-buttons button, .contact-add-buttons button:hover, .contact-add-buttons button:active {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 15px;
    color: var(--white-color);
    width: 100%;
    min-height: 45px;
    height: 45px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.property-add-buttons button a, .property-add-buttons button a:hover, .property-add-buttons button a:active,
.contact-add-buttons button a, .contact-add-buttons button a:hover, .contact-add-buttons button a:active {
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* RADIO INPUT (SWITCH) */
.property-add-inputs-radio-switch {
    font-family: 'Raleway', sans-serif;
    border-radius: 15px;
    position: relative;
    display: flex;
    width: 100%;
    height: 40px;
}
.property-add-radio-switch {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    overflow: hidden;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.property-add-radio-switch label {
    width: 100%;
    height: 100%;
}
.property-add-radio-switch label span {
    text-align: center;
    padding: 3px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.property-add-radio-switch label input {
    position: absolute;
    visibility: hidden;
    color: var(--white-color) !important;
}
.property-add-radio-switch label input + span, .property-add-radio-switch input:checked + span {
    font-size: 14px;
    font-weight: 700;
} 
.property-add-radio-switch label input + span {
    color: var(--primary-color);
}
.property-add-radio-switch input:checked + span {
    background-color: var(--primary-alt-color);
    color: var(--white-color);
}
.property-add-radio-left {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.property-add-radio-right {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* ADD PROPERTY GOOGLE MAPS */
.formStep2 #map {
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    min-height: 300px;
    height: 35vh;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* FEATURES INPUT STEPPER */
.property-add-stepper {
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
}
.property-add-stepper input[type="number"], .property-add-stepper button, .property-add-stepper button:hover, .property-add-stepper button:active {
    min-height: 32px;
    height: 32px;
}
.property-add-stepper button, .property-add-stepper button:hover, .property-add-stepper button:active {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
    border-radius: 5px;
    min-width: 32px;
    width: 32px;
}
.property-add-stepper input[type="number"] {
    background-color: var(--white-color);
    color: var(--gray-opaque-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    min-width: 40px;
    width: 40px;
    -moz-appearance: textfield;
    text-align: center;
}
.property-add-form input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}
.property-add-stepper input::-webkit-outer-spin-button,
.property-add-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ADD PROPERTY RADIO BUTTONS STANDARD  */
.property-add-radio {
    display: flex;
}
.property-add-radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 22px;
    height: 22px;
    padding: 6px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}
.property-add-radio input[type="radio"]:checked {
    border: 2px solid var(--primary-color);
    background-color: var(--primary-alt-color);
}

/* FILE INPUT DRAG AND DROP */
.file-drop-area {
    font-family: 'Raleway', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 25px 15px 40px 15px;
    border: 3px dashed var(--primary-color);
    border-radius: 15px;
    transition: 0.2s;
}
.fake-btn {
    flex-shrink: 0;
    padding: 8px 15px;
    font-size: 50px;
    text-transform: uppercase;
    margin: 0 auto;
    color: var(--placeholder-gray-color);
}
.file-msg {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--placeholder-gray-color);
    text-align: center;
    padding: 0 15%;
}
.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}
.file-input:focus {
    outline: none;
}
.is-active {
    background-color: rgba(255, 255, 255, 0.05);
}

/* FILE INPUT CONDITION DOCUMENT */
.property-add-input-document {
    font-family: 'Raleway', sans-serif;
    border-radius: 15px;
    position: relative;
    min-height: 38px;
    height: 38px;
    display: flex;
    align-items: center;
}
.property-add-input-document .fake-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 42px;
    border: 1px solid var(--primary-color);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.property-add-input-document .file-msg {
    border: 1px solid var(--primary-color);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    padding: 0 0 0 15px;
    height: 100%;
    width: 100%;
}

/*-----------------------------------------------*/
/*                    PROJECTS                   */
/*-----------------------------------------------*/

.card-project {
    background-color: var(--soft-primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    padding: 10px;
    position: relative;
}
.card-project-preview {
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
    display: flex;
    align-items: center;
}
.card-project-preview img {
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
    border-radius: 15px;
    width: 100%;
    height: 100%;
}
.card-project-content {
    width: 100%;
    height: 100%;
    display: grid;
    gap: 3px;
}

/*-----------------------------------------------*/
/*                  PROJECTS MAP                 */
/*-----------------------------------------------*/

/* MAP */
.projects-map {
    margin: -70px 0;
    max-width: 100vw;
    min-width: 100vw;
    max-height: 100vh;
    min-height: 100vh;
}

/* CAROUSEL */
.carousel-projects-map {
    position: fixed;
    bottom: 85px;
}
.carousel-projects-map .owl-stage {
    padding-bottom: 10px;
}
.carousel-projects-map .owl-projects-map .item {
    width: 90vw;
    margin-left: 5vw;
    margin-right: 5vw;
}
.carousel-projects-map .owl-projects-map .item img {
    width: 155px;
    min-width: 155px;
    height: 100%;
    min-height: 155px;
}

/* CARD PROJECT CAROUSEL ITEM */
.card-project-carousel-item {
    background-color: var(--white-color);
    display: flex;
    width: 100%;
    max-width: 500px;
}

/* PROJECT DETAILS BUTTON */
.project-details-button, .project-details-button:hover, .project-details-button:active, .project-details-button:focus {
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
}

/* LABEL BADGE AND HEART TOGGLE */
.carousel-projects-item-extras {
    position: absolute;
    width: 100%;
    top: 10px;
    display: flex;
    justify-content: space-between;
}
.carousel-projects-item-extras .heart-toggle {
    position: absolute;
    right: 0;
}

/*-----------------------------------------------*/
/*                  SALES / RENT                 */
/*-----------------------------------------------*/

.card-property-sold {
    background-color: var(--soft-primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    padding: 10px;
    position: relative;
}
.card-property-sold .badge-label, .card-property-sold .badge-label-small {
    left: 0px;
}
.card-property-sold-preview {
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
    display: flex;
    align-items: center;
}
.card-property-sold-preview img {
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
    border-radius: 15px;
    width: 100%;
    height: 100%;
}
.card-property-sold-content {
    width: 100%;
    height: 100%;
    display: grid;
    gap: 3px;
}

/*-----------------------------------------------*/
/*               CONTACTS (CLIENTS)              */
/*-----------------------------------------------*/

/* CAROUSEL CONTACTS ADDED RECENTLY */
.owl-clients-recently .owl-stage-outer {
    padding-bottom: 10px;
}
.owl-clients-profile img {
    border-radius: 50%;
    width: 55px;
    height: 55px;
}

/* DIV ELEMENTS (SCROLL HORIZONTAL) */
.card-customer-elements {
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: auto;
    width: 100%;
    padding-bottom: 10px;
}
.card-customer-elements {
    scrollbar-width: none;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.card-customer-elements::-webkit-scrollbar {
    display: none;
}
.card-customer-elements .card-customer {
    max-width: calc(100% - 2.8em);
    min-width: calc(100% - 2.8em);
    width: calc(100% - 2.8em);
}

/* CARD CUSTOMER (CLIENT - CONTACT) */
.card-customer {
    background-color: var(--soft-primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    padding: 12px 14px !important;
}
.card-customer-profile-pic {
    max-width: 55px;
    min-width: 55px;
    width: 55px;
    height: 100%;
}
.card-customer-profile-pic img {
    border-radius: 50%;
    width: 100%;
    max-height: 55px;
    min-height: 55px;
    height: 55px;
}
.card-customer-content {
    width: 100%;
    height: 100%;
    display: grid;
    gap: 6px;
}
.card-customer-contact-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.card-customer-contact-buttons a, .card-customer-contact-buttons a:hover, .card-customer-contact-buttons a:active {
    font-family: 'Raleway', sans-serif;
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

/* DELETE CONTACT BUTTON */
.button-delete-contact, .button-delete-contact:hover, .button-delete-contact:active {
    background-color: var(--red-color);
    border-radius: 15px;
    padding: 0 8px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/*-----------------------------------------------*/
/*                   ADD CONTACT                 */
/*-----------------------------------------------*/

.contact-add-content, .profile-edit-content {
    font-family: 'Raleway', sans-serif;
    background-color: var(--white-color);
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    margin-top: -40px;
    position: relative;
}

/* IMAGE */
.contact-add-image, .profile-edit-image {
    border-radius: 50%;
    max-width: 120px;
    min-width: 120px;
    width: 120px;
    max-height: 120px;
    min-height: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    top: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-add-image > img, .profile-edit-image > img {
    background-color: #252628;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    min-width: 120px;
    width: 120px !important;
    min-height: 120px;
    height: 120px !important;
    cursor: pointer;
}

/* INPUT FILE: PROFILE PIC */
.contact-add-content .input-profile-upload,
.profile-edit-content .input-profile-upload  {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.contact-add-content .input-profile-upload {
    background-color: var(--primary-alt-color);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    padding: 6px 12px;
    cursor: pointer;
    max-width: 40px;
    min-width: 40px;
    width: 40px;
    max-height: 40px;
    min-height: 40px;
    height: 40px;
}
.profile-edit-content .input-profile-upload {
    background-color: var(--soft-gray-color);
    border-radius: 10px;
    max-width: 28px;
    min-width: 28contact-add-imagepx;
    width: 28px;
    max-height: 28px;
    min-height: 28px;
    height: 28px;
}

/* FORM INPUTS */
.contact-add-form-inputs, .profile-edit-form-inputs {
    font-family: 'Raleway', sans-serif;
    margin-top: -30px;
}
.contact-add-form-inputs label, .contact-add-form-inputs input, .contact-add-form-inputs input::placeholder, 
.contact-add-form-inputs select, .contact-add-form-inputs textarea,
.profile-edit-form-inputs label, .profile-edit-form-inputs input, .profile-edit-form-inputs input::placeholder, 
.profile-edit-form-inputs select, .profile-edit-form-inputs textarea {
    font-family: 'Raleway', sans-serif;
    width: 100%;
}
.contact-add-form-inputs label {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 700;
}
.profile-edit-form-inputs label {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
}
.contact-add-form-inputs input, .contact-add-form-inputs input:hover, .contact-add-form-inputs input:focus, 
.contact-add-form-inputs textarea, .contact-add-form-inputs textarea:focus, .contact-add-form-inputs textarea:hover, 
.contact-add-form-inputs select {
    background-color: var(--white-color);
    border: none;
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    color: var(--black-color);
    font-weight: 500;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.profile-edit-form-inputs input, .profile-edit-form-inputs input:hover, .profile-edit-form-inputs input:focus, 
.profile-edit-form-inputs textarea, .profile-edit-form-inputs textarea:focus, .profile-edit-form-inputs textarea:hover {
    background-color: #f3f3f3;
    border: none;
    border-radius: 16px;
    color: var(--black-color);
    font-weight: 500;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.profile-edit-form-inputs input, .profile-edit-form-inputs input:hover, .profile-edit-form-inputs input:focus {
    min-height: 48px;
    height: 48px;
    
}
.profile-edit-form-inputs i {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}
.profile-edit-form-inputs input, .profile-edit-form-inputs textarea {
    padding-right: 2.3em !important;
}
.contact-add-form-inputs input, .contact-add-form-inputs input:hover, .contact-add-form-inputs input:focus, .contact-add-form-inputs select {
    min-height: 38px;
    height: 38px;
}
.contact-add-form-inputs input::placeholder, .contact-add-form-inputs textarea::placeholder {
    color: var(--placeholder-gray-color);
    font-weight: 700;
}
.contact-add-form-inputs textarea, .profile-edit-form-inputs textarea {
    resize: none;
}
.contact-add-form-inputs textarea::placeholder {
    font-size: 14px;
}
.profile-edit-buttons {
    display: flex;
    flex-direction: column;
}
.profile-edit-buttons button {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    color: var(--white-color);
    width: 100%;
    min-height: 45px;
    height: 45px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.profile-edit-buttons button a, .profile-edit-buttons button a:hover, .profile-edit-buttons button a:active {
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------*/
/*                CUSTOMER PROFILE               */
/*-----------------------------------------------*/

/* CONTACT BUTTONS */
.profile-custumer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.profile-custumer-contact a, .profile-custumer-contact a:hover, .profile-custumer-contact a:active {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 5px 10px;
    color: var(--white-color);
    font-size: clamp(12px, 3.2vw, 16px);
    font-weight: 400;
}

/* CAROUSEL ITEMS */
.owl-customer-properties .owl-stage-outer, .owl-customer-favorites .owl-stage-outer {
    padding-bottom: 10px;
}
.owl-customer-properties a, .owl-customer-favorites a {
    display: block;
    color: var(--white-color);
    border-radius: 8px;
    
}
.owl-customer-properties a img, .owl-customer-favorites a img {
    position: relative;
    filter: brightness(85%);
    border-radius: 8px;
    width: 100%;
    height: 100%;
    max-width: 138px;
    min-width: 138px;
    width: 138px;
    max-height: 106px;
    min-height: 106px;
    height: 106px;
}
.owl-customer-properties a > div, .owl-customer-favorites a > div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    padding: 6px;
}

/*-----------------------------------------------*/
/*                  NOTIFICATIONS                */
/*-----------------------------------------------*/
.list-notifications {
    padding-bottom: 80px;
}
.card-notification {
    background-color: #f1eeee;
    border-radius: 20px;
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.card-notification-icon img {
    max-width: 38px;
    min-width: 38px;
    width: 38px;
    height: auto;
}
.card-notification-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.card-notification-content small {
    font-size: 10px;
    font-weight: 400;
    color: #797777;
}
.card-notification-content p {
    line-height: 1.2;
}
.btn-clear-notifications, .btn-clear-notifications:hover, .btn-clear-notifications:active,
.btn-clear-notifications a, .btn-clear-notifications:hover a, .btn-clear-notifications:active a {
    font-family: 'Raleway', sans-serif;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 16px;
    width: 300px;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-clear-notifications, .btn-clear-notifications:hover, .btn-clear-notifications:active {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.notifications-empty {
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    padding: 80px 0;
    margin: 0 auto;
    text-align: center;
}   
.notifications-empty img {
    width: 125px;
    height: 125px;
}

/*-----------------------------------------------*/
/*                     SCHEDULE                  */
/*-----------------------------------------------*/

/* SEARCH BAR DROPDOWN FILTERS */
.dropdown-search-filters .dropdown-menu {
    background-color: #F1EEEE;
    border: 1px solid #C7BEBE !important;
    z-index: 2;
}
.dropdown-search-filters .dropdown-menu .dropdown-menu-content {
    display: flex;
    flex-direction: column;
    min-width: 260px !important;
    width: 260px !important;
}
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div,
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div select,
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div select option {
    background-color: var(--white-color);
}
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div,
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div select {
    border-radius: 50px;
}
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div {
    height: 38px;
}
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div select {
    text-align-last: center;
    text-align: center;
    height: 100%;
    box-shadow: none;
    outline: none;
    border: none;
}
.dropdown-search-filters .dropdown-menu .dropdown-menu-content > div select option {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* CARD DATE (APPOINTMENT) */
.card-date {
    font-family: 'Raleway', sans-serif;
    color: var(--black-color);
    background-color: var(--soft-primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
}
.card-date-content, .card-date-btn-details {
    width: 70%;
}
.card-date-content label {
    font-size: 16px;
    font-weight: 600;
    min-width: 65px;
    width: 65px;
}
.card-date-content h2, .card-date-preview {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
}
.card-date-preview, .card-date-btn-contact {
    min-width: 110px;
    width: 30%;
}
.card-date-preview img {
    width: 100%;
    max-height: 115px;
    height: 100%;
}
.card-date-preview, .card-date-preview img {
    border-radius: 5px;
}
.card-date-buttons, .card-date-btn-details, .card-date-btn-contact {display: flex;}
.card-date-btn-details {justify-content: center;}
.card-date-btn-contact {justify-content: space-between;}
.card-date-btn-details a, .card-date-btn-details a:hover, .card-date-btn-details a:active {
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 5px;
    min-width: 90px;
    width: 90px;
}
.card-date-btn-contact a, .card-date-btn-contact a:hover, .card-date-btn-contact a:active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    min-width: 32px;
    width: 32px;
}
.card-date-btn-details a, .card-date-btn-details a:hover, .card-date-btn-details a:active,
.card-date-btn-contact a, .card-date-btn-contact a:hover, .card-date-btn-contact a:active {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 32px;
    height: 32px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.card-date, .card-date-preview img {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

/*-----------------------------------------------*/
/*                 SCHEDULE DETAILS              */
/*-----------------------------------------------*/

.schedule-details {
    background-color: var(--background-gray-color);
    padding: 55px 0 70px;
    min-height: 100vh;
    width: 100%;
}
.schedule-details-preview {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    
}
.schedule-details-preview img {
    width: 100%;
    min-height: 300px;
    height: 35vh;
}
.schedule-details-preview-overlay {
    background: linear-gradient(180deg, rgba(238, 238, 238, 0) 53.96%, #EEEEEE 100%);
    color: var(--white-color);
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1.5rem 1.2rem;
}
.schedule-details-preview-overlay a, .schedule-details-preview-overlay button,
.schedule-details-attendees-contact a, 
.schedule-details-attendees-person img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    min-width: 32px;
    width: 32px;
    min-height: 32px;
    height: 32px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.schedule-details-preview-overlay a, .schedule-details-preview-overlay a:hover, .schedule-details-preview-overlay a:active,
.schedule-details-preview-overlay button, .schedule-details-preview-overlay button:hover, .schedule-details-preview-overlay button:active {
    background-color: var(--white-color);
    color: var(--primary-color);  
}
.schedule-details-content {
    font-family: 'Raleway', sans-serif;
}
.schedule-details-header {
    position: relative;
    margin-top: -35px;
}
.schedule-details-attendees-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.schedule-details-attendees-person, .schedule-details-attendees-contact {
    display: flex;
    align-items: center;
}
.schedule-details-attendees-person, .schedule-details-attendees-person:hover, .schedule-details-attendees-person:active {
    color: var(--black-color);
}
.schedule-details-attendees-contact a, .schedule-details-attendees-contact a:hover, .schedule-details-attendees-contact a:active {
    background-color: var(--primary-color);
    color: var(--white-color); 
}
.schedule-details-location #map {
    border-radius: 15px;
    min-height: 300px;
    height: 35vh;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

/*-----------------------------------------------*/
/*                  SCHEDULE ADD                 */
/*-----------------------------------------------*/

.schedule-add {
    font-family: 'Raleway', sans-serif;
    background-color: var(--background-gray-color);
    padding: 70px 0;
    min-height: 100vh;
    width: 100%;
}

/* SEARCH BAR VERSION SCHEDULE ADD APPOINTMENT */
.schedule-add .search-bar.search-bar-alt button, .schedule-add .search-bar.search-bar-alt input {
    height: 32px;
}
.schedule-add .search-bar.search-bar-alt button {
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.schedule-add .search-bar.search-bar-alt input{
    font-family: 'Raleway', sans-serif;
    background-color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    padding-right: 1em !important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.schedule-add .search-bar.search-bar-alt input::placeholder {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
}

/* BUTTON ADD NEW (CUSTOMER/PROPERTY) */
.schedule-add-btn-new, .schedule-add-btn-new:hover, .schedule-add-btn-new:active {
    background-color: var(--primary-color);
    color: var(--white-color);
    min-width: 24px;
    width: 24px;
    min-height: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

/* SELECT OPTIONS */
.schedule-add-select-option {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.schedule-add-select-option input {
    position: absolute;
    visibility: hidden;
    color: var(--white-color) !important;
}
.schedule-add-select-option span {
    display: flex;
    width: 100%;
}
.schedule-add-select-option input + span {
    color: var(--black-color);
    background-color: var(--white-color);
}
.schedule-add-select-option input:checked + span {
    background-color: var(--primary-alt-color);
    color: var(--white-color);
}
.schedule-add-select-option.option-user {
    width: 265px;
}
.schedule-add-select-option.option-user img {
    border-radius: 50%;
    min-width: 32px;
    width: 32px;
    min-height: 32px;
    height: 32px;
}
.schedule-add-select-option.option-reason {
    width: 130px;
}
.schedule-add-select-option.option-property {
    width: 280px;
}
.schedule-add-select-option.option-property img {
    border-radius: 5px;
    min-width: 80px;
    width: 80px;
    min-height: 70px;
    height: 70px;
}
.schedule-add-select-option.option-date {
    border-radius: 16px;
    width: 70px;
}
.schedule-add-select-option.option-hour {
    border-radius: 16px;
}
.schedule-add-select-option.option-user,
.schedule-add-select-option.option-reason,
.schedule-add-select-option.option-property {
    text-align: center;
}
.schedule-add-select-option.option-user img,
.schedule-add-select-option.option-property img {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* TEXTAREA */
.schedule-add-comments textarea {
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 14px;
    text-align: justify;
}
.schedule-add-comments textarea::placeholder {
    color: var(--gray-color);
}

/* TOGGLE BUTTONS */
.schedule-add-toggle-buttons {
    max-width: 310px;
    margin: 0 auto;
}
.schedule-add-toggle-buttons h2 {
    color: #7D7D7D;
}
.schedule-add-toggle-buttons .switch {
    position: relative;
    display: inline-block;
    width: 41px;
    height: 20px;
}
.schedule-add-toggle-buttons .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.schedule-add-toggle-buttons .slider {
    position: absolute;
    border-radius: 34px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #9d9d9d;
    -webkit-transition: .4s;
    transition: .4s;
}
.schedule-add-toggle-buttons .slider:before {
    position: absolute;
    border-radius: 50%;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.schedule-add-toggle-buttons input:checked + .slider {
    background: linear-gradient(64.11deg, #C39B62 0%, rgba(239, 175, 83, 0.4) 96.82%);
}
.schedule-add-toggle-buttons input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* CONFIRM AND CANCEL BUTTONS */
.schedule-add-buttons {
    max-width: 310px;
    margin: 0 auto;
}
.schedule-add-buttons button, .schedule-add-buttons button:hover, .schedule-add-buttons button:active {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    min-height: 48px;
    height: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.schedule-add-buttons button a, .schedule-add-buttons button a:hover, .schedule-add-buttons button a:active {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------*/
/*                     ERRORS                    */
/*-----------------------------------------------*/

.error-container, .error-info, .error-icon,
.error-btn-retry, .error-btn-retry:hover, .error-btn-retry:active,
.error-btn-retry a, .error-btn-retry a:hover, .error-btn-retry a:active {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.error-container {
    font-family: 'Raleway', sans-serif;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    padding: 80px 0;
    margin: 0 auto;
}
.error-info {
    flex-direction: column;
    padding: 50px 0 120px;
}
.error-icon {
    background-color: #d9d9d9;
    border-radius: 50%;
    width: 130px;
    height: 130px;
}
.error-icon img {
    max-height: 90px;
    height: auto;
    max-width: 90px;
    width: 90px;
}
.error-btn-retry, .error-btn-retry:hover, .error-btn-retry:active,
.error-btn-retry a, .error-btn-retry a:hover, .error-btn-retry a:active {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
}
.error-btn-retry, .error-btn-retry:hover, .error-btn-retry:active {
    border: 1px solid #BBBBBB;
    max-width: 140px;
    max-height: 44px;
    min-height: 44px;
    height: 44px;
}
.error-info-message {
    border: 1px solid #BFBFBF;
    border-radius: 12px;
    max-width: 200px;
    height: 52px;
    padding: 8px 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/*-----------------------------------------------*/
/*                    CALENDAR                   */
/*-----------------------------------------------*/

.elegant-calendar {
    max-width: 900px;
    text-align: center;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    -webkit-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
}
.wrap-header {
    position: relative;
    width: 45%;
    background: var(--white-color);
    border-radius: 20px;
}
@media (max-width: 767.98px) {
    .wrap-header {
        width: 100%;
        padding: 10px 0 20px;
    }
}
#headerCalendar {
    width: 100%;
    position: relative;
}
#headerCalendar .pre-button,
#headerCalendar .next-button {
    background-color: #f3f4f8;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 1em;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
}
#headerCalendar .pre-button i,
#headerCalendar .next-button i {
    color: var(--black-color);
}
.pre-button {
    left: 5px;
}
.next-button {
    right: 5px;
}
.head-day {
    font-size: 8em;
    line-height: 1;
    color: var(--black-color);
}
.head-month {
    font-size: 2em;
    line-height: 1;
    color: var(--black-color);
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
}
.calendar-wrap {
    width: 100%;
    background: var(--white-color);
    border-radius: 20px;
    border: 5px solid #f3f4f8;
}
#calendar {
    width: 100%;
    border-style: hidden;
}
#calendar tr {
    height: 3em;
}
#calendar .calendar-headers {
    border-radius: 50px;
}
#calendar .calendar-headers {
    background-color: #f3f4f8;
}
#calendar thead tr {
    color: var(--black-color);
    font-weight: 600;
}
#calendar tbody tr {
    color: var(--black-color);
}
#calendar tbody td {
    width: 14%;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    position: relative;
    z-index: 0;
    font-size: 20px;
    font-weight: 500;
}
#calendar tbody td:after {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 38px;
    height: 38px;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
    tbody td:after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
/* #calendar tbody td:hover,
#calendar .selected {
    color: var(--white-color);
    border: none;
}
#calendar tbody td:hover:after,
#calendar .selected:after {
    background: var(--black-color);
} */
#calendar tbody td:active {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
}
#calendar #today {
    color: var(--white-color);
}
#calendar #today:after {
    background: var(--primary-color);
}
#calendar #disabled {
    cursor: default;
    background: transparent;
}
#calendar #disabled:hover {
    background: transparent;
    color: #c9c9c9;
}
#calendar #disabled:hover:after {
    background: transparent;
}
#calendar #reset {
    display: block;
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    z-index: 999;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0 0.5em;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 11px;
}
#calendar #reset:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}
#calendar #reset:active {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

/* DAY WITH DATES (APPOINTMENTS) */
.scheduled-day::after {
    position: absolute;
    top: 46px !important;
    content: '';
    display: inline-block;
    width: 10px !important;
    height: 10px !important;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 7.5px;
    background-color: var(--primary-color);
}

#app[v-cloak]  {
    display: none;
}