.jet-chat-wrap {
    max-width: 100px;
    min-width: 150px;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 99;
}

.jet-chat-wrap.chat-shown {
	max-width: 400px;
    min-width: 300px;
}

.jet-chat-wrap img {
    cursor: pointer;
    max-width: 100%;
}

.jet-chat {
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(80, 106, 72, 0.15);
    margin-bottom: 100px;
    position: relative;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 400ms cubic-bezier(0.21, 1.13, 0.81, 0.99);
    transition: all 400ms cubic-bezier(0.21, 1.13, 0.81, 0.99);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px)
}

.jet-chat.chat-active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.jet-chat:after {
    position: absolute;
    bottom: -8px;
    right: 42px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent
}

.jet-chat__form {
    padding: 30px
}

.jet-chat__form-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500
}

.jet-chat__form-text {
    font-size: 14px;
    line-height: 26px
}

.jet-chat__form-message {
    padding-bottom: 20px
}

.jet-chat__form-row {
    display:flex;
    padding-bottom: 10px
}

::-moz-focus-inner {
    border: none;
    outline: none;
}

.jet-chat__form-submit:hover {
	background-color: #d84315;
	background-image: -webkit-linear-gradient(left, #f4511e 0%, #d84315 100%);
    background-image: linear-gradient(to right, #f4511e 0%, #d84315 100%);
}

.jet-chat__form-submit {
    margin-top: 10px;
    display: block;
    width: 100%;
    font-weight: 600;
    background-color: #d84315;
    background-image: -webkit-linear-gradient(left, #d84315 0%, #f4511e 100%);
    background-image: linear-gradient(to right, #d84315 0%, #f4511e 100%);
	text-transform: uppercase;
    color: #fff;
    padding: 23px 37.5px;
    font-size: .75rem;
    line-height: 1;
    border: none;
    border-radius: 3px;
	cursor:pointer;
	outline: none;
}

.jet-chat__form-field.jet-chat-error {
    border-color: red
}

.jet-chat__form-field {
    width: 100%;
	padding: 20.5px 20px;
    border: 1px solid #f8f8f8;
    background-color: #f8f8f8;
    font-size: 14px;
    font-size: .875rem;
    line-height: 1.2143;
    font-style: italic;
    transition: .3s;
    border-radius: 3px;
}

.jet-chat__form-field:focus {
	border-color: rgba(82, 168, 236, 0.8);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
	-webkit-transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}

.jet-chat__heading {
    background:#42a5f5;
    background:linear-gradient(180deg,#42a5f5 0,#2196f3);
    padding: 0 0 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px 5px 0 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.jet-chat__heading .jet-chat__title {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 0
}

.jet-chat__title:before {
    font-size: 30px;
    display: inline-block;
    margin-right: 10px;
    line-height: 32px;
    height: 32px;
    vertical-align: sub;
    background-color: #ffffff;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text
}

.jet-chat-trigger__wrap:after{
    content: "";
    background-image: linear-gradient(to bottom,#38dc79,#1ab744);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    position: absolute;
    right: 3px;
    top: 7px;
}

.jet-chat-trigger {
	border: none;
	cursor: pointer;
	outline: none;
    background-color: #2196f3;
    background-image: -webkit-linear-gradient(left, #2196f3 0%, #1976d2 100%);
    background-image: linear-gradient(to right, #2196f3 0%, #1976d2 100%);
    width: 72px;
    height: 72px;
    padding: 0;
    text-align: center;
    border-radius: 50%;
    pointer-events: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-position: center center;
    box-shadow: 0 0 0 24px rgba(86, 172, 238, 0.2), 0 0 0 12px rgba(25, 118, 210, 0.5);
}

.jet-chat-trigger:not(.chat-active):hover {
    -webkit-animation: pulse 200ms 4 linear alternate;
    animation: pulse 200ms 4 linear alternate
}

.jet-chat-trigger.chat-active {
    box-shadow: 0 0 0 20px rgba(79, 159, 219, 0.2), 0 0 0 10px rgba(86, 172, 238, 0.5);
    width: 60px;
    height: 60px;
    line-height: 60px
}

.jet-chat-trigger:hover {
    background-position: center center
}

.jet-chat-wrap label {
    margin-right: 10px;
    position: relative;
    cursor:pointer;
	line-height: 20px;
}

.jet-chat-wrap [type="radio"]:checked:after {
    background: #42a5f5;
    content: "";
    position: absolute;
    width: 100%;
    top: 31px;
	left: 0px;
    height: 1px;
}

.jet-chat__form-field[type="radio"] {
	outline: none;
	background: none;
	padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

.jet-chat-wrap [type="radio"]:checked+.jet-chat__form-text {
	display:block;
}

.jet-chat__form-message .jet-chat__form-row {
    padding-bottom: 0;
}

.jet-chat-trigger__wrap {
	cursor:pointer;
    right: 14px;
    width: 72px;
    height: 72px;
    border-radius: 36px;
    bottom: 0;
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1);
	}
	
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	
	to {
		transform: scale3d(1, 1, 1);
	}
}