.onh-component--tl, .onh-component--tr, .onh-component--bl, .onh-component--br {
    box-sizing: border-box;
    margin: 25px;
    position: fixed;
    white-space: nowrap;
    z-index: 99999;
    padding-left: 0;
    list-style: none;
}

.onh-component--tl *, .onh-component--tr *, .onh-component--bl *, .onh-component--br *, .onh-component--tl *:before, .onh-component--tr *:before, .onh-component--bl *:before, .onh-component--br *:before, .onh-component--tl *:after, .onh-component--tr *:after, .onh-component--bl *:after, .onh-component--br *:after {
    box-sizing: inherit;
}

/*------------------------------------*\
    #BASE | Modifiers
\*------------------------------------*/
/**
 * These styles depends on the placement of the button.
 * Styles can be:
 * 1. Top-left:  modified by the " --tl " suffix.
 * 2. Top-right: modified by the " --tr " suffix.
 * 3. Bottom-left:  modified by the " --bl " suffix.
 * 4. Bottom-right: modified by the " --br " suffix.
 */
.onh-component--tl {
    left: 0;
    top: 0;
}

.onh-component--tr {
    right: 0;
    top: 0;
}

.onh-component--bl {
    left: 0;
    bottom: 0;
}

.onh-component--br {
    right: 0;
    bottom: 0;
}

/*------------------------------------*\
    #BUTTONS | Base
\*------------------------------------*/
.onh-component__button--main, .onh-component__button--child {
    background-color: transparent;
    display: inline-block;
    position: relative;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    outline: none;
    padding: 0;
    position: relative;
    -webkit-user-drag: none;
    color: #f1f1f1;
}

/**
 * This is the unordered list for the list items that contain
 * the child buttons.
 *
 */
.onh-component__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.onh-component__list>.onh-list-item {
    display: block;
    position: absolute;
    bottom: 0;
    right: 1px;
    padding: 10px 0;
    margin: -10px 0;
}

/**
 * These are the basic styles for all the icons inside the main button
 */
.onh-component__icon, .onh-component__main-icon--active,
.onh-component__main-icon--resting, .onh-component__child-icon {
    position: absolute;
    text-align: center;
    line-height: 56px;
    width: 100%;
}

.onh-component__wrap {
    padding: 25px;
    margin: -25px;
}

[data-onh-toggle="hover"]:hover .onh-component__icon, [data-onh-toggle="hover"]:hover .onh-component__main-icon--active,
[data-onh-toggle="hover"]:hover .onh-component__main-icon--resting, [data-onh-toggle="hover"]:hover .onh-component__child-icon,
[data-onh-state="open"] .onh-component__icon,
[data-onh-state="open"] .onh-component__main-icon--active,
[data-onh-state="open"] .onh-component__main-icon--resting,
[data-onh-state="open"] .onh-component__child-icon {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}

/*------------------------------------*\
    #BUTTONS | Modifiers
\*------------------------------------*/
.onh-component__button--main {
    height: 56px;
    width: 56px;
    z-index: 20;
}


.onh-component__button--child {
    height: 56px;
	width: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
    background: #9E9E9E;
}

.onh-component__main-icon--active,
.onh-component__main-icon--resting {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}

.onh-rotate{
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
}

.onh-component__child-icon,
.onh-component__child-icon {
    line-height: 56px;
    font-size: 18px;
}

.onh-component__main-icon--active {
    opacity: 0;
}

[data-onh-toggle="hover"]:hover .onh-component__main-icon,
[data-onh-state="open"] .onh-component__main-icon {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

[data-onh-toggle="hover"]:hover .onh-component__main-icon--resting,
[data-onh-state="open"] .onh-component__main-icon--resting {
    opacity: 0;
    position: absolute !important;
}

[data-onh-toggle="hover"]:hover .onh-component__main-icon--active,
[data-onh-state="open"] .onh-component__main-icon--active {
    opacity: 1;
}




/*------------------------------------*\
    #LABELS | base
\*------------------------------------*/
/**
 * These are the labels associated to each button,
 * exposed only when hovering the related button.
 * They are called labels but are in fact data-attributes of
 * each button (an anchor tag).
 */
[data-onh-label]:after {
    content: attr(data-onh-label);
    opacity: 0;
    transition: all 0.5s;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: normal;
    pointer-events: none;
    line-height: normal;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    transition: all 0.5s;
}

/*------------------------------------*\
    #LABELS | Modifiers
\*------------------------------------*/
.onh-component--br [data-onh-label]:after, .onh-component--tr [data-onh-label]:after {
    content: attr(data-onh-label);
    right: 70px;
}

.onh-component--br .onh-component__list [data-onh-label]:after, .onh-component--tr .onh-component__list [data-onh-label]:after {
    content: attr(data-onh-label);
    right: 70px;
}

.onh-component--tl [data-onh-label]:after, .onh-component--bl [data-onh-label]:after {
    content: attr(data-onh-label);
    left: 70px;
}

.onh-component--tl .onh-component__list [data-onh-label]:after, .onh-component--bl .onh-component__list [data-onh-label]:after {
    content: attr(data-onh-label);
    left: 70px;
}

.onh-cb-menu-start {
    background: rgb(235,52,73);
	background: linear-gradient(45deg, rgba(235,52,73,1) 0%, rgba(242,91,67,1) 100%);
}


@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes onhPulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes onhHeartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.onh-button img:hover{
    animation: onhPulse 0.5s;
    animation-iteration-count: 0.5s;

}

.onh-button:hover::after{
    opacity: 1;
    animation: fadeInRight 0.5s;
}

.onh-icon-close img{
    vertical-align: middle;
	width: 30px;
	height: 30px;
}

.onh-icon-chats img{
    vertical-align: middle;
	width: 30px;
	height: 30px;
}

.onh-icon-close, .onh-icon-chats {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 56px;
}

.onh-title-icon img {
	width: 24px;
}

.onh-title-icon {
	display: table-cell;
	vertical-align: middle;
	width: 28px;
}

.onh-popup-hidden{
    display: none;
}
.onh-popup-container {
	text-align: center;
	font-size: 12px;
    padding: 15px;
}

.onh-popup-viber-num{
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 0px;
	display: block;
	line-height: 1;
    margin-bottom: 10px;
}

.onh-popup-viber-txt {
	margin-bottom: 20px;
	display: block;
}

.onh-popup-snapchat-username  {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 0px;
	display: block;
	line-height: 1;
    margin-bottom: 20px;
    margin-top: 20px;
}

.onh-popup-snapchat .onh-popup-container{
	padding-top: 20px;
}

.onh-button img {
	vertical-align: middle;
	width: 30px;
	height: 30px;
}



.onh-popup-container img {
    margin-left: auto;
    margin-right: auto;
}

.onh-popup-messenger .onh-container-2 iframe {
	height: 300px !important;
	width: 300px !important;
}

.fb-root-container{
    display: none;
}

.is-mobile .onh-button:after {
	opacity: 1;
}


/*------------------------------------*\
    #Widget Styles
\*------------------------------------*/

.onh-widget-container{
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.75);
}

.onh-widget-header{
    background-color: red;
    padding: 25px 20px;
    color: #fff;
    background: rgb(129,120,204);
    background: linear-gradient(307deg, rgba(129,120,204,1) 0%, rgba(91,117,255,1) 100%);
}

.onh-widget-price {
	font-size: 32px;
	font-weight: 800;
	margin-top: 10px;
	margin-bottom: 10px;
    line-height: 1;
}

.onh-widget-title {
	font-size: 14px;
	font-weight: 300;
    line-height: 1.4;
    margin-bottom: 10px;
}

.onh-widget-title b {
	font-weight: 400;
}

.onh-widget-note {
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
}

.onh-widget-body {
	background-color: #fff;
	padding: 20px;
}

.onh-price-row {
	display: flex;
    align-items: center;
	margin-bottom: 10px;
    line-height: 1;
}

.onh-price-text {
	margin-left: auto;
	font-size: 14px;
	font-weight: 600;
}

a.onh-book-now {
	background-color: #3D59E8;
	color: #fff !important;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	padding: 13px 25px;
	border: 0px solid #000;
	border-radius: 50px;
	display: inline-block;
    line-height: 1;
}

a.onh-book-now:hover{
    background: linear-gradient(to right,#5482d0 ,#7d5ee3);
    background-color: #5482d0;
}
a.onh-book-now:active{
    transform: scale(0.95);
}

.onh-button-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}

.onh-price-logo img {
	max-width: 80px;
    max-height: 20px;
}

.onh-price-spacer{
	width: 100%;
	height: 12px;
	display: flex;
	margin: 0px 5px;
	background-image: url(../img/icons/dot.png);
    background-size: 5px 2px;
	background-repeat: repeat-x;
	opacity: 0.3;
	background-position: bottom;
}


.onh-price-label{
	position: absolute;
	background: #ed4246;
	right: 30px;
	height: 56px;
	border-top-left-radius: 28px;
	border-bottom-left-radius: 28px;
	width: max-content;
	padding-right: 40px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	color: #FFF;
    z-index: 9;
    cursor: pointer;
    line-height: 1;
}

.onh-widget-note ul {
    padding: 0;
	margin: 0;
	list-style: none;
    line-height: 1.5;
}

.onh-widget-note li {
	margin: 0;
}

.onh-price-url{
    text-decoration: none;
}

.onh-component--bl .onh-price-label {
	left: 30px;
	right: unset;
	padding-left: 40px;
	padding-right: 20px;
	border-top-right-radius: 28px;
	border-bottom-right-radius: 28px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}