@charset "utf-8";
/* CSS Document */

/* Style - Error - Red */
.red {
    color: #E85E6C;
}

/* Style - Warning - Orange */
.orange {
    color: #DB8060;
}

/* Style - Info - Blue */
.blue {
    color: #96AFDB;
}

/* Style - Success - Green */
.green {
    color: #47C9A2;
}

/* Style - Divider - Grey */
.grey {
    color: #a9a9a9;
    font-weight: normal;
    padding: 0 8px;
}

/* Style - Notice - Pink */
.pink {
    color: #dc475b;
}

/* Style - Price Badge - Mobile Only */
.price__mobile {
    background: #fff;
    border-radius: 50%;

    position: absolute;
    right: 10px;
    top: 10px;

    padding: 20px 10px;
}

/* Hight Adjuster for Mobile (used on top section) */
.res-height {
	height: 60px;
}
.res-maxheight {
    min-height: 700px;
}

/* List style for plain lists */
.list-style ul {
    list-style: none;
    padding-left: 0;
}
.list-style li {
    padding: 10px 0;
}
.list-style h4 {
    font-family: 'Playfair Display', sans-serif !important;
	font-size: 20px !important;
}

/* Misc */
.b-right {
    border-right: 1px solid #dee2e6;
}

/* Style - Vanish Box */
.notification-pos {
    position: absolute;
    top: -50px;

    animation: fadeOut 0.5s forwards;
    animation-delay: 3s;
}
@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}
