


/* Delete Status */
.dnd-icon-remove.deleting { font-size:12px; color:#000; font-weight: 500; position: relative; top:-3px; }
.dnd-icon-remove.deleting:after { display:none!important; }

.wpcf7-drag-n-drop-file.d-none {
	display:none;
	opacity:0;
	visibility:hidden;
	position:absolute;
	top:0;
}

/* Upload Status */
.dnd-upload-status {
	display:flex;
	padding:4px 0;
	align-items:center;
	position:relative;
}

/* Progress bar - Image */
.dnd-upload-status .dnd-upload-image {
	width:40px;
	height:40px;
	border:1px solid #a5a5a5;
	text-align:center;
	border-radius:100%;
	position:relative;
}
.dnd-upload-status .dnd-upload-image span.file {
    background-image: url("data:image/svg+xml,%0A%3Csvg width='18' height='23' viewBox='0 0 18 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.569 0.659576H0.5V23H18V6.09053L12.569 0.659576ZM12.7872 1.93075L16.7288 5.87234H12.7872V1.93075ZM1.24468 22.2553V1.40426H12.0426V6.61702H17.2553V22.2553H1.24468Z' fill='%235C5B5B'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 100%;
    height: 21px;
    width: 16px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform : translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

/* Progress bar - Image Details ( Name and Size ) */
.dnd-upload-status .dnd-upload-details {
	padding-left:10px;
	width: calc(100% - 40px);
}
.dnd-upload-status .dnd-upload-details .name {color:#016d98; padding:4px 0; padding-right:60px; display:flex; }
.dnd-upload-status .dnd-upload-details .name span { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; position: relative; padding-right:10px; }
.dnd-upload-status .dnd-upload-details .name em {color:#444242;	font-weight:700; }

/* Remove Upload File */
.dnd-upload-status .dnd-upload-details .remove-file {
	position:absolute;
	right:0;
	top:10px;
	text-decoration:none;
	box-shadow:none;
	outline:none;
    opacity:1;
}
.dnd-upload-status .dnd-upload-details .remove-file span:after {
    content: '';
    width:15px;
    height:15px;
    display: block;
    background-repeat:no-repeat;
    background-size:100%;
    background-image: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 35 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5 0C7.83499 0 0 7.83499 0 17.5C0 27.165 7.83499 35 17.5 35C27.165 35 35 27.165 35 17.5C34.9888 7.83965 27.1604 0.0112198 17.5 0ZM17.5 33.871C8.45857 33.871 1.12903 26.5414 1.12903 17.5C1.12903 8.45857 8.45857 1.12903 17.5 1.12903C26.5414 1.12903 33.871 8.45857 33.871 17.5C33.861 26.5373 26.5373 33.861 17.5 33.871Z' fill='black'/%3E%3Cpath d='M25.4834 9.51661C25.2629 9.29624 24.9056 9.29624 24.6852 9.51661L17.5 16.7018L10.3148 9.51661C10.0983 9.29236 9.74087 9.28615 9.51661 9.50271C9.29236 9.71927 9.28615 10.0767 9.50271 10.3009C9.50723 10.3057 9.51188 10.3103 9.51661 10.3148L16.7018 17.5L9.51661 24.6852C9.29236 24.9018 9.28615 25.2591 9.50278 25.4834C9.71941 25.7076 10.0768 25.7139 10.301 25.4972C10.3057 25.4927 10.3103 25.488 10.3148 25.4834L17.5 18.2982L24.6852 25.4834C24.9094 25.7 25.2668 25.6938 25.4834 25.4696C25.6947 25.2508 25.6947 24.9039 25.4834 24.6852L18.2982 17.5L25.4834 10.3148C25.7038 10.0944 25.7038 9.73705 25.4834 9.51661Z' fill='black'/%3E%3C/svg%3E%0A");
}
.dnd-upload-status.in-progress .remove-file { opacity:0.2;}

.dnd-upload-status .dnd-upload-details span.has-error { color:#f50505; }

/* Progress Loading */
.dnd-upload-status .dnd-upload-details .dnd-progress-bar {
	display: block;
    border-radius: 5px;
    overflow: hidden;
    background: #565555;
    height: 14px;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
    background: #4CAF50;
    display: block;
    font-size: 11px;
    text-align: right;
    color: #fff;
    height: 100%;
	width:0;
	line-height:14px;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar span.complete { width:100%!important; padding-right:5px; }
.dnd-upload-counter { position:absolute; right:5px; bottom:3px; font-size:12px; }

/* CodeDropz Upload Plugin */
.codedropz-upload-handler {
	border:2px dashed #c5c5c5;
	border-radius:5px;
	margin-bottom:10px;
	position:relative;
}
.codedropz-upload-container {
	padding:15px 20px;
}

.codedropz-upload-inner {
	overflow:hidden;
	width:100%;
	/*white-space: nowrap;*/
	text-align:center;
	text-overflow: ellipsis;
	font-weight:inherit;
}
.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
	text-decoration:none;
	box-shadow:none;
}
.codedropz-upload-inner h3 {
	margin:5px 0;
	font-size:30px;
	line-height:32px;
    word-break:break-word;
}

/* Add border on dragenter, drag etc */
.codedropz-dragover {
	border-color:#6b6a6a;
}

.codedropz-upload-wrapper span.has-error-msg {
	display:inline-block;
	color:#ff0000;
	padding:5px 0;
	font-style:italic;
}

/* Jquery Validation For Contact Form 7 */
.wpcf7-form label.error-new {
    color: #900;
    font-size: 11px;
    float: none;
    padding-left: 5px;
}
.wpcf7-form .codedropz-upload-wrapper.invalid .codedropz-upload-handler{
	border-bottom-color: #900;
    border-bottom-style: solid;
}
/* END : Jquery Validation CF7 */

@media screen and (max-width: 767px) {
	.dnd-upload-status .dnd-upload-details .name em { font-weight:normal; }
	.dnd-upload-status .dnd-upload-details .name { padding-right:60px; }
	.codedropz-upload-inner h3 { font-size:22px; }
}div.wpcf7 {
	margin: 0;
	padding: 0;
}

div.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	width: 1px;
	margin: 0;
	padding: 0;
	border: 0;
}

div.wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #ff0000;
}

div.wpcf7-mail-sent-ok {
	border: 2px solid #398f14;
}

div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
	border: 2px solid #ff0000;
}

div.wpcf7-spam-blocked {
	border: 2px solid #ffa500;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	border: 2px solid #f7e700;
}

.wpcf7-form-control-wrap {
	position: relative;
}

span.wpcf7-not-valid-tip {
	color: #f00;
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
	position: absolute;
	top: 20%;
	left: 20%;
	z-index: 100;
	border: 1px solid #ff0000;
	background: #fff;
	padding: .2em .8em;
}

span.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

span.wpcf7-list-item-label::before,
span.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-display-none {
	display: none;
}

div.wpcf7 .ajax-loader {
	visibility: hidden;
	display: inline-block;
	background-image: url('/wp-content/plugins/contact-form-7/images/ajax-loader.gif');
	width: 16px;
	height: 16px;
	border: none;
	padding: 0;
	margin: 0 0 0 4px;
	vertical-align: middle;
}

div.wpcf7 .ajax-loader.is-active {
	visibility: visible;
}

div.wpcf7 div.ajax-error {
	display: none;
}

div.wpcf7 .placeheld {
	color: #888;
}

div.wpcf7 .wpcf7-recaptcha iframe {
	margin-bottom: 0;
}

div.wpcf7 input[type="file"] {
	cursor: pointer;
}

div.wpcf7 input[type="file"]:disabled {
	cursor: default;
}
#cookie-notice{display:block;visibility:hidden;position:fixed;min-width:100%;height:auto;z-index:100000;font-size:13px;line-height:20px;left:0;text-align:center}.cn-top{top:0}.cn-bottom{bottom:0}.cookie-notice-container{padding:10px;text-align:center;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.cookie-notice-revoke-container{position:absolute;bottom:0;width:100%;z-index:1;visibility:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.cn-top .cookie-notice-revoke-container{top:0;bottom:auto}#cookie-notice .cn-revoke-cookie{margin:0}.cn-button.wp-default,.cn-button.wp-default:hover,.cn-button.bootstrap,.cn-button.bootstrap:hover{box-shadow:none;text-decoration:none}#cookie-notice .cn-button{margin-left:10px}.cn-button.wp-default{font-family:sans-serif;line-height:18px;padding:2px 12px;background:linear-gradient(to bottom,#FEFEFE,#F4F4F4) repeat scroll 0 0 #F3F3F3;border-color:#BBB;color:#333;text-shadow:0 1px 0 #FFF;-moz-box-sizing:border-box;border-radius:3px 3px 3px 3px;border-style:solid;border-width:1px;cursor:pointer;display:inline-block;font-size:12px;font-style:normal;text-decoration:none;white-space:nowrap;outline:none}.cn-button.wp-default:hover{background:linear-gradient(to bottom,#FFFFFF,#F3F3F3) repeat scroll 0 0 #F3F3F3;border-color:#999;color:#222}.cn-button.bootstrap{font-family:sans-serif;display:inline-block;*display:inline;padding:4px 12px;margin-right:.3em;margin-bottom:0;*margin-left:.3em;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,.75);font-style:normal;vertical-align:middle;cursor:pointer;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#0088cc,#0044cc);background-image:-webkit-gradient(linear,0 0,0 100%,from(#0088cc),to(#0044cc));background-image:-webkit-linear-gradient(top,#0088cc,#0044cc);background-image:-o-linear-gradient(top,#0088cc,#0044cc);background-image:linear-gradient(to bottom,#0088cc,#0044cc);background-repeat:repeat-x;border-style:solid;border-width:1px;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);box-shadow:0 1px 0 rgba(255,255,255,.2) inset,0 1px 2px rgba(0,0,0,.05);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);padding:2px 10px;font-size:12px;text-decoration:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;outline:none}.cn-button.bootstrap:hover{color:#fff;background-color:#04c;*background-color:#003bb3;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear}@media all and (max-width:900px){.cookie-notice-container #cn-notice-text{display:block;margin-bottom:5px}#cookie-notice .cn-button{margin-left:5px;margin-right:5px}}/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=e540d760a3023835db0d)
 * Config saved to config.json and https://gist.github.com/e540d760a3023835db0d
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */

/*BOX LAYOUT*/

.wg-maincontainer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wg-maincontainer *:before,
.wg-maincontainer *:after
 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.wg-row {
  margin-left: -10px;
  margin-right: -10px;
}
.wg-row > div {
  box-sizing: border-box;
}
.wg-col-xs-1, .wg-col-sm-1, .wg-col-md-1, .wg-col-lg-1, .wg-col-xs-2, .wg-col-sm-2, .wg-col-md-2, .wg-col-lg-2, .wg-col-xs-3, .wg-col-sm-3, .wg-col-md-3, .wg-col-lg-3, .wg-col-xs-4, .wg-col-sm-4, .wg-col-md-4, .wg-col-lg-4, .wg-col-xs-5, .wg-col-sm-5, .wg-col-md-5, .wg-col-lg-5, .wg-col-xs-6, .wg-col-sm-6, .wg-col-md-6, .wg-col-lg-6, .wg-col-xs-7, .wg-col-sm-7, .wg-col-md-7, .wg-col-lg-7, .wg-col-xs-8, .wg-col-sm-8, .wg-col-md-8, .wg-col-lg-8, .wg-col-xs-9, .wg-col-sm-9, .wg-col-md-9, .wg-col-lg-9, .wg-col-xs-10, .wg-col-sm-10, .wg-col-md-10, .wg-col-lg-10, .wg-col-xs-11, .wg-col-sm-11, .wg-col-md-11, .wg-col-lg-11, .wg-col-xs-12, .wg-col-sm-12, .wg-col-md-12, .wg-col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom:20px;
}
.wg-col-xs-1, .wg-col-xs-2, .wg-col-xs-3, .wg-col-xs-4, .wg-col-xs-5, .wg-col-xs-6, .wg-col-xs-7, .wg-col-xs-8, .wg-col-xs-9, .wg-col-xs-10, .wg-col-xs-11, .wg-col-xs-12 {
  float:none;
  display: inline-block;
  vertical-align: top; 
}
.wg-col-xs-12 {
  width: 100%;
}
.wg-col-xs-11 {
  width: 91.66666667%;
}
.wg-col-xs-10 {
  width: 83.33333333%;
}
.wg-col-xs-9 {
  width: 75%;
}
.wg-col-xs-8 {
  width: 66.66666667%;
}
.wg-col-xs-7 {
  width: 58.33333333%;
}
.wg-col-xs-6 {
  width: 50%;
}
.wg-col-xs-5 {
  width: 41.66666667%;
}
.wg-col-xs-4 {
  width: 33.33333333%;
}
.wg-col-xs-3 {
  width: 25%;
}
.wg-col-xs-2 {
  width: 16.66666667%;
}
.wg-col-xs-1 {
  width: 8.33333333%;
}
.wg-col-xs-pull-12 {
  right: 100%;
}
.wg-col-xs-pull-11 {
  right: 91.66666667%;
}
.wg-col-xs-pull-10 {
  right: 83.33333333%;
}
.wg-col-xs-pull-9 {
  right: 75%;
}
.wg-col-xs-pull-8 {
  right: 66.66666667%;
}
.wg-col-xs-pull-7 {
  right: 58.33333333%;
}
.wg-col-xs-pull-6 {
  right: 50%;
}
.wg-col-xs-pull-5 {
  right: 41.66666667%;
}
.wg-col-xs-pull-4 {
  right: 33.33333333%;
}
.wg-col-xs-pull-3 {
  right: 25%;
}
.wg-col-xs-pull-2 {
  right: 16.66666667%;
}
.wg-col-xs-pull-1 {
  right: 8.33333333%;
}
.wg-col-xs-pull-0 {
  right: auto;
}
.wg-col-xs-push-12 {
  left: 100%;
}
.wg-col-xs-push-11 {
  left: 91.66666667%;
}
.wg-col-xs-push-10 {
  left: 83.33333333%;
}
.wg-col-xs-push-9 {
  left: 75%;
}
.wg-col-xs-push-8 {
  left: 66.66666667%;
}
.wg-col-xs-push-7 {
  left: 58.33333333%;
}
.wg-col-xs-push-6 {
  left: 50%;
}
.wg-col-xs-push-5 {
  left: 41.66666667%;
}
.wg-col-xs-push-4 {
  left: 33.33333333%;
}
.wg-col-xs-push-3 {
  left: 25%;
}
.wg-col-xs-push-2 {
  left: 16.66666667%;
}
.wg-col-xs-push-1 {
  left: 8.33333333%;
}
.wg-col-xs-push-0 {
  left: auto;
}
.wg-col-xs-offset-12 {
  margin-left: 100%;
}
.wg-col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.wg-col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.wg-col-xs-offset-9 {
  margin-left: 75%;
}
.wg-col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.wg-col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.wg-col-xs-offset-6 {
  margin-left: 50%;
}
.wg-col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.wg-col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.wg-col-xs-offset-3 {
  margin-left: 25%;
}
.wg-col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.wg-col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.wg-col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .wg-col-sm-1, .wg-col-sm-2, .wg-col-sm-3, .wg-col-sm-4, .wg-col-sm-5, .wg-col-sm-6, .wg-col-sm-7, .wg-col-sm-8, .wg-col-sm-9, .wg-col-sm-10, .wg-col-sm-11, .wg-col-sm-12 {
	float:none;
	display: inline-block;
	vertical-align: top; 
  }
  .wg-col-sm-12 {
    width: 100%;
  }
  .wg-col-sm-11 {
    width: 91.66666667%;
  }
  .wg-col-sm-10 {
    width: 83.33333333%;
  }
  .wg-col-sm-9 {
    width: 75%;
  }
  .wg-col-sm-8 {
    width: 66.66666667%;
  }
  .wg-col-sm-7 {
    width: 58.33333333%;
  }
  .wg-col-sm-6 {
    width: 50%;
  }
  .wg-col-sm-5 {
    width: 41.66666667%;
  }
  .wg-col-sm-4 {
    width: 33.33333333%;
  }
  .wg-col-sm-3 {
    width: 25%;
  }
  .wg-col-sm-2 {
    width: 16.66666667%;
  }
  .wg-col-sm-1 {
    width: 8.33333333%;
  }
  .wg-col-sm-pull-12 {
    right: 100%;
  }
  .wg-col-sm-pull-11 {
    right: 91.66666667%;
  }
  .wg-col-sm-pull-10 {
    right: 83.33333333%;
  }
  .wg-col-sm-pull-9 {
    right: 75%;
  }
  .wg-col-sm-pull-8 {
    right: 66.66666667%;
  }
  .wg-col-sm-pull-7 {
    right: 58.33333333%;
  }
  .wg-col-sm-pull-6 {
    right: 50%;
  }
  .wg-col-sm-pull-5 {
    right: 41.66666667%;
  }
  .wg-col-sm-pull-4 {
    right: 33.33333333%;
  }
  .wg-col-sm-pull-3 {
    right: 25%;
  }
  .wg-col-sm-pull-2 {
    right: 16.66666667%;
  }
  .wg-col-sm-pull-1 {
    right: 8.33333333%;
  }
  .wg-col-sm-pull-0 {
    right: auto;
  }
  .wg-col-sm-push-12 {
    left: 100%;
  }
  .wg-col-sm-push-11 {
    left: 91.66666667%;
  }
  .wg-col-sm-push-10 {
    left: 83.33333333%;
  }
  .wg-col-sm-push-9 {
    left: 75%;
  }
  .wg-col-sm-push-8 {
    left: 66.66666667%;
  }
  .wg-col-sm-push-7 {
    left: 58.33333333%;
  }
  .wg-col-sm-push-6 {
    left: 50%;
  }
  .wg-col-sm-push-5 {
    left: 41.66666667%;
  }
  .wg-col-sm-push-4 {
    left: 33.33333333%;
  }
  .wg-col-sm-push-3 {
    left: 25%;
  }
  .wg-col-sm-push-2 {
    left: 16.66666667%;
  }
  .wg-col-sm-push-1 {
    left: 8.33333333%;
  }
  .wg-col-sm-push-0 {
    left: auto;
  }
  .wg-col-sm-offset-12 {
    margin-left: 100%;
  }
  .wg-col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .wg-col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .wg-col-sm-offset-9 {
    margin-left: 75%;
  }
  .wg-col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .wg-col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .wg-col-sm-offset-6 {
    margin-left: 50%;
  }
  .wg-col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .wg-col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .wg-col-sm-offset-3 {
    margin-left: 25%;
  }
  .wg-col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .wg-col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .wg-col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .wg-col-md-1, .wg-col-md-2, .wg-col-md-3, .wg-col-md-4, .wg-col-md-5, .wg-col-md-6, .wg-col-md-7, .wg-col-md-8, .wg-col-md-9, .wg-col-md-10, .wg-col-md-11, .wg-col-md-12 {
    float:none;
	display: inline-block;
	vertical-align: top; 
  }
  .wg-col-md-12 {
    width: 100%;
  }
  .wg-col-md-11 {
    width: 91.66666667%;
  }
  .wg-col-md-10 {
    width: 83.33333333%;
  }
  .wg-col-md-9 {
    width: 75%;
  }
  .wg-col-md-8 {
    width: 66.66666667%;
  }
  .wg-col-md-7 {
    width: 58.33333333%;
  }
  .wg-col-md-6 {
    width: 50%;
  }
  .wg-col-md-5 {
    width: 41.66666667%;
  }
  .wg-col-md-4 {
    width: 33.33333333%;
  }
  .wg-col-md-3 {
    width: 25%;
  }
  .wg-col-md-2 {
    width: 16.66666667%;
  }
  .wg-col-md-1 {
    width: 8.33333333%;
  }
  .wg-col-md-pull-12 {
    right: 100%;
  }
  .wg-col-md-pull-11 {
    right: 91.66666667%;
  }
  .wg-col-md-pull-10 {
    right: 83.33333333%;
  }
  .wg-col-md-pull-9 {
    right: 75%;
  }
  .wg-col-md-pull-8 {
    right: 66.66666667%;
  }
  .wg-col-md-pull-7 {
    right: 58.33333333%;
  }
  .wg-col-md-pull-6 {
    right: 50%;
  }
  .wg-col-md-pull-5 {
    right: 41.66666667%;
  }
  .wg-col-md-pull-4 {
    right: 33.33333333%;
  }
  .wg-col-md-pull-3 {
    right: 25%;
  }
  .wg-col-md-pull-2 {
    right: 16.66666667%;
  }
  .wg-col-md-pull-1 {
    right: 8.33333333%;
  }
  .wg-col-md-pull-0 {
    right: auto;
  }
  .wg-col-md-push-12 {
    left: 100%;
  }
  .wg-col-md-push-11 {
    left: 91.66666667%;
  }
  .wg-col-md-push-10 {
    left: 83.33333333%;
  }
  .wg-col-md-push-9 {
    left: 75%;
  }
  .wg-col-md-push-8 {
    left: 66.66666667%;
  }
  .wg-col-md-push-7 {
    left: 58.33333333%;
  }
  .wg-col-md-push-6 {
    left: 50%;
  }
  .wg-col-md-push-5 {
    left: 41.66666667%;
  }
  .wg-col-md-push-4 {
    left: 33.33333333%;
  }
  .wg-col-md-push-3 {
    left: 25%;
  }
  .wg-col-md-push-2 {
    left: 16.66666667%;
  }
  .wg-col-md-push-1 {
    left: 8.33333333%;
  }
  .wg-col-md-push-0 {
    left: auto;
  }
  .wg-col-md-offset-12 {
    margin-left: 100%;
  }
  .wg-col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .wg-col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .wg-col-md-offset-9 {
    margin-left: 75%;
  }
  .wg-col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .wg-col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .wg-col-md-offset-6 {
    margin-left: 50%;
  }
  .wg-col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .wg-col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .wg-col-md-offset-3 {
    margin-left: 25%;
  }
  .wg-col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .wg-col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .wg-col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .wg-col-lg-1, .wg-col-lg-2, .wg-col-lg-3, .wg-col-lg-4, .wg-col-lg-5, .wg-col-lg-6, .wg-col-lg-7, .wg-col-lg-8, .wg-col-lg-9, .wg-col-lg-10, .wg-col-lg-11, .wg-col-lg-12 {
    float:none;
	display: inline-block;
	vertical-align: top; 
  }
  .wg-col-lg-12 {
    width: 100%;
  }
  .wg-col-lg-11 {
    width: 91.66666667%;
  }
  .wg-col-lg-10 {
    width: 83.33333333%;
  }
  .wg-col-lg-9 {
    width: 75%;
  }
  .wg-col-lg-8 {
    width: 66.66666667%;
  }
  .wg-col-lg-7 {
    width: 58.33333333%;
  }
  .wg-col-lg-6 {
    width: 50%;
  }
  .wg-col-lg-5 {
    width: 41.66666667%;
  }
  .wg-col-lg-4 {
    width: 33.33333333%;
  }
  .wg-col-lg-3 {
    width: 25%;
  }
  .wg-col-lg-2 {
    width: 16.66666667%;
  }
  .wg-col-lg-1 {
    width: 8.33333333%;
  }
  .wg-col-lg-pull-12 {
    right: 100%;
  }
  .wg-col-lg-pull-11 {
    right: 91.66666667%;
  }
  .wg-col-lg-pull-10 {
    right: 83.33333333%;
  }
  .wg-col-lg-pull-9 {
    right: 75%;
  }
  .wg-col-lg-pull-8 {
    right: 66.66666667%;
  }
  .wg-col-lg-pull-7 {
    right: 58.33333333%;
  }
  .wg-col-lg-pull-6 {
    right: 50%;
  }
  .wg-col-lg-pull-5 {
    right: 41.66666667%;
  }
  .wg-col-lg-pull-4 {
    right: 33.33333333%;
  }
  .wg-col-lg-pull-3 {
    right: 25%;
  }
  .wg-col-lg-pull-2 {
    right: 16.66666667%;
  }
  .wg-col-lg-pull-1 {
    right: 8.33333333%;
  }
  .wg-col-lg-pull-0 {
    right: auto;
  }
  .wg-col-lg-push-12 {
    left: 100%;
  }
  .wg-col-lg-push-11 {
    left: 91.66666667%;
  }
  .wg-col-lg-push-10 {
    left: 83.33333333%;
  }
  .wg-col-lg-push-9 {
    left: 75%;
  }
  .wg-col-lg-push-8 {
    left: 66.66666667%;
  }
  .wg-col-lg-push-7 {
    left: 58.33333333%;
  }
  .wg-col-lg-push-6 {

    left: 50%;
  }
  .wg-col-lg-push-5 {
    left: 41.66666667%;
  }
  .wg-col-lg-push-4 {
    left: 33.33333333%;
  }
  .wg-col-lg-push-3 {
    left: 25%;
  }
  .wg-col-lg-push-2 {
    left: 16.66666667%;
  }
  .wg-col-lg-push-1 {
    left: 8.33333333%;
  }
  .wg-col-lg-push-0 {
    left: auto;
  }
  .wg-col-lg-offset-12 {
    margin-left: 100%;
  }
  .wg-col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .wg-col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .wg-col-lg-offset-9 {
    margin-left: 75%;
  }
  .wg-col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .wg-col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .wg-col-lg-offset-6 {
    margin-left: 50%;
  }
  .wg-col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .wg-col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .wg-col-lg-offset-3 {
    margin-left: 25%;
  }
  .wg-col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .wg-col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .wg-col-lg-offset-0 {
    margin-left: 0%;
  }
}




.wg-row:before,
.wg-row:after
 {
  content: " ";
  display: table;
}
.wg-row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.pw-gift-active {
    display: block!important;
}/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("/wp-content/plugins/gt_hediye/css/frontend/slider/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }






.owl-carousel .owl-nav div{
  position: absolute;
  top: 50%;
  width: 25px;
  height: 25px;
  background-color: #fff;
  text-align: center;
  line-height: 25px;
  font-size: 21px;
  font-family: monospace;
  border: 2px solid #ddd;
  box-sizing: content-box;
  margin-top: -12px;
  color: #616161;
}
.owl-carousel .owl-nav div.owl-prev{
  right: 5px;
}
.owl-carousel .owl-nav div.owl-next{
  left: 5px;
}

.owl-dots {
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.owl-dot {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  display: inline-block;
  border: 2px solid #ddd;
  border-radius: 50%;
}
.owl-dot.active {
  background-color: #d2d2d2;
  border-color: #d2d2d2;
}
body .flash_sale-shortcode {
	margin: 0; padding: 0; border: 0; outline: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline;
}
body .flash_sale-shortcode p { margin-bottom: 20px; }
body .flash_sale-shortcode-clearfix { clear: both; }

/* Buttons */

	body .flash_sale-shortcode-button {
		display: inline-block;
		text-decoration: none;
		background: #f9f9f9;
		line-height: 18px;
		position: relative;
		margin: 0 10px 10px 0;
		background: url(/wp-content/plugins/gt_hediye/images/button-overlay.png) repeat-x left top;
		color: #FFF;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
		border: 1px solid rgba(0,0,0,0.1);
		box-shadow: inset 0px 0px 3px rgba(255,255,255,0.5);
	}
	body .flash_sale-shortcode-button:hover { color: #FFF; background-position: left -100px; }
	body .flash_sale-shortcode-button:active { top: 1px; box-shadow: inset 1px 1px 1px rgba(0,0,0,0.2); }
	
	body .flash_sale-shortcode-button-size-small { font-size: 11px; padding: 4px 12px; }
	body .flash_sale-shortcode-button-size-medium { font-size: 13px; padding: 7px 15px 8px 15px; }
	body .flash_sale-shortcode-button-size-large { font-size: 15px; padding: 11px 18px 12px 18px; }
	
	body .flash_sale-shortcode-button-edge-straight { border-radius: 0px; -moz-border-radius: 0px; -webkit-border-radius: 0px; }
	body .flash_sale-shortcode-button-edge-rounded { border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
	
	body .flash_sale-shortcode-button-colour-red { background-color: #b34141!important; }
	body .flash_sale-shortcode-button-colour-blue { background-color: #2d48b8!important; }
	body .flash_sale-shortcode-button-colour-green { background-color: #2e9b42!important; }
	body .flash_sale-shortcode-button-colour-light-gray { background-color: #999!important; }
	body .flash_sale-shortcode-button-colour-dark-gray { background-color: #333!important; }
	body .flash_sale-shortcode-button-colour-orange { background-color: #ec661e!important; }
	body .flash_sale-shortcode-button-colour-purple { background-color: #531f99!important; }
	
	body .flash_sale-shortcode-button i { text-shadow: none;  }
	body .flash_sale-shortcode-button-size-small i { font-size: 12px;  }

/* Social */
	body .flash_sale-shortcode-social-links { margin: 0 0 20px 0; overflow: hidden; }
		.sn-social-icon {
			text-decoration: none;
			background: #333;
			width: 30px;
			height: 30px;
			line-height: 30px;
			color: #FFF;
			float: left;
			display: block;
			margin: 0 4px 8px 0;
			text-align: center;
			font-size: 13px;
			-webkit-font-smoothing: antialiased;
			border-radius: 3px;
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
		}
		.sn-social-icon:before { margin: 0px; display: inline; }
		.sn-social-icon-twitter { background: #00c4fc; }
		.sn-social-icon-facebook { background: #3350ae; }
		.sn-social-icon-linkedin { background: #0084d7; }
		.sn-social-icon-pinterest { background: #df2828; }
		.sn-social-icon-delicious { background: #055ff5; }
		.sn-social-icon-paypal { background: #23649a; }
		.sn-social-icon-gplus { background: #d83d2d; }
		.sn-social-icon-stumbleupon { background: #c60303; }
		.sn-social-icon-fivehundredpx { background: #0089d4; }
		.sn-social-icon-foursquare { background: #3ab6e8; }
		.sn-social-icon-forrst { background: #267810; }
		.sn-social-icon-digg { background: #024dcb; }
		.sn-social-icon-spotify { background: #aed40e; }
		.sn-social-icon-reddit { background: #ff7800; }
		.sn-social-icon-dribbble { background: #fe0085; }
		.sn-social-icon-flickr { background: #e53a7c; }
		.sn-social-icon-rss { background: #ef7528; }
		.sn-social-icon-skype { background: #1dc6ff; }
		.sn-social-icon-youtube { background: #e8211a; }
		.sn-social-icon-vimeo { background: #0084ff; }
		.sn-social-icon-myspace { background: #464545; }
		.sn-social-icon-amazon { background: #f59e1b; }
		.sn-social-icon-ebay { background: #ff0101; }
		.sn-social-icon-github { background: #024dcb; }
		.sn-social-icon-lastfm { background: #c60303; }
		.sn-social-icon-soundcloud { background: #ff4701; }
		.sn-social-icon-tumblr { background: #3d627d; }
		.sn-social-icon-instagram { background: #1c527e; }	
		.sn-social-icon:hover { background: #000; color: #FFF; }
		
		.sn-social-icon-image {
			float: left;
			display: block;
			margin: 0 4px 8px 0;
		}
			.sn-social-icon-image img { width: 30px; height: 30px; margin: 0px; display: inline-block; }


/* Columns */

body .flash_sale-shortcode-cols {
	display: block;
	overflow: hidden;
	clear: both;
	margin: 0 0 20px 0;
}
	body .flash_sale-shortcode-col {
		float: left;
		display: block;
	}
		body .flash_sale-shortcode-col-inner {
			margin: 0 15px 0 0;
		}

	body .flash_sale-shortcode-cols-half-half .flash_sale-shortcode-col-a, 
	body .flash_sale-shortcode-cols-half-half .flash_sale-shortcode-col-b { width: 50%; }
	
	body .flash_sale-shortcode-cols-third-third-third .flash_sale-shortcode-col-a, 
	body .flash_sale-shortcode-cols-third-third-third .flash_sale-shortcode-col-b, 
	body .flash_sale-shortcode-cols-third-third-third .flash_sale-shortcode-col-c { width: 33.3%; }
	
	body .flash_sale-shortcode-cols-twothirds-third .flash_sale-shortcode-col-a { width: 67%; }
	body .flash_sale-shortcode-cols-twothirds-third .flash_sale-shortcode-col-b { width: 33%; }
	
	body .flash_sale-shortcode-cols-third-twothirds .flash_sale-shortcode-col-a { width: 33%; }
	body .flash_sale-shortcode-cols-third-twothirds .flash_sale-shortcode-col-b { width: 67%; }
	
	body .flash_sale-shortcode-cols-quarter-quarter-quarter-quarter .flash_sale-shortcode-col-a, 
	body .flash_sale-shortcode-cols-quarter-quarter-quarter-quarter .flash_sale-shortcode-col-b, 
	body .flash_sale-shortcode-cols-quarter-quarter-quarter-quarter .flash_sale-shortcode-col-c, 
	body .flash_sale-shortcode-cols-quarter-quarter-quarter-quarter .flash_sale-shortcode-col-d { width: 25%; }
	
	body .flash_sale-shortcode-cols-half-quarter-quarter .flash_sale-shortcode-col-a { width: 50%; }
	body .flash_sale-shortcode-cols-half-quarter-quarter .flash_sale-shortcode-col-b, 
	body .flash_sale-shortcode-cols-half-quarter-quarter .flash_sale-shortcode-col-c { width: 25%; }
	
	body .flash_sale-shortcode-cols-quarter-quarter-half .flash_sale-shortcode-col-a,
	body .flash_sale-shortcode-cols-quarter-quarter-half .flash_sale-shortcode-col-b { width: 25%; }
	body .flash_sale-shortcode-cols-quarter-quarter-half .flash_sale-shortcode-col-c { width: 50%; }
	
	body .flash_sale-shortcode-cols-quarter-half-quarter .flash_sale-shortcode-col-a,
	body .flash_sale-shortcode-cols-quarter-half-quarter .flash_sale-shortcode-col-c { width: 25%; }
	body .flash_sale-shortcode-cols-quarter-half-quarter .flash_sale-shortcode-col-b { width: 50%; }
	

/* Media */

	body .flash_sale-shortcode-video-embed { margin: 0 0 20px 0; display: block; }
	

/* Toggle */

	body .flash_sale-shortcode-toggle {
		margin: 0 0 20px 0;
		display: block;
		border: 1px solid #EEE;
	}
	body .flash_sale-shortcode-toggle-active { border-color: #DDD; }
		body .flash_sale-shortcode-toggle h3.flash_sale-shortcode-toggle-heading {
			cursor: pointer;
			display: block;
			line-height: 22px;
			font-size: 16px;
			position: relative;
			padding: 15px 60px 15px 20px;
			margin: 0px;
			font-weight: normal;
		}
			body .flash_sale-shortcode-toggle h3.flash_sale-shortcode-toggle-heading i { margin-right: 10px; }
			body .flash_sale-shortcode-toggle h3.flash_sale-shortcode-toggle-heading .toggle-down, 
			body .flash_sale-shortcode-toggle h3.flash_sale-shortcode-toggle-heading .toggle-up {
				display: none;
				position: absolute;
				font-size: 14px;
				line-height: 20px;
				margin: -10px 0 0 0;
				top: 50%;
				right: 20px;
				opacity: 0.6;
			}
			body .flash_sale-shortcode-toggle h3.flash_sale-shortcode-toggle-heading .toggle-down { display: block; }
			body .flash_sale-shortcode-toggle-active h3.flash_sale-shortcode-toggle-heading .toggle-down { display: none; }
			body .flash_sale-shortcode-toggle-active h3.flash_sale-shortcode-toggle-heading .toggle-up { display: block; }
		body .flash_sale-shortcode-toggle .flash_sale-shortcode-toggle-content {
			border-top: 1px solid #EEE;
			padding: 20px 20px 1px 20px; 
		}
		body .flash_sale-shortcode-toggle .flash_sale-shortcode-toggle-content { display: none; }
	

/* Accordion */

	body .flash_sale-shortcode-accordion { margin: 0 0 20px 0; }
	body .flash_sale-shortcode-accordion .flash_sale-shortcode-toggle { margin: -1px 0 0 0; }


/* Tabs */

	body .flash_sale-shortcode-tabs {
		overflow: hidden;
		padding: 40px 0 0 0;
		position: relative;
		margin: 0 0 20px 0;
	}
		body .flash_sale-shortcode-tab-buttons {
			position: absolute;
			top: 0px;
			left: 0px;
			height: 41px;
			display: block;
			width: 100%;
			z-index: 10;
		}
			body .flash_sale-shortcode-tab-buttons a {
				display: block;
				float: left;
				margin: 0 8px 0 0;
				border: 1px solid #EEE;
				border-bottom: 1px solid #DDD;
				height: 39px;
				line-height: 39px;
				padding: 0 20px;
				color: #999;
				text-decoration: none;
				font-size: 12px;
			}
			body .flash_sale-shortcode-tab-buttons a.active { border-color: #DDD; border-bottom: 1px solid #FFF; color: #333; }
		body .flash_sale-shortcode-tabpane {
			position: relative;
			display: block;
			padding: 20px 20px 1px 20px;
			border: 1px solid #DDD;
		}


/* Map */

	body .flash_sale-shortcode-map {
		overflow: hidden;
		display: block;
		position: relative;
		margin: 0 0 20px 0;
	}
		body .flash_sale-shortcode-map img { max-width: none; }
		body .flash_sale-shortcode-map p {
			width: 300px;
			line-height: 18px;
			font-size: 12px;
			margin: 0px;
			padding: 10px 10px 0 10px;
		}/* CSS Document */
.pw-gift-active {
display: block!important;
}
.gift-role-cnt a{ border:none!important; text-decoration:none!important; }
.gift-role-cnt{ width:100%; border:1px solid #e1e1e1;  margin:10px 0 30px 0; display:inline-block; }
.gift-role-header{ position: relative;display:inline-block; width:100%;background:#f0f0f0;  }
.gift-role-header:after {width: 0;height: 0;border-style: solid;border-width: 15px 15px 0 15px;border-color: #F0F0F0 transparent transparent transparent;content: '';bottom: -13px;left:50%; margin-left:-8px; position: absolute;}
.gift-role-title-cnt{ padding: 10px 10px; text-align:center; }
.gift-role-header h3{ margin:5px 0!important; text-transform:uppercase; font-size:16px; }
.gift-counter-cnt{ text-align:center;padding:20px 10px 0px;  }
.gift-car-cnt{ padding:20px 15px; }
.gift-products-cnt { display:inline-block; border-bottom:1px solid #e1e1e1; width:100%;background:#fff;  }
.gift-product-item { border:1px solid #d2d2d2; display:inline-block; width:100%;-moz-box-sizing: content-box;box-sizing: border-box;  }
.gift-product-item > a{ display: inline-block; }
.gift-product-item img{ max-width: 100% !important; width:100%; height:auto; text-align:center;border-bottom:1px solid #d2d2d2;   }
.gift-product-item .gift-product-title{  margin:10px 0; padding:0 10px; text-align:center;font-size:13px;text-transform: uppercase;font-weight: bold; }
	.gift-product-item .gift-product-title a{text-decoration:none; border:none; color:#333; font-size:13px;text-transform: uppercase;font-weight: bold; }
		.gift-product-item .gift-product-title a:hover{text-decoration:none;}
.gift-depends-cnt { display:inline-block; background:#ffffff; width:100%;  }
.gift-depends-cnt .gift-depends-item { width:100%; display:inline-block; border-bottom:1px solid #d2d2d2;  }
.gift-depends-cnt .gift-depends-item:nth-child(odd){ background:#ffffff; }
.gift-depends-cnt .gift-depends-item:nth-child(even){ background:#ffffff; }
.gift-depends-cnt .gift-depends-item:last-child{ border-bottom:none; }

.gift-depends-item-cnt{ padding:10px; }

.gift-depends-title{ text-transform:uppercase; font-size:14px; font-weight:bold; display:inline-block; padding-left:22px; position:relative; }
.gift-depends-title:before{ content:'';background:url(/wp-content/plugins/gt_hediye/img/check.png) no-repeat; display:inline-block; margin-right:5px; width:18px; height:18px; position:absolute; left:0; margin-top:2px; }
.gift-depends-ul{ padding:0 0 0 30px; margin:0; list-style-type:disc; display:inline-block; }
.gift-depends-ul li {  display:inline-block; margin:0 10px 0 0!important; padding:0;}
.gift-depends-ul li a{ text-decoration:none; border:none; color:#333; font-size:12px; }
	.gift-depends-ul li a:hover{ text-decoration:none;}
.gift-depends-ul li span{ padding-left:10px; display:inline-block; }

/*ROLE THUMB*/
.rol-thumb-cnt{  display:block; margin:10px 0; }
.rol-thumb-title{ font-size:15px; margin-bottom:10px; text-transform:capitalize; display:block; }
.rol-thumb{ display:inline-block; margin:0 2.5% 10px 0; width:30%; border:1px solid #ddd; vertical-align:top; }
.rol-thumb img { width:100%; height:auto; }

/*GIFT CART */
.gift-close-link{ border:none!important; text-decoration:none!important; }
.gift-close{ background:url(/wp-content/plugins/gt_hediye/img/close.png) no-repeat; width:18px; height:18px; display:inline-block;  }

.gift-product-item.hovering{ position:relative;  }
.gift-product-hover{ position:absolute; width:100%; height:100%;background:rgba(255,255,255,0.8); top:0; left:0; opacity:0; text-align:center; -webkit-transition: all 0.3s ease 0s;-moz-transition: all 0.3s ease 0s;-ms-transition: all 0.3s ease 0s;-o-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s; z-index: 9 }
.gift-product-hover div{ width: auto;
    font-size: 12px;
    margin-bottom: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 0 10px;
    border-radius: 50px;
    box-shadow: 0 0 28px -2px #d6d6d6;
}
.gift-product-hover div a{ text-decoration:none; border-bottom:none; color:#333; line-height:30px; box-shadow: none; text-decoration: none!important; text-transform: uppercase; white-space: nowrap  }
.gift-product-hover div a:hover{ box-shadow: none; border-bottom: none }
.gift-product-item.disable-hover .gift-product-hover{ opacity:1; background: rgba(255,255,255,0.5); }
.gift-product-item.disable-hover .gift-product-hover div{ display:none; }

.gift-product-item.hovering:hover .gift-product-hover{ opacity:1; }

/*Gift POPUP*/
.gift-popup{ opacity:0; visibility:hidden; height:0; background:#fff; padding:0px;  z-index:9999999;  }
.lightcase-contentInner .gift-popup{
opacity:1; height:auto;
}

.gift-popup-title{ font-size:15px; font-weight:bold; margin-bottom:10px; padding:10px; background:#f5f5f5; text-transform:uppercase; text-align:center; text-shadow:none;}
.gift-popup-car{ padding:0 20px; }
.gift-popup-depends{ text-align:left; }
.gift-popup-depends-item{ border-top:1px solid #d3d3d3; font-size:9px; padding:5px; }
.gift-popup-depends-item a{ font-size:10px!important; font-weight:bold; }
.gift-popup-depends-item .gift-popup-val { font-weight:bold; font-size:10px; }


.pw-cover {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
	top: 0;
}
.pw_gift_popup {
    border: 1px solid #ccc;
    max-width: 648px;
    margin: 0 auto;
    position: fixed;
    z-index: 110000;
    background: #fff;
    box-shadow: 0 0 10px 0 #222;
}
.pw_gift_popup.pw-gift-cart {
    height: 80%;
}
.pw_gift_popup h2 {
    font: 18px sans-serif;
    text-align: center;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.04em;
    padding: 7px 15px;
    margin-top: 0;
    color: #5d6b6c;
    text-shadow: 0 1px rgba(255, 255, 255, 0.7);
    background: #f0f1f2;
    border-bottom: 1px solid #d1d1d1;
    border-radius: 3px 3px 0 0;
    background-image: -webkit-linear-gradient(top, #f5f7fd, #e6eaec);
    background-image: -moz-linear-gradient(top, #f5f7fd, #e6eaec);
    background-image: -o-linear-gradient(top, #f5f7fd, #e6eaec);
    background-image: linear-gradient(to bottom, #f5f7fd, #e6eaec);
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03);
}
.pw-gift-cart.pw_gift_popup h2 {
    margin-bottom: 0!important;
}
.pw_gift_popup_main {
    border: 1px solid #ccc;
    max-width: 648px;
    margin: 0 auto;
    position: fixed;
    z-index: 110000;
    background: #fff;
    box-shadow: 0 0 10px 0 #222;
}
.pw_gift_popup_main h2 {
    font: 18px sans-serif;
    text-align: center;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.04em;
    padding: 7px 15px;
    margin-top: 0;
    color: #5d6b6c;
    text-shadow: 0 1px rgba(255, 255, 255, 0.7);
    background: #f0f1f2;
    border-bottom: 1px solid #d1d1d1;
    border-radius: 3px 3px 0 0;
    background-image: -webkit-linear-gradient(top, #f5f7fd, #e6eaec);
    background-image: -moz-linear-gradient(top, #f5f7fd, #e6eaec);
    background-image: -o-linear-gradient(top, #f5f7fd, #e6eaec);
    background-image: linear-gradient(to bottom, #f5f7fd, #e6eaec);
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 1px rgba(0, 0, 0, 0.03);
}
.pw_gift_popup h2:before{
    display: none!important;
}
.pw-gifts {
    padding: 15px;
    height: calc(100% - 39px);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}

.pw_gift_popup_close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 0px 20px 6px #0000009e;
    font-family: monospace;
    letter-spacing: 2px;
}
.pw_gift_popup_close:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 13px;
    background: #8b8b8b;
    top: 50%;
    margin-top: -7px;
    transform: rotate(-45deg);
}
.pw_gift_popup_close:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 13px;
    background: #8b8b8b;
    top: 50%;
    margin-top: -7px;
    transform: rotate(45deg);
}
.gift-product-stock {
    position: absolute;
    top: 7px;
    left: -10px;
    font-size: 12px;
    background-color: #33a526;
    padding: 2px 10px;
    color: #fff;
    z-index: 9;
}
.gift-product-stock:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 9px 0;
    border-color: transparent #6b6f6a transparent transparent;
    position: absolute;
    left: 0;
    bottom: -9px;
}
@media (max-width: 648px) {
    .pw_gift_popup_main {
           width: 80%
    }    
	.pw_gift_popup {
           width: 80%
    }
}.fl-countdown-cnt{ margin:10px auto 0 auto; display:block;  text-align:center;  }
ul.fl-countdown {
  list-style: none;
  margin: 10px 0!important;
  padding: 0!important;
  display: inline-block;
  text-align: center;
}


ul.fl-countdown.fl-medium li span {
  font-size: 20px;
  font-weight: 300;
  line-height: 20px;
}


/*STYLES*/
/*1*/
ul.fl-countdown.fl-style-1 li { display: inline-block; margin:0; width:auto!important; }
ul.fl-countdown.fl-style-1 li.seperator {
  font-size: 20px;
  line-height: 20px;
  vertical-align: top;
}

ul.fl-countdown.fl-style-1 li p {
  color: #a7abb1;
  font-size: 10px;
  margin:0;
}

/*2*/
ul.fl-countdown.fl-style-2 li { display: inline-block; width:50px; background:#333; -moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px; color:#fff; padding:5px 0;margin:0;  }
ul.fl-countdown.fl-style-2 li.seperator {
  font-size: 20px;
  line-height: 20px;
  vertical-align: top;
  width:5px; background:none!important;
  line-height:40px; color:#000;
}

ul.fl-countdown.fl-style-2 li p {
  color: #fff;
  font-size: 10px;
  margin:0;
}

/*3*/
ul.fl-countdown.fl-style-3 li { display: inline-block; margin:0; width:auto!important;}
	ul.fl-countdown.fl-style-3 li span { padding:0 5px; background:#333; color:#fff;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px; }

ul.fl-countdown.fl-style-3 li.seperator {
  font-size: 20px;
  vertical-align: top;
  width:5px; background:none;
  line-height:15px; color:#000;
}
ul.fl-countdown.fl-style-3.fl-big li.seperator{line-height:20px;}

ul.fl-countdown.fl-style-3 li p {
  color: #333;
  font-size: 10px;
  margin:7px 0 0 0;
}

/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Default Style Settings -

Screen Stylesheet

version:   	5.4.5
date:      	15/05/17
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

#debungcontrolls {
	z-index:100000;
	position:fixed;
	bottom:0px; width:100%;
	height:auto;
	background:rgba(0,0,0,0.6);
	padding:10px;
	box-sizing: border-box;
}

.debugtimeline {
	width:100%;
	height:10px;
	position:relative;
	display:block;
	margin-bottom:3px;	
	display:none;
	white-space: nowrap;	
	box-sizing: border-box;
}

.debugtimeline:hover {
	height:15px;

}

.the_timeline_tester {
	background:#e74c3c;
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	width:0;	
}

.rs-go-fullscreen {
	position:fixed !important;
	width:100% !important;
	height:100% !important;
	top:0px !important;
	left:0px !important;
	z-index:9999999 !important;
	background:#ffffff !important;
}


.debugtimeline.tl_slide .the_timeline_tester {
	background:#f39c12;	
}

.debugtimeline.tl_frame .the_timeline_tester {
	background:#3498db;	
}

.debugtimline_txt {
	color:#fff;
	font-weight: 400;
	font-size:7px;
	position:absolute;	
	left:10px;
	top:0px;
	white-space: nowrap;
	line-height: 10px;
}


.rtl {	direction: rtl;}
@font-face {
  font-family: 'revicons';
  src: url('/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.eot?5510888');
  src: url('/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.eot?5510888#iefix') format('embedded-opentype'),
       url('/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.woff?5510888') format('woff'),
       url('/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.ttf?5510888') format('truetype'),
       url('/wp-content/plugins/revslider/public/assets/fonts/revicons/revicons.svg?5510888#revicons') format('svg');
  font-weight: normal;
  font-style: normal;
}

 [class^="revicon-"]:before, [class*=" revicon-"]:before {
  font-family: "revicons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center; 

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.revicon-search-1:before { content: '\e802'; } /* '' */
.revicon-pencil-1:before { content: '\e831'; } /* '' */
.revicon-picture-1:before { content: '\e803'; } /* '' */
.revicon-cancel:before { content: '\e80a'; } /* '' */
.revicon-info-circled:before { content: '\e80f'; } /* '' */
.revicon-trash:before { content: '\e801'; } /* '' */
.revicon-left-dir:before { content: '\e817'; } /* '' */
.revicon-right-dir:before { content: '\e818'; } /* '' */
.revicon-down-open:before { content: '\e83b'; } /* '' */
.revicon-left-open:before { content: '\e819'; } /* '' */
.revicon-right-open:before { content: '\e81a'; } /* '' */
.revicon-angle-left:before { content: '\e820'; } /* '' */
.revicon-angle-right:before { content: '\e81d'; } /* '' */
.revicon-left-big:before { content: '\e81f'; } /* '' */
.revicon-right-big:before { content: '\e81e'; } /* '' */
.revicon-magic:before { content: '\e807'; } /* '' */
.revicon-picture:before { content: '\e800'; } /* '' */
.revicon-export:before { content: '\e80b'; } /* '' */
.revicon-cog:before { content: '\e832'; } /* '' */
.revicon-login:before { content: '\e833'; } /* '' */
.revicon-logout:before { content: '\e834'; } /* '' */
.revicon-video:before { content: '\e805'; } /* '' */
.revicon-arrow-combo:before { content: '\e827'; } /* '' */
.revicon-left-open-1:before { content: '\e82a'; } /* '' */
.revicon-right-open-1:before { content: '\e82b'; } /* '' */
.revicon-left-open-mini:before { content: '\e822'; } /* '' */
.revicon-right-open-mini:before { content: '\e823'; } /* '' */
.revicon-left-open-big:before { content: '\e824'; } /* '' */
.revicon-right-open-big:before { content: '\e825'; } /* '' */
.revicon-left:before { content: '\e836'; } /* '' */
.revicon-right:before { content: '\e826'; } /* '' */
.revicon-ccw:before { content: '\e808'; } /* '' */
.revicon-arrows-ccw:before { content: '\e806'; } /* '' */
.revicon-palette:before { content: '\e829'; } /* '' */
.revicon-list-add:before { content: '\e80c'; } /* '' */
.revicon-doc:before { content: '\e809'; } /* '' */
.revicon-left-open-outline:before { content: '\e82e'; } /* '' */
.revicon-left-open-2:before { content: '\e82c'; } /* '' */
.revicon-right-open-outline:before { content: '\e82f'; } /* '' */
.revicon-right-open-2:before { content: '\e82d'; } /* '' */
.revicon-equalizer:before { content: '\e83a'; } /* '' */
.revicon-layers-alt:before { content: '\e804'; } /* '' */
.revicon-popup:before { content: '\e828'; } /* '' */

							

/******************************
	-	BASIC STYLES		-
******************************/

.rev_slider_wrapper{
	position:relative;
	z-index: 0;
	width:100%;
}

.rev_slider{
	position:relative;
	overflow:visible;
}

.entry-content .rev_slider a,
.rev_slider a { box-shadow: none; }

.tp-overflow-hidden { 	overflow:hidden !important;}
.group_ov_hidden 	{	overflow:hidden}

.tp-simpleresponsive img,
.rev_slider img{
	max-width:none !important;	
	transition: none;
	margin:0px;
	padding:0px;
	border:none;
}

.rev_slider .no-slides-text{
	font-weight:bold;
	text-align:center;
	padding-top:80px;
}

.rev_slider >ul,
.rev_slider_wrapper >ul,
.tp-revslider-mainul >li,
.rev_slider >ul >li,
.rev_slider >ul >li:before,
.tp-revslider-mainul >li:before,
.tp-simpleresponsive >ul,
.tp-simpleresponsive >ul >li,
.tp-simpleresponsive >ul >li:before,
.tp-revslider-mainul >li,
.tp-simpleresponsive >ul >li{
	list-style:none !important;
	position:absolute;	
	margin:0px !important;
	padding:0px !important;
	overflow-x: visible;
	overflow-y: visible;
	list-style-type: none !important;
	background-image:none;
	background-position:0px 0px;
	text-indent: 0em;
	top:0px;left:0px;
}


.tp-revslider-mainul >li,
.rev_slider >ul >li,
.rev_slider >ul >li:before,
.tp-revslider-mainul >li:before,
.tp-simpleresponsive >ul >li,
.tp-simpleresponsive >ul >li:before,
.tp-revslider-mainul >li,
.tp-simpleresponsive >ul >li { 
	visibility:hidden; 
}

.tp-revslider-slidesli,
.tp-revslider-mainul	{	
	padding:0 !important; 
	margin:0 !important; 
	list-style:none !important;
}

.rev_slider li.tp-revslider-slidesli {
    position: absolute !important;
}


.tp-caption .rs-untoggled-content { display:block;}
.tp-caption .rs-toggled-content { display:none;}

.rs-toggle-content-active.tp-caption .rs-toggled-content { display:block;}
.rs-toggle-content-active.tp-caption .rs-untoggled-content { display:none;}

.rev_slider .tp-caption,
.rev_slider .caption 	{ 
	position:relative;  
	visibility:hidden; 
	white-space: nowrap;
	display: block;	
	-webkit-font-smoothing: antialiased !important;
	z-index:1;
}

.rev_slider .tp-caption,
.rev_slider .caption,
.tp-simpleresponsive img {
	-moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap *:last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap *:last-child{
	margin-bottom:0;

}

.tp-svg-layer svg {	width:100%; height:100%;position: relative;vertical-align: top}

	
/* CAROUSEL FUNCTIONS */
.tp-carousel-wrapper {
	cursor:url(/wp-content/plugins/revslider/public/assets/css/openhand.cur), move;
}
.tp-carousel-wrapper.dragged {
	cursor:url(/wp-content/plugins/revslider/public/assets/css/closedhand.cur), move;
}

/* ADDED FOR SLIDELINK MANAGEMENT */
.tp_inner_padding {	
	box-sizing:border-box;	
	max-height:none !important;	
}


.tp-caption.tp-layer-selectable {
	-moz-user-select: all;
	-khtml-user-select: all;
	-webkit-user-select: all;
	-o-user-select: all;	
}

.tp-forcenotvisible,
.tp-hide-revslider,
.tp-caption.tp-hidden-caption,
.tp-parallax-wrap.tp-hidden-caption {	
	visibility:hidden !important; 
	display:none !important
}

.rev_slider embed,
.rev_slider iframe,
.rev_slider object,
.rev_slider audio,
.rev_slider video {
	max-width: none !important
}

.tp-element-background 	{	position:absolute; top:0px;left:0px; width:100%;height:100%;z-index:0;}

.tp-blockmask,
.tp-blockmask_in,
.tp-blockmask_out { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: #fff; z-index: 1000; transform: scaleX(0) scaleY(0);}

.tp-parallax-wrap { transform-style: preserve-3d }

/***********************************************************
	- 	ZONES / GOUP / ROW / COLUMN LAYERS AND HELPERS 	-
***********************************************************/
.rev_row_zone					{	position:absolute; width:100%;left:0px; box-sizing: border-box;min-height:50px; font-size:0px;}

.rev_row_zone_top 				{	top:0px;}
.rev_row_zone_middle 			{	top:50%; transform:translateY(-50%);}
.rev_row_zone_bottom 			{	bottom:0px;}

.rev_column .tp-parallax-wrap  { vertical-align: top }

.rev_slider .tp-caption.rev_row 	{
	display:table;
	position:relative;
	width:100% !important;
	table-layout: fixed;
	box-sizing: border-box;
	vertical-align: top;
	height:auto !important;
	font-size:0px;
}

.rev_column {	
	display: table-cell;
	position: relative;
	vertical-align: top;
	height: auto;
	box-sizing: border-box;	
	font-size:0px;
}

.rev_column_inner {
	box-sizing: border-box;
	display: block;
	position: relative;
	width:100% !important;
	height:auto !important;
	white-space: normal !important;
}

.rev_column_bg {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 0;
    box-sizing: border-box;
    background-clip: content-box;
    border: 0px solid transparent;
}



.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .tp-loop-wrap,
.rev_column_inner .tp-mask-wrap 			{	text-align: inherit; }
.rev_column_inner .tp-mask-wrap 			{	display: inline-block;}


.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap { position: relative !important; left:auto !important; top:auto !important; line-height: 0px;}

.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,
.rev_column_inner .tp-parallax-wrap .tp-mask-wrap,
.rev_column_inner .tp-parallax-wrap,
.rev_column_inner .rev_layer_in_column { vertical-align: top; }

.rev_break_columns { display: block !important }
.rev_break_columns .tp-parallax-wrap.rev_column  { display:block !important; width:100% !important; }


/**********************************************
	-	FULLSCREEN AND FULLWIDHT CONTAINERS	-
**********************************************/


.fullscreen-container {	
	position:relative;
	padding:0;
}


.fullwidthbanner-container{
	position:relative;
	padding:0;
	overflow:hidden;
}

.fullwidthbanner-container .fullwidthabanner{
	width:100%;
	position:relative;
}



/*********************************
	-	SPECIAL TP CAPTIONS -
**********************************/

.tp-static-layers				{	
	position:absolute; z-index:101; top:0px;left:0px;
	/*pointer-events:none;*/

}

/* new static layers position option */
.tp-static-layers-back {	
	z-index:0;
}


.tp-caption .frontcorner		{
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 0px solid transparent;
	border-top: 40px solid #00A8FF;
	position: absolute;left:-40px;top:0px;
}

.tp-caption .backcorner		{
	width: 0;
	height: 0;
	border-left: 0px solid transparent;
	border-right: 40px solid transparent;
	border-bottom: 40px solid #00A8FF;
	position: absolute;right:0px;top:0px;
}

.tp-caption .frontcornertop		{
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 0px solid transparent;
	border-bottom: 40px solid #00A8FF;
	position: absolute;left:-40px;top:0px;
}

.tp-caption .backcornertop		{
	width: 0;
	height: 0;
	border-left: 0px solid transparent;
	border-right: 40px solid transparent;
	border-top: 40px solid #00A8FF;
	position: absolute;right:0px;top:0px;
}
									
.tp-layer-inner-rotation {	
	position: relative !important;
}		


/***********************************************
	-	SPECIAL ALTERNATIVE IMAGE SETTINGS	-
***********************************************/

img.tp-slider-alternative-image	{	
	width:100%; height:auto;
}


/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/

.rs-background-video-layer 		{	position: absolute;top:0px;left:0px; width:100%;height:100%;visibility: hidden;z-index: 0;}

.tp-caption.coverscreenvideo	{	width:100%;height:100%;top:0px;left:0px;position:absolute;}
.caption.fullscreenvideo,
.tp-caption.fullscreenvideo		{	left:0px; top:0px; position:absolute;width:100%;height:100%}

.caption.fullscreenvideo iframe,
.caption.fullscreenvideo audio,
.caption.fullscreenvideo video,
.tp-caption.fullscreenvideo iframe,
.tp-caption.fullscreenvideo iframe audio,
.tp-caption.fullscreenvideo iframe video	{ width:100% !important; height:100% !important; display: none}

.fullcoveredvideo audio,
.fullscreenvideo audio
.fullcoveredvideo video,
.fullscreenvideo video				{	background: #000}

.fullcoveredvideo .tp-poster		{	background-position: center center;background-size: cover;width:100%;height:100%;top:0px;left:0px}


.videoisplaying .html5vid .tp-poster	{	display: none}

.tp-video-play-button					{	
	background:#000;
	background:rgba(0,0,0,0.3);										
	border-radius:5px;
	position: absolute;
	top: 50%;
	left: 50%;										
	color: #FFF;
	z-index: 3;
	margin-top: -25px;
	margin-left: -25px;
	line-height: 50px !important;
	text-align: center;
	cursor: pointer;
	width: 50px;
	height:50px;
	box-sizing: border-box;
	
	display: inline-block;	
	vertical-align: top;
	z-index: 4;
	opacity: 0;	
	transition:opacity 300ms ease-out !important;				
}

.tp-hiddenaudio,
.tp-audio-html5 .tp-video-play-button { display:none !important;}
.tp-caption .html5vid					{	width:100% !important; height:100% !important;}									
.tp-video-play-button i 				{	width:50px;height:50px; display:inline-block; text-align: center; vertical-align: top; line-height: 50px !important; font-size: 40px !important;}									
.tp-caption:hover .tp-video-play-button	{	opacity: 1; display:block;}
.tp-caption .tp-revstop					{	display:none; border-left:5px solid #fff !important; border-right:5px solid #fff !important;margin-top:15px !important;line-height: 20px !important;vertical-align: top; font-size:25px !important;}
.videoisplaying .revicon-right-dir		{	display:none}
.videoisplaying .tp-revstop				{	display:inline-block}

.videoisplaying  .tp-video-play-button			{	display:none}


.fullcoveredvideo .tp-video-play-button			{	display:none !important}


.fullscreenvideo .fullscreenvideo audio 		{	object-fit:contain !important;}
.fullscreenvideo .fullscreenvideo video 		{	object-fit:contain !important;}

.fullscreenvideo .fullcoveredvideo audio 		{	object-fit:cover !important;}
.fullscreenvideo .fullcoveredvideo video 		{	object-fit:cover !important;}

.tp-video-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 5px;
	opacity: 0;	
	transition: opacity .3s;
	background-image: linear-gradient(to bottom, rgb(0,0,0) 13%, rgb(50,50,50) 100%);		
	display:table;max-width:100%; overflow:hidden;box-sizing:border-box;
}

.tp-caption:hover .tp-video-controls {	opacity: .9;}

.tp-video-button {
	background: rgba(0,0,0,.5);
	border: 0;
	color: #EEE;	
	border-radius: 3px;
	cursor:pointer;
	line-height:12px;
	font-size:12px;
	color:#fff;
	padding:0px;
	margin:0px;
	outline: none;
	}
.tp-video-button:hover 				{	cursor: pointer;}


.tp-video-button-wrap,
.tp-video-seek-bar-wrap,
.tp-video-vol-bar-wrap 				{ 	padding:0px 5px;display:table-cell; vertical-align: middle;}

.tp-video-seek-bar-wrap				{	width:80%}
.tp-video-vol-bar-wrap				{	width:20%}

.tp-volume-bar,
.tp-seek-bar						{	width:100%; cursor: pointer;  outline:none; line-height:12px;margin:0; padding:0;}


.rs-fullvideo-cover					{	width:100%;height:100%;top:0px;left:0px;position: absolute; background:transparent;z-index:5;}


.disabled_lc .tp-video-play-button,
.rs-background-video-layer video::-webkit-media-controls-start-playback-button,
.rs-background-video-layer video::-webkit-media-controls,
.rs-background-video-layer audio::-webkit-media-controls { display:none !important;}
 

.tp-audio-html5 .tp-video-controls {	opacity: 1 !important; visibility: visible !important}

 


/********************************
	-	DOTTED OVERLAYS	-
*********************************/
.tp-dottedoverlay						{	background-repeat:repeat;width:100%;height:100%;position:absolute;top:0px;left:0px;z-index:3}
.tp-dottedoverlay.twoxtwo				{	background:url(/wp-content/plugins/revslider/public/assets/assets/gridtile.png)}
.tp-dottedoverlay.twoxtwowhite			{	background:url(/wp-content/plugins/revslider/public/assets/assets/gridtile_white.png)}
.tp-dottedoverlay.threexthree			{	background:url(/wp-content/plugins/revslider/public/assets/assets/gridtile_3x3.png)}
.tp-dottedoverlay.threexthreewhite		{	background:url(/wp-content/plugins/revslider/public/assets/assets/gridtile_3x3_white.png)}


/******************************
	-	SHADOWS		-
******************************/

.tp-shadowcover	{	width:100%;height:100%;top:0px;left:0px;background: #fff;position: absolute; z-index: -1;}
.tp-shadow1 	{	box-shadow: 0 10px 6px -6px rgba(0,0,0,0.8);}

.tp-shadow2:before, .tp-shadow2:after,
.tp-shadow3:before, .tp-shadow4:after
{
  z-index: -2;
  position: absolute;
  content: "";
  bottom: 10px;
  left: 10px;
  width: 50%;
  top: 85%;
  max-width:300px;
  background: transparent;  
  box-shadow: 0 15px 10px rgba(0,0,0,0.8);
  
  transform: rotate(-3deg);
}

.tp-shadow2:after,
.tp-shadow4:after
{  
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.tp-shadow5
{
  	position:relative;        
    box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.tp-shadow5:before, .tp-shadow5:after
{
	content:"";
    position:absolute; 
    z-index:-2;    
    box-shadow:0 0 25px 0px  rgba(0,0,0,0.6);
    top:30%;
    bottom:0;
    left:20px;
    right:20px;    
    border-radius:100px / 20px;
}

/******************************
	-	BUTTONS	-
*******************************/

.tp-button{
	padding:6px 13px 5px;
	border-radius: 3px;	
	height:30px;
	cursor:pointer;
	color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
	font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
	text-decoration:none;
}

.tp-button.big	{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; }


.purchase:hover,
.tp-button:hover,
.tp-button.big:hover {	background-position:bottom, 15px 11px}

	
/*	BUTTON COLORS	*/

.tp-button.green, .tp-button:hover.green,
.purchase.green, .purchase:hover.green			{ background-color:#21a117;box-shadow:0px 3px 0px 0px #104d0b;}

.tp-button.blue, .tp-button:hover.blue,
.purchase.blue, .purchase:hover.blue			{ background-color:#1d78cb;box-shadow:0px 3px 0px 0px #0f3e68}

.tp-button.red, .tp-button:hover.red,
.purchase.red, .purchase:hover.red				{ background-color:#cb1d1d;box-shadow:0px 3px 0px 0px #7c1212}

.tp-button.orange, .tp-button:hover.orange,
.purchase.orange, .purchase:hover.orange		{ background-color:#ff7700;box-shadow:0px 3px 0px 0px #a34c00}

.tp-button.darkgrey,.tp-button.grey,
.tp-button:hover.darkgrey,.tp-button:hover.grey,
.purchase.darkgrey, .purchase:hover.darkgrey	{ background-color:#555;box-shadow:0px 3px 0px 0px #222}

.tp-button.lightgrey, .tp-button:hover.lightgrey,
.purchase.lightgrey, .purchase:hover.lightgrey	{ background-color:#888;box-shadow:0px 3px 0px 0px #555}



/* TP BUTTONS DESKTOP SIZE */

.rev-btn,
.rev-btn:visited						{ 	outline:none !important; box-shadow:none !important; text-decoration: none !important; line-height: 44px; font-size: 17px; font-weight: 500; padding: 12px 35px; box-sizing:border-box;  font-family: "Roboto", sans-serif;  cursor: pointer;}

.rev-btn.rev-uppercase,
.rev-btn.rev-uppercase:visited			{ 	text-transform: uppercase; letter-spacing: 1px; font-size: 15px; font-weight: 900; }

.rev-btn.rev-withicon i					{ 	font-size: 15px; font-weight: normal; position: relative; top: 0px; transition: all 0.2s ease-out !important; margin-left:10px !important;}

.rev-btn.rev-hiddenicon i				{ 	font-size: 15px; font-weight: normal; position: relative; top: 0px; transition: all 0.2s ease-out !important;  opacity: 0; margin-left:0px !important; width:0px !important;  }
.rev-btn.rev-hiddenicon:hover i			{   opacity: 1 !important; margin-left:10px !important; width:auto !important;}

/* REV BUTTONS MEDIUM */
.rev-btn.rev-medium,
.rev-btn.rev-medium:visited				{	 line-height: 36px; font-size: 14px; padding: 10px 30px; }

.rev-btn.rev-medium.rev-withicon i		{ 	font-size: 14px; top: 0px; }

.rev-btn.rev-medium.rev-hiddenicon i	{ 	font-size: 14px; top: 0px; }


/* REV BUTTONS SMALL */
.rev-btn.rev-small,
.rev-btn.rev-small:visited				{	line-height: 28px; font-size: 12px; padding: 7px 20px; }

.rev-btn.rev-small.rev-withicon i		{	font-size: 12px; top: 0px; }

.rev-btn.rev-small.rev-hiddenicon i		{ 	font-size: 12px; top: 0px; }


/* ROUNDING OPTIONS */
.rev-maxround 							{ 	border-radius: 30px; }
.rev-minround 							{ 	border-radius: 3px; }	


/* BURGER BUTTON */
.rev-burger {
  position: relative;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding: 22px 0 0 14px;
  border-radius: 50%;
  border: 1px solid rgba(51,51,51,0.25);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.rev-burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #333;
  transition: .7s;
  pointer-events: none;
  transform-style: flat !important;
}
.rev-burger span:nth-child(2) {
  margin: 3px 0;
}

#dialog_addbutton .rev-burger:hover :first-child,
.open .rev-burger :first-child,
.open.rev-burger :first-child {
  transform: translateY(6px) rotate(-45deg);
 
}
#dialog_addbutton .rev-burger:hover :nth-child(2),
.open .rev-burger :nth-child(2),
.open.rev-burger :nth-child(2) {
  transform: rotate(-45deg);
 
  opacity: 0;
}
#dialog_addbutton .rev-burger:hover :last-child,
.open .rev-burger :last-child,
.open.rev-burger :last-child {
  transform: translateY(-6px) rotate(-135deg);
 
}

.rev-burger.revb-white {
  border: 2px solid rgba(255,255,255,0.2);
}
.rev-burger.revb-white span {
  background: #fff;
}
.rev-burger.revb-whitenoborder {
  border: 0;
}
.rev-burger.revb-whitenoborder span {
  background: #fff;
}
.rev-burger.revb-darknoborder {
  border: 0;
}
.rev-burger.revb-darknoborder span {
  background: #333;
}

.rev-burger.revb-whitefull {
  background: #fff;
  border:none;
}

.rev-burger.revb-whitefull span {
	background:#333;
}

.rev-burger.revb-darkfull {
  background: #333;
  border:none;
}

.rev-burger.revb-darkfull span {
	background:#fff;
}


/* SCROLL DOWN BUTTON */

@keyframes rev-ani-mouse {
	0% {opacity: 1;top: 29%;}
	15% {opacity: 1;top: 50%;}
	50% {opacity: 0;top: 50%;}
	100% {opacity: 0;top: 29%;}
}
.rev-scroll-btn {
	display: inline-block;
	position: relative;
	left: 0;
	right: 0;
	text-align: center;
	cursor: pointer;
	width:35px;
	height:55px;	
	box-sizing: border-box;
	border: 3px solid white;
	border-radius: 23px;
}
.rev-scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
}
.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *.active {
	color: #ffffff;
}
.rev-scroll-btn > *:hover,
.rev-scroll-btn > *:focus,
.rev-scroll-btn > *:active,
.rev-scroll-btn > *.active {
	opacity: 0.8;
}

.rev-scroll-btn.revs-fullwhite  {
	background:#fff;
}

.rev-scroll-btn.revs-fullwhite span {
	background: #333;	
}

.rev-scroll-btn.revs-fulldark  {
	background:#333;
	border:none;
}

.rev-scroll-btn.revs-fulldark  span {
	background: #fff;	
}

.rev-scroll-btn span {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;	
	animation: rev-ani-mouse 2.5s linear infinite;
}

.rev-scroll-btn.revs-dark {
	border-color:#333;
}
.rev-scroll-btn.revs-dark span {
	background: #333;	
}

.rev-control-btn {
	position: relative;
	display: inline-block;
	z-index: 5;	
	color: #FFF;  
	font-size: 20px;
	line-height: 60px;
	font-weight: 400;
	font-style: normal;
	font-family: Raleway;	
	text-decoration: none;
	text-align: center;
	background-color: #000;	
	border-radius: 50px;	
	text-shadow: none;
	background-color: rgba(0, 0, 0, 0.50);
	width:60px;
	height:60px;
	box-sizing: border-box;
	cursor: pointer;
}

.rev-cbutton-dark-sr	{	
	border-radius: 3px;		
}

.rev-cbutton-light	{	
	color: #333;  	
	background-color: rgba(255,255,255, 0.75);	
}

.rev-cbutton-light-sr	{		
	color: #333;  	
	border-radius: 3px;		
	background-color: rgba(255,255,255, 0.75);
}


.rev-sbutton {	
	line-height: 37px;	
	width:37px;
	height:37px;	
}

.rev-sbutton-blue	{	
	background-color: #3B5998
}
.rev-sbutton-lightblue	{	
	background-color: #00A0D1;
}
.rev-sbutton-red	{	
	background-color: #DD4B39;
}




/************************************
-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	visibility: hidden; width:100%; height:5px; background:#000; background:rgba(0,0,0,0.15); position:absolute; z-index:200; top:0px}
.tp-bannertimer.tp-bottom					{	top:auto; bottom:0px !important;height:5px}



/*********************************************
-	BASIC SETTINGS FOR THE BANNER	-
***********************************************/

 

.tp-caption img {
	background: transparent;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
	zoom:1;
}

.tp-caption img {  }



.caption.slidelink a div,
.tp-caption.slidelink a div {	width:3000px; height:1500px;  background:url(/wp-content/plugins/revslider/public/assets/assets/coloredbg.png) repeat}
.tp-caption.slidelink a span{	background:url(/wp-content/plugins/revslider/public/assets/assets/coloredbg.png) repeat}
.tp-shape {	width:100%;height:100%;}



/*********************************************
-	WOOCOMMERCE STYLES	-
***********************************************/

.tp-caption .rs-starring				{	display: inline-block}


.tp-caption .rs-starring .star-rating {
	float: none;	
	display: inline-block;
    vertical-align: top;
    color: #FFC321 !important;
}


.tp-caption .rs-starring .star-rating, 
.tp-caption .rs-starring-page .star-rating {	
	position: relative;
	height: 1em;	
	width: 5.4em;
	font-family: star;
	font-size: 1em !important;
}

.tp-caption  .rs-starring .star-rating:before, 
.tp-caption  .rs-starring-page .star-rating:before {
	content: "\73\73\73\73\73";
	color: #E0DADF;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.tp-caption .rs-starring .star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
	font-size: 1em !important;
}

.tp-caption .rs-starring .star-rating span:before,
.tp-caption .rs-starring .star-rating span:before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
}




/******************************
	-	LOADER FORMS	-
********************************/

.tp-loader 	{
	top:50%; left:50%;
	z-index:10000;
	position:absolute;
}

.tp-loader.spinner0 {
	width: 40px;
	height: 40px;
	background-color: #fff;
	background-image:url(/wp-content/plugins/revslider/public/assets/assets/loader.gif);
	background-repeat:no-repeat;
	background-position: center center;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);	
	margin-top:-20px;
	margin-left:-20px;	
	animation: tp-rotateplane 1.2s infinite ease-in-out;
	border-radius: 3px;	
}


.tp-loader.spinner1 {
	width: 40px;
	height: 40px;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);	
	margin-top:-20px;
	margin-left:-20px;	
	animation: tp-rotateplane 1.2s infinite ease-in-out;
	border-radius: 3px;	
}



.tp-loader.spinner5 	{	
	background-image:url(/wp-content/plugins/revslider/public/assets/assets/loader.gif);
	background-repeat:no-repeat;
	background-position:10px 10px;
	background-color:#fff;
	margin:-22px -22px;
	width:44px;height:44px;
	border-radius: 3px;	
}


@keyframes tp-rotateplane {
  0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg);} 
  50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);} 
  100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);}
}


.tp-loader.spinner2 {
	width: 40px;
	height: 40px;
	margin-top:-20px;margin-left:-20px;
	background-color: #ff0000;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);	
	border-radius: 100%;	
	animation: tp-scaleout 1.0s infinite ease-in-out;
}


@keyframes tp-scaleout {
  0% {transform: scale(0.0);} 
  100% {transform: scale(1.0);opacity: 0;}
}


.tp-loader.spinner3 {
  margin: -9px 0px 0px -35px;
  width: 70px;
  text-align: center;
}

.tp-loader.spinner3 .bounce1,
.tp-loader.spinner3 .bounce2,
.tp-loader.spinner3 .bounce3 {
  width: 18px;
  height: 18px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);  
  border-radius: 100%;
  display: inline-block;  
  animation: tp-bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */  
  animation-fill-mode: both;
}

.tp-loader.spinner3 .bounce1 {
  animation-delay: -0.32s;
}

.tp-loader.spinner3 .bounce2 {  
  animation-delay: -0.16s;
}

@keyframes tp-bouncedelay {
  0%, 80%, 100% {transform: scale(0.0);} 
  40% {transform: scale(1.0);}
}




.tp-loader.spinner4 {
  margin: -20px 0px 0px -20px;
  width: 40px;
  height: 40px;
  text-align: center;
  animation: tp-rotate 2.0s infinite linear;
}

.tp-loader.spinner4 .dot1,
.tp-loader.spinner4 .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;  
  animation: tp-bounce 2.0s infinite ease-in-out;
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);  
}

.tp-loader.spinner4 .dot2 {
  top: auto;
  bottom: 0px;  
  animation-delay: -1.0s;
}


@keyframes tp-rotate { 100% { transform: rotate(360deg);}}

@keyframes tp-bounce {
  0%, 100% {transform: scale(0.0);} 
  50% { transform: scale(1.0);}
}



/***********************************************
	-  STANDARD NAVIGATION SETTINGS 
***********************************************/


.tp-thumbs.navbar,
.tp-bullets.navbar,
.tp-tabs.navbar					{	border:none; min-height: 0; margin:0; border-radius: 0; }

.tp-tabs,
.tp-thumbs,
.tp-bullets						{	position:absolute; display:block; z-index:1000; top:0px; left:0px;}

.tp-tab,
.tp-thumb 						{	cursor: pointer; position:absolute;opacity:0.5;  box-sizing: border-box;}

.tp-arr-imgholder,
.tp-videoposter,
.tp-thumb-image,
.tp-tab-image					{	background-position: center center; background-size:cover;width:100%;height:100%; display:block; position:absolute;top:0px;left:0px;}

.tp-tab:hover,
.tp-tab.selected,
.tp-thumb:hover,
.tp-thumb.selected				{	opacity:1;}

.tp-tab-mask,
.tp-thumb-mask 					{	box-sizing:border-box !important; }

.tp-tabs,
.tp-thumbs						{	box-sizing:content-box !important; }

.tp-bullet 						{	width:15px;height:15px; position:absolute; background:#fff; background:rgba(255,255,255,0.3); cursor: pointer;}
.tp-bullet.selected,
.tp-bullet:hover				{	background:#fff;}




.tparrows						{	cursor:pointer; background:#000; background:rgba(0,0,0,0.5); width:40px;height:40px;position:absolute; display:block; z-index:1000; }
.tparrows:hover 				{	background:#000;}
.tparrows:before				{	font-family: "revicons"; font-size:15px; color:#fff; display:block; line-height: 40px; text-align: center;}
.tparrows.tp-leftarrow:before	{	content: '\e824'; }
.tparrows.tp-rightarrow:before	{	content: '\e825'; }



/***************************
	- KEN BURNS FIXES -
***************************/

body.rtl .tp-kbimg {left: 0 !important}



/***************************
	- 3D SHADOW MODE -
***************************/

.dddwrappershadow { box-shadow:0 45px 100px rgba(0, 0, 0, 0.4);}

/*******************
	- DEBUG MODE -
*******************/

.hglayerinfo				   {	  position: fixed;
  bottom: 0px;
  left: 0px;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.75);
  padding: 5px 10px;
  z-index: 2000;
  white-space: normal;}
.hginfo 					   { 	position:absolute;top:-2px;left:-2px;color:#e74c3c;font-size:12px;font-weight:600; background:#000;padding:2px 5px;}
.indebugmode .tp-caption:hover { 	border:1px dashed #c0392b !important;}
.helpgrid 					   { 	border:2px dashed #c0392b;position:absolute;top:0px;left:0px;z-index:0 }
#revsliderlogloglog				{	padding:15px;color:#fff;position:fixed; top:0px;left:0px;width:200px;height:150px;background:rgba(0,0,0,0.7); z-index:100000; font-size:10px; overflow:scroll;}



/** 
INSTAGRAM FILTERS BY UNA 
https://una.im/CSSgram/
**/
.aden{filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:relative}._1977 img,.aden img,.brooklyn img,.clarendon img,.earlybird img,.gingham img,.hudson img,.inkwell img,.lark img,.lofi img,.mayfair img,.moon img,.nashville img,.perpetua img,.reyes img,.rise img,.slumber img,.toaster img,.walden img,.willow img,.xpro2 img{width:100%;z-index:1}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:2}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:3}.slumber{filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}
.tp-kbimg-wrap:before,
.tp-kbimg-wrap:after {height:500%;width:500%}

html.remodal-is-locked{overflow:hidden;touch-action:none}.remodal,[data-remodal-id]{display:none}.remodal-overlay{position:fixed;z-index:9999;top:-5000px;right:-5000px;bottom:-5000px;left:-5000px;display:none}.remodal-wrapper{position:fixed;z-index:10000;top:0;right:0;bottom:0;left:0;display:none;overflow:auto;text-align:center;-webkit-overflow-scrolling:touch}.remodal-wrapper:after{display:inline-block;height:100%;margin-left:-.05em;content:""}.remodal-overlay,.remodal-wrapper{backface-visibility:hidden}.remodal{position:relative;outline:0;text-size-adjust:100%}.remodal-is-initialized{display:inline-block}.remodal-bg.remodal-is-opened,.remodal-bg.remodal-is-opening{filter:blur(3px)}.remodal-overlay{background:rgba(45,45,45,.9)}.remodal-overlay.remodal-is-closing,.remodal-overlay.remodal-is-opening{animation-duration:.3s;animation-fill-mode:forwards}.remodal-overlay.remodal-is-opening{animation-name:remodal-overlay-opening-keyframes}.remodal-overlay.remodal-is-closing{animation-name:remodal-overlay-closing-keyframes}.remodal-wrapper{padding:10px 10px 0}.remodal{box-sizing:border-box;width:100%;margin-bottom:10px;transform:translate3d(0,0,0);color:#2b2e38;background:#fff;padding:35px}.remodal .sp-testimonial-pro-item{width:100%;height:100%;max-height:800px;overflow-y:scroll;position:relative}.remodal .sp-testimonial-pro-item::-webkit-scrollbar{width:1px}.remodal .sp-testimonial-pro-item::-webkit-scrollbar-thumb{background-color:none;outline:1px none #708090}.remodal.remodal-is-closing,.remodal.remodal-is-opening{animation-duration:.3s;animation-fill-mode:forwards}.remodal.remodal-is-opening{animation-name:remodal-opening-keyframes}.remodal.remodal-is-closing{animation-name:remodal-closing-keyframes}.remodal,.remodal-wrapper:after{vertical-align:middle}.remodal-close{position:absolute;top:0;right:0;display:block;overflow:visible;width:35px;height:35px;margin:0;padding:0;cursor:pointer;transition:color .2s;text-decoration:none;color:#95979c;border:0;outline:0;background:0 0}.remodal-close:focus,.remodal-close:hover{color:#2b2e38}.remodal-close:before{font-family:Arial,"Helvetica CY","Nimbus Sans L",sans-serif!important;font-size:25px;line-height:35px;position:absolute;top:0;left:0;display:block;width:35px;content:"\00d7";text-align:center}.remodal-cancel,.remodal-confirm{font:inherit;display:inline-block;overflow:visible;min-width:110px;margin:0;padding:12px 0;cursor:pointer;transition:background .2s;text-align:center;vertical-align:middle;text-decoration:none;border:0;outline:0}.remodal-confirm{color:#fff;background:#81c784}.remodal-confirm:focus,.remodal-confirm:hover{background:#66bb6a}.remodal-cancel{color:#fff;background:#e57373}.remodal-cancel:focus,.remodal-cancel:hover{background:#ef5350}.remodal-cancel::-moz-focus-inner,.remodal-close::-moz-focus-inner,.remodal-confirm::-moz-focus-inner{padding:0;border:0}@keyframes remodal-opening-keyframes{from{transform:scale(1.05);opacity:0}to{transform:none;opacity:1;filter:blur(0)}}@keyframes remodal-closing-keyframes{from{transform:scale(1);opacity:1}to{transform:scale(.95);opacity:0;filter:blur(0)}}@keyframes remodal-overlay-opening-keyframes{from{opacity:0}to{opacity:1}}@keyframes remodal-overlay-closing-keyframes{from{opacity:1}to{opacity:0}}@media only screen and (min-width:641px){.remodal{max-width:700px}}.lt-ie9 .remodal-overlay{background:#2b2e38}.lt-ie9 .remodal{width:700px}@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity,1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}.bx-wrapper{position:relative;margin-bottom:60px;padding:0;-ms-touch-action:pan-y;touch-action:pan-y}.bx-wrapper img{max-width:100%;display:block}.bxslider{margin:0;padding:0}ul.bxslider{list-style:none}.bx-viewport{-webkit-transform:translatez(0)}.bx-wrapper{background:0 0}.bx-wrapper .bx-controls-auto,.bx-wrapper .bx-pager{position:absolute;bottom:-30px;width:100%}.bx-wrapper .bx-loading{min-height:50px;background:url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/images/spinner.svg) center center no-repeat #fff;height:100%;width:100%;position:absolute;top:0;left:0;z-index:2000}.bx-wrapper .bx-pager{text-align:center;font-size:.85em;font-family:Arial;font-weight:700;color:#666;padding-top:20px}.bx-wrapper .bx-pager.bx-default-pager a{background:#666;text-indent:-9999px;display:block;width:10px;height:10px;margin:0 5px;outline:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.bx-wrapper .bx-pager.bx-default-pager a.active,.bx-wrapper .bx-pager.bx-default-pager a:focus,.bx-wrapper .bx-pager.bx-default-pager a:hover{background:#000}.bx-wrapper .bx-controls-auto .bx-controls-auto-item,.bx-wrapper .bx-pager-item{display:inline-block;vertical-align:bottom}.bx-wrapper .bx-pager-item{font-size:0;line-height:0}.bx-wrapper .bx-prev{left:10px;background:url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/css/images/controls.png) no-repeat 0 -32px}.bx-wrapper .bx-prev:focus,.bx-wrapper .bx-prev:hover{background-position:0 0}.bx-wrapper .bx-next{right:10px;background:url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/css/images/controls.png) no-repeat -43px -32px}.bx-wrapper .bx-next:focus,.bx-wrapper .bx-next:hover{background-position:-43px 0}.bx-wrapper .bx-controls-direction a{position:absolute;top:50%;margin-top:-16px;outline:0;width:32px;height:32px;text-indent:-9999px;z-index:9999}.bx-wrapper .bx-controls-direction a.disabled{display:none}.bx-wrapper .bx-controls-auto{text-align:center}.bx-wrapper .bx-controls-auto .bx-start{display:block;text-indent:-9999px;width:10px;height:11px;outline:0;background:url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/css/images/controls.png) -86px -11px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-start.active,.bx-wrapper .bx-controls-auto .bx-start:focus,.bx-wrapper .bx-controls-auto .bx-start:hover{background-position:-86px 0}.bx-wrapper .bx-controls-auto .bx-stop{display:block;text-indent:-9999px;width:9px;height:11px;outline:0;background:url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/css/images/controls.png) -86px -44px no-repeat;margin:0 3px}.bx-wrapper .bx-controls-auto .bx-stop.active,.bx-wrapper .bx-controls-auto .bx-stop:focus,.bx-wrapper .bx-controls-auto .bx-stop:hover{background-position:-86px -33px}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager{text-align:left;width:80%}.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto{right:0;width:35px}.bx-wrapper .bx-caption{position:absolute;bottom:0;left:0;background:#666;background:rgba(80,80,80,.75);width:100%}.bx-wrapper .bx-caption span{color:#fff;font-family:Arial;display:block;font-size:.85em;padding:10px}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{background:0 0;top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}.mfp-iframe-holder button.mfp-close:focus,.mfp-iframe-holder button.mfp-close:hover{outline:0;background-color:transparent}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}div.sp-testimonial-pro-wrapper{position:relative}div.sp-testimonial-pro-wrapper .sp-testimonial-pro-section-content,div.sp-testimonial-pro-wrapper .sp-testimonial-pro-section-thumb,div.sp-testimonial-pro-wrapper .swiper-container{overflow:hidden}.sp-testimonial-pro-wrapper .sp-tpro-config,.sp-testimonial-pro-wrapper .sp-tpro-rm-config{display:none}.sp-testimonial-pro-section .sp-testimonial-pro-item:focus{outline:0}.tpro-client-testimonial .tpro-testimonial-text,.tpro-client-testimonial p:last-of-type{display:inline;margin:0;padding:0}.tpro-client-testimonial .tpro-testimonial-text iframe,.tpro-client-testimonial .tpro-testimonial-text video{max-width:100%}.sp-testimonial-pro-section .sp-tpro-items,.sp-testimonial-pro-section.tpro-layout-filter-standard .sp-tpro-isotope-items,.sp-testimonial-pro-section.tpro-layout-grid-standard{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}[class*=tpro-col-]{position:relative;min-height:1px;display:inline-block;vertical-align:top;box-sizing:border-box}.tpro-col-xl-1{-ms-flex:0 0 100%;flex:0 0 100%;width:100%}.tpro-col-xl-2{-ms-flex:0 0 50%;flex:0 0 50%;width:50%}.tpro-col-xl-3{-ms-flex:0 0 33.22222222%;flex:0 0 33.22222222%;width:33.22222222%}.tpro-col-xl-4{-ms-flex:0 0 24.9%;flex:0 0 24.9%;width:24.9%}.tpro-col-xl-5{-ms-flex:0 0 19.9%;flex:0 0 19.9%;width:19.9%}.tpro-col-xl-6{-ms-flex:0 0 16.66666666666667%;flex:0 0 16.66666666666667%;width:16.66666666666667%}.sp-testimonial-pro a:focus{outline:0}.sp-testimonial-pro .tpro-client-designation-company a,.sp-testimonial-pro .tpro-client-image a,.sp-testimonial-pro .tpro-client-website a{text-decoration:none!important;border-bottom:0 solid!important;-webkit-box-shadow:0 0!important;-moz-box-shadow:0 0!important;box-shadow:0 0!important}.tpro-preloader{background-color:#fff;background-repeat:no-repeat;background-position:center center;position:absolute;z-index:90;width:100%;height:100%;text-align:center;top:0;left:0;right:0;border:0}.tpro-preloader img{position:relative;top:50%;margin-top:-16px;display:inline-block;text-align:center}.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-two .sp-tpro-img:before,.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-two .sp-tpro-video:before,.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-two img,.sp-tpro-modal-testimonial .tpro-client-image.tpro-image-style-two img{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-three .sp-tpro-img:before,.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-three .sp-tpro-video:before,.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-three img,.sp-tpro-modal-testimonial .tpro-client-image.tpro-image-style-three img{-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-three .sptestimonial-lazy .sp-tpro-img:before,.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-three .sptestimonial-lazy .sp-tpro-video:before,.sp-testimonial-pro-section .tpro-client-image.tpro-image-style-three .sptestimonial-lazy img,.sp-tpro-modal-testimonial .tpro-client-image.tpro-image-style-three .sptestimonial-lazy img{border-radius:0}.sp-tpro-modal-testimonial .tpro-client-image img{margin:0 auto;max-width:100%;height:auto}.sp-testimonial-pro .tpro-client-image img.tpro-grayscale-normal_on_hover{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.sp-testimonial-pro .tpro-client-image:hover img.tpro-grayscale-normal_on_hover{-webkit-filter:grayscale(0);filter:grayscale(0)}.sp-testimonial-pro .tpro-client-image:hover img.tpro-grayscale-on_hover{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.sp-testimonial-pro .tpro-client-image img.tpro-grayscale-always{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.sp-testimonial-pro-section .tpro-client-image .sp-tpro-img,.sp-testimonial-pro-section .tpro-client-image .sp-tpro-video{position:relative;display:inline-block}.sp-testimonial-pro-section .tpro-client-image .sp-tpro-img i.fa,.sp-testimonial-pro-section .tpro-client-image .sp-tpro-video i.fa{position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;font-size:32px;width:32px;height:32px;font-weight:400;color:#e2e2e2;z-index:3}.sp-testimonial-pro-section .tpro-client-image .sp-tpro-img:before,.sp-testimonial-pro-section .tpro-client-image .sp-tpro-video:before{content:"";width:100%;height:100%;position:absolute;top:0;left:0;right:0;bottom:0;-webkit-transition:all .4s;-moz-transition:all .4s;-ms-transition:all .4s;-o-transition:all .4s;transition:all .4s;z-index:2}.sp-testimonial-pro-section .tpro-client-image .sp-tpro-img:hover:before,.sp-testimonial-pro-section .tpro-client-image .sp-tpro-video:hover:before{background-color:transparent!important}.sp-testimonial-pro-section .tpro-client-image a.sp-tpro-img img,.sp-testimonial-pro-section .tpro-client-image a.sp-tpro-video img{display:block!important}.sp-testimonial-pro-section .tpro-client-image .sp-tpro-img:before{background:rgba(51,51,51,.4)}.sp-testimonial-iframe-wrapper iframe,.sp-testimonial-iframe-wrapper video{max-width:100%;position:absolute;top:0;left:0;width:100%;height:100%}.sp-testimonial-iframe-wrapper{overflow:hidden;position:relative;padding-bottom:56.25%;height:0;-webkit-overflow-scrolling:touch;min-width:120px}.sp-tpro-modal-testimonial .tpro-client-image{margin-bottom:22px}.sp-tpro-modal-testimonial .tpro-testimonial-title{margin-bottom:18px}.sp-tpro-modal-testimonial .tpro-client-testimonial{margin-bottom:20px}.sp-tpro-modal-testimonial .tpro-client-testimonial iframe{max-width:100%}.sp-tpro-modal-testimonial .tpro-client-designation-company,.sp-tpro-modal-testimonial .tpro-client-name{margin:0 0 8px 0}.sp-tpro-modal-testimonial .tpro-client-email,.sp-tpro-modal-testimonial .tpro-client-location{margin-bottom:5px}.sp-tpro-modal-testimonial .tpro-client-phone{margin-bottom:3px}.sp-tpro-modal-testimonial .tpro-client-website,.sp-tpro-modal-testimonial .tpro-testimonial-date{margin-bottom:6px}.sp-tpro-modal-testimonial .tpro-client-rating{margin:0 0 6px 0;text-align:center;color:#f3bb00}.sp-tpro-modal-testimonial .tpro-client-rating i.fa{font-size:19px;margin-right:-1px}.sp-tpro-modal-testimonial .tpro-social-profile a,.tpro-social-profile a{width:30px;height:30px;display:inline-block;text-align:center;overflow:hidden;font-size:16px;line-height:30px;margin-right:6px;margin-bottom:6px;-webkit-transition:all .4s;-moz-transition:all .4s;-ms-transition:all .4s;-o-transition:all .4s;transition:all .4s;box-shadow:0 0 0}.sp-tpro-modal-testimonial .tpro-social-profile a:last-child,.tpro-social-profile a:last-child{margin-right:0}.tpro-social-profile a.tpro-facebook{color:#fff;background:#3b5998}.tpro-social-profile a.tpro-twitter{color:#fff;background:#00acee}.tpro-social-profile a.tpro-linkedin{color:#fff;background:#0072b1}.tpro-social-profile a.tpro-skype{color:#fff;background:#00aff0}.tpro-social-profile a.tpro-dropbox{color:#fff;background:#3d9ae8}.tpro-social-profile a.tpro-wordpress{color:#fff;background:#21759b}.tpro-social-profile a.tpro-vimeo{color:#fff;background:#1ab7ea}.tpro-social-profile a.tpro-slideshare{color:#fff;background:#0077b5}.tpro-social-profile a.tpro-vk{color:#fff;background:#45668e}.tpro-social-profile a.tpro-tumblr{color:#fff;background:#35465c}.tpro-social-profile a.tpro-yahoo{color:#fff;background:#410093}.tpro-social-profile a.tpro-pinterest{color:#fff;background:#e60023}.tpro-social-profile a.tpro-youtube{color:#fff;background:red}.tpro-social-profile a.tpro-stumbleupon{color:#fff;background:#eb4924}.tpro-social-profile a.tpro-reddit{color:#fff;background:#ff4500}.tpro-social-profile a.tpro-quora{color:#fff;background:#a82400}.tpro-social-profile a.tpro-yelp{color:#fff;background:#af0606}.tpro-social-profile a.tpro-weibo{color:#fff;background:#df2029}.tpro-social-profile a.tpro-product-hunt{color:#fff;background:#da552f}.tpro-social-profile a.tpro-hacker-news{color:#fff;background:#ff4000}.tpro-social-profile a.tpro-soundcloud{color:#fff;background:#f30}.tpro-social-profile a.tpro-whatsapp{color:#fff;background:#25d366}.tpro-social-profile a.tpro-medium{color:#fff;background:#00ab6c}.tpro-social-profile a.tpro-vine{color:#fff;background:#00b488}.tpro-social-profile a.tpro-slack{color:#fff;background:#e01563}.tpro-social-profile a.tpro-instagram{color:#fff;background:#c13584}.tpro-social-profile a.tpro-dribbble{color:#fff;background:#ea4c89}.tpro-social-profile a.tpro-flickr{color:#fff;background:#0063dc}.tpro-social-profile a.tpro-foursquare{color:#fff;background:#f94877}.tpro-social-profile a.tpro-behance{color:#fff;background:#1769ff}.tpro-social-profile a.tpro-snapchat{color:#262626;background:#fffc00}.tpro-social-profile a.tpro-github{color:#fff;background:#333}.tpro-social-profile a.tpro-bitbucket{color:#fff;background:#205081}.tpro-social-profile a.tpro-stack-overflow{color:#fff;background:#f48024}.tpro-social-profile a.tpro-codepen{color:#fff;background:#131417}.sp-testimonial-pro-section .sp-testimonial-pro:focus{outline:0}.sp-testimonial-pro-section *{box-sizing:border-box}.sp-testimonial-pro-section.tpro-style-theme-eight .tpro-client-image img,.sp-testimonial-pro-section.tpro-style-theme-one .tpro-client-image img,.sp-testimonial-pro-section.tpro-style-theme-ten .tpro-client-image img{display:inline-block;max-width:100%;height:auto}.tpro-client-image img:focus{outline:0}.sp-testimonial-pro-section img{height:auto}.sp-testimonial-pro-section .tpro-client-company-image img{max-width:100%;height:auto}.sp-testimonial-pro-section .tpro-client-rating{line-height:1}.sp-testimonial-pro-section .tpro-client-rating i.fa{font-size:19px;margin-right:2px}.sp-testimonial-pro-wrapper .sp-testimonial-carousel-wrapper{position:relative}.sp-testimonial-pro-section .tpro-button-next,.sp-testimonial-pro-section .tpro-button-prev{font-size:20px;line-height:32px;display:block;width:32px;height:32px;padding:0;cursor:pointer;outline:0;position:absolute;text-align:center;z-index:22;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease}.sp-testimonial-pro-wrapper .tpro-arrow.vertical_center,.sp-testimonial-pro-wrapper .tpro-arrow.vertical_center_inner_hover,.sp-testimonial-pro-wrapper .tpro-arrow.vertical_inner,.sp-testimonial-pro-wrapper .tpro-arrow.vertical_outer{top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sp-testimonial-pro-wrapper .tpro-arrow.vertical_outer,.sp-testimonial-pro-wrapper .tpro-button-next.vertical_center{right:0;left:auto}.sp-testimonial-pro-wrapper .tpro-arrow.vertical_outer,.sp-testimonial-pro-wrapper .tpro-button-prev.vertical_center{right:auto;left:0}.sp-testimonial-pro-wrapper:hover .tpro-arrow.vertical_center_inner_hover,.sp-testimonial-pro-wrapper:hover .tpro-arrow.vertical_outer{opacity:1}.tpro-button-next.tpro-arrow.swiper-button-next.vertical_center_inner_hover{right:-50px}.tpro-button-prev.tpro-arrow.swiper-button-prev.vertical_center_inner_hover{left:-50px}.sp-testimonial-pro-wrapper .tpro-arrow.bottom_right{bottom:15px;right:0;top:auto}.sp-testimonial-pro-wrapper .tpro-button-prev.tpro-arrow.bottom_right{right:44px;left:auto}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .show_on_hover.tpro-button-prev{left:-35px;opacity:0}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .show_on_hover.tpro-button-next{right:-35px;opacity:0}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .show_on_hover:hover .tpro-button-next{right:2px;opacity:1}.sp-testimonial-pro-wrapper .tpro-arrow.bottom_center{top:auto;bottom:40px;left:calc(50% + 5px);text-align:center}.sp-testimonial-pro-wrapper .tpro-button-prev.tpro-arrow.bottom_center{right:auto;left:calc(50% - 35px)}.sp-testimonial-pro-wrapper .tpro-arrow.bottom_left{top:auto;bottom:15px;left:40px}.sp-testimonial-pro-wrapper .tpro-button-prev.tpro-arrow.bottom_left{right:auto;left:0}.sp-testimonial-pro-wrapper .tpro-arrow.top_left{top:0;left:0;text-align:center}.sp-testimonial-pro-wrapper .tpro-button-next.tpro-arrow.top_left{right:auto;left:40px}.sp-testimonial-pro-wrapper .tpro-arrow.top_center{top:-5px;left:calc(50% + 5px);text-align:center}.sp-testimonial-pro-wrapper .tpro-button-prev.tpro-arrow.top_center{right:auto;left:calc(50% - 35px)}.sp-testimonial-pro-wrapper .tpro-arrow.top_right{top:0;right:0}.sp-testimonial-pro-wrapper .tpro-button-prev.tpro-arrow.top_right{right:40px;left:auto}.sp-testimonial-pro-wrapper .tpro-arrow:after{content:"";display:none}.sp-testimonial-pro-section .sp-testimonial-pagination{padding:0;list-style:none;text-align:center}.sp-testimonial-pro-section .sp-testimonial-pagination .swiper-pagination-bullet:focus{outline:0}.sp-testimonial-pro-section .sp-testimonial-pagination .swiper-pagination-bullet:not(.sp_testimonial-number-pagination){display:inline-block;padding:0;width:12px;height:12px;line-height:12px;margin:3px;overflow:hidden;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;text-indent:-999px;background-image:none;border:0;cursor:pointer;opacity:1}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .sp-testimonial-pagination.sp_testimonial-pagination-strokes .swiper-pagination-bullet{border-radius:0;border-radius:2px;height:5px;width:20px}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .sp-testimonial-pagination.sp_testimonial-pagination-fraction{display:flex;justify-content:center}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .sp-testimonial-pagination .sp_testimonial-swiper-pagination-fraction{height:50px;width:50px;border:1px solid;border-radius:50%;font-size:14px;display:flex;justify-content:center;align-items:center;background:#d9e3e8}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .sp_testimonial-number-pagination.swiper-pagination-bullet{width:20px;height:20px;text-align:center;line-height:12px;overflow:hidden;font-size:12px;color:#000;opacity:1;background:rgba(0,0,0,.2);padding-top:4px;font-weight:500}.sp-testimonial-pro-wrapper .sp-testimonial-pro-section .sp_testimonial-number-pagination.swiper-pagination-bullet.swiper-pagination-bullet-active{color:#fff}.swiper-pagination-bullet.swiper-pagination-bullet-active{background-color:#666}.sp-testimonial-ajax-pagination,ul.sp-tpro-pagination{display:inline-block;padding-left:0;border-radius:4px;width:100%}.sp-testimonial-ajax-pagination a,ul.sp-tpro-pagination li{display:inline}.sp-testimonial-ajax-pagination a,ul.sp-tpro-pagination li a,ul.sp-tpro-pagination li span{position:relative;margin-right:5px;line-height:38px;text-decoration:none;font-weight:600;font-size:16px;height:38px;width:38px;box-sizing:content-box;text-align:center;padding:0;border-radius:3px;display:inline-block}.sp-testimonial-ajax-pagination a{display:inline-block;text-decoration:none!important}.sp-testimonial-ajax-pagination a:first-child,ul.sp-tpro-pagination li:first-child a,ul.sp-tpro-pagination li:first-child span{margin-left:0}.sp-testimonial-ajax-pagination .ajax-page-numbers.current,.sp-testimonial-ajax-pagination .page-numbers.current{cursor:auto;color:#fff;background:#63a37b;border-color:#63a37b}.tpro-filter-load-more,.tpro-items-load-more{text-align:center;margin:50px auto;width:100%}.tpro-filter-load-more span,.tpro-items-load-more span{cursor:pointer;text-decoration:none;font-size:14px;color:#5e5e5e;border:2px solid #bbb;font-weight:600;border-radius:3px;background:#fff;padding:10px 16px;-webkit-transition:all .33s;transition:all .33s;text-transform:uppercase}.tpro-filter-load-more span:hover,.tpro-items-load-more span:hover{background:#bbb;color:#fff}.filter-pagination.hidden,.sp-testimonial-ajax-pagination.hidden{display:none}.sp-testimonial-pro-wrapper .infinite_scroll .tpro-items-load-more{display:none!important}.sp-testimonial-pro-section.sp_testimonial_pro_filter .isotope-item{z-index:2}.sp-testimonial-pro-section.sp_testimonial_pro_filter .isotope-hidden.isotope-item{z-index:1}.sp-testimonial-pro-section.sp_testimonial_pro_filter .isotope,.sp-testimonial-pro-section.sp_testimonial_pro_filter .isotope .isotope-item{-webkit-transition-duration:.8s;-moz-transition-duration:.8s;transition-duration:.8s}.sp-testimonial-pro-section.sp_testimonial_pro_filter .isotope{-webkit-transition-property:height,width;-moz-transition-property:height,width;transition-property:height,width}.sp-testimonial-pro-section.sp_testimonial_pro_filter .isotope .isotope-item{-webkit-transition-property:-webkit-transform,opacity;-moz-transition-property:-moz-transform,opacity;transition-property:transform,opacity}.sp-testimonial-pro-section.sp_testimonial_pro_filter ul.sp-tpro-items-filter{margin:0;padding:0;display:inline-block}.sp-testimonial-pro-section.sp_testimonial_pro_filter ul.sp-tpro-items-filter li{list-style:none;float:left;margin:4px 0}.sp-testimonial-pro-section.sp_testimonial_pro_filter ul.sp-tpro-items-filter li a{padding:8px 16px;margin-right:8px;border-radius:3px;display:inline-block;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;text-transform:uppercase;font-weight:600;text-decoration:none}.sp-testimonial-pro-section.sp_testimonial_pro_filter ul.sp-tpro-items-filter li:last-child a{margin-right:0}.sp-testimonial-pro-section-thumb{max-width:530px;margin:0 auto;margin-right:auto!important}.sp-testimonial-pro-section-content .sp-testimonial-pro-item{padding-right:0!important}.sp-testimonial-pro-section-thumb .sp-testimonial-pro-item .tpro-client-image{text-align:center!important}.sp-testimonial-pro-section-thumb .sp-testimonial-pro-item{padding-right:5px!important;padding-left:5px!important}.sp-testimonial-pro-section-thumb .sp-testimonial-pro-item .tpro-client-image img{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);filter:grayscale(100%);-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-o-transition:all .3s;transition:all .3s;cursor:pointer;display:inline-block;max-width:100%;height:auto}.sp-testimonial-pro-section-thumb .sp-testimonial-pro-item .tpro-client-image img:hover,.sp-testimonial-pro-section-thumb .swiper-slide-active.sp-testimonial-pro-item .tpro-client-image img{-webkit-filter:grayscale(0);-moz-filter:grayscale(0);filter:grayscale(0)}.page-load-status{padding-top:20px;text-align:center;color:#777}.page-load-status .loader-ellips{font-size:20px;position:relative;width:4em;height:1em;margin:10px auto;display:none}.page-load-status .loader-ellips__dot{display:block;width:1em;height:1em;border-radius:.5em;background:#555;position:absolute;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.page-load-status .loader-ellips__dot:nth-child(1),.page-load-status .loader-ellips__dot:nth-child(2){left:0}.page-load-status .loader-ellips__dot:nth-child(3){left:1.5em}.page-load-status .loader-ellips__dot:nth-child(4){left:3em}@-webkit-keyframes reveal{from{-webkit-transform:scale(.001);transform:scale(.001)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes reveal{from{-webkit-transform:scale(.001);transform:scale(.001)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes slide{to{-webkit-transform:translateX(1.5em);transform:translateX(1.5em)}}@keyframes slide{to{-webkit-transform:translateX(1.5em);transform:translateX(1.5em)}}.page-load-status .loader-ellips__dot:nth-child(1){-webkit-animation-name:reveal;animation-name:reveal}.page-load-status .loader-ellips__dot:nth-child(2),.page-load-status .loader-ellips__dot:nth-child(3){-webkit-animation-name:slide;animation-name:slide}.page-load-status .loader-ellips__dot:nth-child(4){-webkit-animation-name:reveal;animation-name:reveal;animation-direction:reverse}.page-load-status .infinite-scroll-error{display:none}.page-load-status .infinite-scroll-last{color:#212121;font-size:16px;margin:0 auto;display:none;padding:4px 8px}.tpro-style-theme-five.sp-testimonial-pro-section .tpro-client-name,.tpro-style-theme-five.sp-testimonial-pro-section .tpro-testimonial-title .sp-tpro-testimonial-title,.tpro-style-theme-four.sp-testimonial-pro-section .tpro-testimonial-title .sp-tpro-testimonial-title{clear:unset}.sp-testimonial-pro-section .testimonial_page_load_status_alignment{width:100%}.remodal-wrapper{z-index:99999}img.mfp-img{padding-bottom:0!important}.sp-testimonial-pro-section .sp-testimonial-pro-item.ast-article-single{padding:0}.site .sp-testimonial-pro-section .sp-testimonial-pro-item a:focus:not(.wp-block-button__link):not(.wp-block-file__button),.site .sp-testimonial-pro-section .sp-testimonial-pro-item a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img{outline:0;background:0 0}.sp-testimonial-lightbox button:not(:hover):not(:active):not(.has-background){background-color:transparent}.sp-testimonial-lightbox button.mfp-close{font-size:28px}.sp-testimonial-lightbox button.mfp-close:focus,.sp-testimonial-lightbox button.mfp-close:hover{outline:0;background-color:transparent}.average-rating-section{text-align:center;margin-bottom:25px}.average-rating-section .tpro-client-rating{font-size:16px}.average-rating-section .tpro-client-rating .fa{color:#ffb900;margin-right:2px}.average-rating-section .average-rating-text{font-size:22px;font-weight:600;margin-bottom:10px}.sp-testimonial-pro-section .sptp-testimonial-extra-fields .sptp-testimonial-extra-info .fa{margin-right:5px}.sp-testimonial-pro-section .sptp-testimonial-extra-fields .sptp-testimonial-extra-info a{text-decoration:none}.sp-testimonial-carousel .swiper-container{position:initial}.sp-testimonial-carousel .swiper-grid-column>.swiper-wrapper{flex-direction:row}.sp-testimonial-fade-carousel .swiper-slide{display:flex}[dir=rtl].sp-testimonial-fade-carousel .swiper-slide{flex-direction:row-reverse}.sp-testimonial-carousel .bx-wrapper{border:none;background:0 0;box-shadow:none;margin:auto}.sp-testimonial-item{direction:ltr}html[dir=rtl] .sp-testimonial-item{direction:rtl}.tpro-layout-slider-ticker.sp-testimonial-pro-read-more.tpro-readmore-expand-true .bx-viewport{height:auto!important}.swiper-grid-column .sp-testimonial-pro-item.swiper-slide{margin-top:0!important}.sp-testimonial-pro a:focus{outline:0}@media (min-width:980px) and (max-width:1280px){.tpro-col-lg-1{-ms-flex:0 0 100%;flex:0 0 100%;width:100%}.tpro-col-lg-2{-ms-flex:0 0 50%;flex:0 0 50%;width:50%}.tpro-col-lg-3{-ms-flex:0 0 33.22222222%;flex:0 0 33.22222222%;width:33.22222222%}.tpro-col-lg-4{-ms-flex:0 0 24.9%;flex:0 0 24.9%;width:24.9%}.tpro-col-lg-5{-ms-flex:0 0 19.9%;flex:0 0 19.9%;width:19.9%}.tpro-col-lg-6{-ms-flex:0 0 16.66666666666667%;flex:0 0 16.66666666666667%;width:16.66666666666667%}}@media (min-width:736px) and (max-width:979px){.tpro-col-md-1{-ms-flex:0 0 100%;flex:0 0 100%;width:100%}.tpro-col-md-2{-ms-flex:0 0 50%;flex:0 0 50%;width:50%}.tpro-col-md-3{-ms-flex:0 0 33.22222222%;flex:0 0 33.22222222%;width:33.22222222%}.tpro-col-md-4{-ms-flex:0 0 24.9%;flex:0 0 24.9%;width:24.9%}.tpro-col-md-5{-ms-flex:0 0 19.9%;flex:0 0 19.9%;width:19.9%}.tpro-col-md-6{-ms-flex:0 0 16.66666666666667%;flex:0 0 16.66666666666667%;width:16.66666666666667%}}@media (min-width:480px) and (max-width:735px){.tpro-col-sm-1{-ms-flex:0 0 100%;flex:0 0 100%;width:100%}.tpro-col-sm-2{-ms-flex:0 0 50%;flex:0 0 50%;width:50%}.tpro-col-sm-3{-ms-flex:0 0 33.22222222%;flex:0 0 33.22222222%;width:33.22222222%}.tpro-col-sm-4{-ms-flex:0 0 24.9%;flex:0 0 24.9%;width:24.9%}.tpro-col-sm-5{-ms-flex:0 0 19.9%;flex:0 0 19.9%;width:19.9%}.tpro-col-sm-6{-ms-flex:0 0 16.66666666666667%;flex:0 0 16.66666666666667%;width:16.66666666666667%}}@media (max-width:479px){.tpro-col-xs-1{-ms-flex:0 0 100%;flex:0 0 100%;width:100%}.tpro-col-xs-2{-ms-flex:0 0 50%;flex:0 0 50%;width:50%}.tpro-col-xs-3{-ms-flex:0 0 33.22222222%;flex:0 0 33.22222222%;width:33.22222222%}.tpro-col-xs-4{-ms-flex:0 0 24.9%;flex:0 0 24.9%;width:24.9%}.tpro-col-xs-5{-ms-flex:0 0 19.9%;flex:0 0 19.9%;width:19.9%}.tpro-col-xs-6{-ms-flex:0 0 16.66666666666667%;flex:0 0 16.66666666666667%;width:16.66666666666667%}}.sptestimonial-lazy{cursor:pointer;margin:auto;display:block}.sptestimonial-lazy img{position:absolute;width:100%;height:auto;opacity:.7;transition:opacity .5s cubic-bezier(.4,0,1,1);top:50%;left:50%;transform:translate(-50%,-50%)}.sptestimonial-lazy img.fadeout{opacity:0}.sptestimonial-lazy button{width:48px;height:36px;cursor:pointer;outline:0;border:none;background-color:transparent;background-color:#212121;transition:background-color .1s cubic-bezier(.4,0,1,1),opacity .1s cubic-bezier(.4,0,1,1);box-shadow:0 0 30px rgba(0,0,0,.6);z-index:1;opacity:.8;border-radius:6px;top:50%;left:50%;transform:translate3d(-50%,-50%,0);position:absolute}.sptestimonial-lazy button:before{content:'';border-style:solid;border-width:8px 0 8px 16px;border-color:transparent transparent transparent #fff;top:50%;left:50%;transform:translate3d(-50%,-50%,0);position:absolute}.sptestimonial-lazy[data-type=youtube]:hover button{background-color:red;opacity:1}.sptestimonial-lazy[data-type=vimeo]:hover button{background-color:#00adef;opacity:1}.sptestimonial-lazy iframe{height:100%;width:100%;position:absolute;top:0;left:0;background:#000}.sp-testimonial-dir .bx-wrapper .bx-viewport{direction:ltr}.sp-testimonial-pro-wrapper .sp_testimonial_search{margin-bottom:40px}.sp-testimonial-pro-wrapper .sp_testimonial_search input{width:400px;margin-left:5px;height:44px;padding:0 32px 0 10px;border-radius:4px;border:1px solid #ccc;background-color:#fff;display:inline-block;max-width:100%}.sp-testimonial-pro-wrapper .sp_testimonial_search label{color:#5e5e5e;font-size:14px;position:relative;display:inline-block;max-width:100%}.sp-testimonial-pro-wrapper .sp_testimonial_search label::after{position:absolute;right:10px;content:"\f002";font-family:FontAwesome;top:50%;transform:translate(-4px,-50%);font-size:16px;color:#4444}.sp-testimonial-live-filter{margin-bottom:25px;text-align:center}.sp-testimonial-live-filter .button-group.filters-button-group .button{cursor:pointer;text-transform:uppercase;margin-right:10px;padding:8px 16px;background-color:transparent;border:2px solid #bbb;border-radius:3px;color:#5e5e5e;font-weight:700;font-size:14px;line-height:1.5;margin-bottom:5px}.sp-testimonial-live-filter .button-group.filters-button-group button.is-checked{color:#fff;border-color:#1595ce;background-color:#1595ce}.sp-testimonial-live-filter .button-group.filters-button-group button:focus,.sp-testimonial-live-filter .filterSelect:focus-visible{outline:0;text-decoration:none;box-shadow:none}.sp-testimonial-live-filter .filterSelect{margin:5px 0;padding:8px 10px;background-color:#1595ce;color:#fff;border-radius:5px;border:none;background-position-x:calc(100% - 15px);background-position-y:center}.sp-testimonial-live-filter .filterSelect option{background-color:#fff;color:#5e5e5e}.sp-testimonial-pro-wrapper.sp-testimonial-carousel .sp-testimonial-pro-section.flip_vertically{max-height:900px}.sp-testimonial-pro-wrapper.sp-testimonial-carousel .sp-testimonial-pro-section.flip_vertically .swiper-pagination-bullets{left:0;top:unset;bottom:125px;width:100%;right:25px;display:flex;flex-direction:row;justify-content:center;transform:translate3d(0,0,0)}@font-face{font-family:spt-fontello;src:url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/font/fontello.eot?62374776);src:url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/font/fontello.eot?62374776#iefix) format('embedded-opentype'),url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/font/fontello.woff2?62374776) format('woff2'),url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/font/fontello.woff?62374776) format('woff'),url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/font/fontello.ttf?62374776) format('truetype'),url(/wp-content/plugins/testimonial-pro/src/Frontend/assets/font/fontello.svg?62374776#fontello) format('svg');font-weight:400;font-style:normal}[class*=" spt-icon-"]:before,[class^=spt-icon-]:before{font-family:spt-fontello;font-style:normal;font-weight:400;speak:never;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.spt-icon-quote:before{content:'\e800'}@font-face{font-family:sptpro-fontello;src:url(/wp-content/plugins/testimonial-pro/src/Admin/assets/font/fontello.eot?88160524);src:url(/wp-content/plugins/testimonial-pro/src/Admin/assets/font/fontello.eot?88160524#iefix) format('embedded-opentype'),url(/wp-content/plugins/testimonial-pro/src/Admin/assets/font/fontello.woff2?88160524) format('woff2'),url(/wp-content/plugins/testimonial-pro/src/Admin/assets/font/fontello.woff?88160524) format('woff'),url(/wp-content/plugins/testimonial-pro/src/Admin/assets/font/fontello.ttf?88160524) format('truetype'),url(/wp-content/plugins/testimonial-pro/src/Admin/assets/font/fontello.svg?88160524#fontello) format('svg');font-weight:400;font-style:normal}[class*=" sptpro-icon-"]:before,[class^=sptpro-icon-]:before{font-family:sptpro-fontello;font-style:normal;font-weight:400;speak:never;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.sptpro-icon-arrow-triangle-left:before{content:'\e800'}.sptpro-icon-miscellaneous:before{content:'\e801'}.sptpro-icon-right-open-1:before{content:'\e802'}.sptpro-icon-navigation:before{content:'\e803'}.sptpro-icon-right-open-big:before{content:'\e804'}.sptpro-icon-lightbox-general:before{content:'\e805'}.sptpro-icon-right-open-outline:before{content:'\e806'}.sptpro-icon-right:before{content:'\e807'}.sptpro-icon-form-style:before{content:'\e808'}.sptpro-icon-notifications:before{content:'\e80a'}.sptpro-icon-cog:before{content:'\e80b'}.sptpro-icon-pagination:before{content:'\e811'}.sptpro-icon-left-open-2:before{content:'\e814'}.sptpro-icon-form-editor:before{content:'\e815'}.sptpro-icon-right-open-3:before{content:'\e816'}.sptpro-icon-arrow-triangle-right:before{content:'\e817'}.sptpro-icon-left:before{content:'\e818'}.sptpro-icon-left-open-4:before{content:'\e820'}.sptpro-icon-left-open-outline:before{content:'\e821'}.sptpro-icon-left-open-big:before{content:'\e822'}.sptpro-icon-rt:before{content:'\e842'}.sptpro-icon-right-open:before{content:'\f006'}.sptpro-icon-left-open:before{content:'\f007'}.sptpro-icon-angle-left:before{content:'\f104'}.sptpro-icon-angle-right:before{content:'\f105'}.sptpro-icon-demo_link:before{content:'\e81a'}.sptpro-icon-quote-left:before{content:'\f10d'}.sptpro-icon-reviewer-info:before{content:'\e83f'}.sptpro-icon-social:before{content:'\e839'}.sptpro-icon-testimonial-content:before{content:'\e83a'}.sptpro-icon-video-testimonial:before{content:'\e840'}.sptpro-icon-display-general:before{content:'\e80c'}.sptpro-icon-theme-styles:before{content:'\e83e'}.sptpro-icon-reviewer-image:before{content:'\e825'}.sptpro-icon-basic-preferences:before{content:'\e826'}.sptpro-icon-notification-messages:before{content:'\e824'}.sptpro-icon-awaiting-notification:before{content:'\e809'}.sptpro-icon-admin-notification:before{content:'\e80d'}.sptpro-icon-approval-notification:before{content:'\e80e'}.wac-qty-button {
   border: none;
    padding: 2px 10px;
    position: absolute;
    background: #fff;
    font-weight: 600;
    font-size: 21px;
    margin: 2px 10px;
	z-index:10;
		top:0;
}

.wac-quantity {
    width: 120px !important;
    font-weight: bold;
	text-align:center;
	position:relative;
}

.wac-quantity input.qty {
	display:block;
	text-align:center;
}

a.wac-qty-button.wac-btn-sub{
	left:0;
}

a.wac-qty-button.wac-btn-inc{
	right:0;
}

table.shop_table.shop_table_responsive tr td.product-quantity .input-text{
	max-width:100% !important;
}

table.shop_table.shop_table_responsive.cart td.product-quantity:before{
	display:none;
}/*************** Slider ************/
.slick-loading .slick-list{ background: #fff url('/wp-content/plugins/wp-responsive-recent-post-slider/assets/css/ajax-loader.gif') center center no-repeat;}
.slick-slider{ position: relative;display: block; -moz-box-sizing: border-box;box-sizing: border-box; -webkit-user-select: none;-moz-user-select: none;-ms-user-select: none; user-select: none;  -webkit-touch-callout: none;-khtml-user-select: none;-ms-touch-action: pan-y;touch-action: pan-y;-webkit-tap-highlight-color: transparent;}
.slick-list{position: relative;display: block; overflow: hidden;  margin: 0; padding: 0;}
.slick-list:focus{outline: none;}
.slick-list.dragging{ cursor: pointer; cursor: hand;}
.slick-slider .slick-track,
.slick-slider .slick-list{-webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
.slick-track{position: relative;top: 0;left: 0;display: block;}
.slick-track:before, .slick-track:after{display: table;content: '';}
.slick-track:after{clear: both;}
.slick-loading .slick-track{ visibility: hidden;}
.slick-slide{ display: none; float: left; height: 100%; min-height: 1px;}
[dir='rtl'] .slick-slide{float: right;}
.slick-slide img{ display: block;}
.slick-slide.slick-loading img{ display: none;}
.slick-slide.dragging img{ pointer-events: none;}
.slick-initialized .slick-slide{ display: block;}
.slick-loading .slick-slide{ visibility: hidden;}
.slick-vertical .slick-slide{display: block; height: auto; border: 1px solid transparent;}
.slick-arrow.slick-hidden {display: none;}/************************************************************
				Box Sizing
************************************************************/
.wpcolumn, .wpcolumns  {-webkit-box-sizing: border-box; -moz-box-sizing: border-box;box-sizing: border-box;}
.recent-post-slider * {-webkit-box-sizing: border-box; -moz-box-sizing: border-box;box-sizing: border-box;}

/************************************************************
				Clearfix
************************************************************/
.wppsac-clearfix:before, .wppsac-clearfix:after{content: "";display: table;}
.wppsac-clearfix::after{clear: both;}
.wppsac-clearfix{clear: both;}

/************************************************************
				Slick slider
************************************************************/
.recent-post-slider{visibility: hidden; opacity:0; transition:opacity 0.5s linear;}
.recent-post-slider.slick-initialized { visibility: visible; opacity:1;}
.wppsac-hide{display:none;}
.recent-post-slider .slick-arrow{text-indent:-99999px;}
.recent-post-slider button.slick-arrow {background-color: transparent!important; cursor:pointer; width:30px; height:45px; position:absolute; z-index:9; border:0px !important;padding:0 !important; margin:0px !important; border-radius:0px !important;}
.recent-post-slider button.slick-next, .recent-post-slider button.slick-next:hover, .recent-post-slider button.slick-next:focus{background:rgba(0,0,0,0.5) url(/wp-content/plugins/wp-responsive-recent-post-slider/assets/css/arrow-right.png) center center no-repeat !important; background-size:25px 25px !important; outline:none !important; box-shadow: none;}
.recent-post-slider button.slick-prev, .recent-post-slider button.slick-prev:hover, .recent-post-slider button.slick-prev:focus{background:rgba(0,0,0,0.5) url(/wp-content/plugins/wp-responsive-recent-post-slider/assets/css/arrow-left.png) center center no-repeat !important; background-size:25px 25px !important;  outline:none !important; box-shadow: none;}
.recent-post-slider .slick-dots{padding:0 !important; margin:0 !important; position:absolute;  text-align:center;}
.recent-post-slider .slick-dots li button{text-indent:-99999px;}
.recent-post-slider .slick-dots li {list-style:none !important; display:inline-block !important; margin:0 2px !important; padding:0px !important;}
.recent-post-slider .slick-dots li button{background:#fff !important; margin:0px !important; padding:0px !important; border:1px solid #000; border-radius:50% !important; width:13px !important; height:13px !important;}
.recent-post-slider .slick-dots li button:focus{outline:none !important}
.recent-post-slider button:active{box-shadow: none;}
.recent-post-slider .slick-dots li.slick-active button{background:#444 !important;}
.recent-post-slider .slick-slide{padding:0px !important}
.post-overlay{ position:relative;}
.recent-post-slider .wp-post-content a.readmorebtn {padding: 5px 10px;border: 1px solid #e7e7e7;text-decoration: none;margin: 5px 0; font-size:14px;}
.wp-post-content {padding-bottom: 10px;}
.wp-sub-content {padding-bottom: 10px;}
.recent-post-slider h2.wp-post-title{margin:5px 0 !important; line-height:22px;}
.recent-post-slider h2.wp-post-title a{font-size:22px; line-height:22px;}
.recent-post-slider .wp-post-date{margin-bottom:10px; position:relative; font-size:13px;}
.recent-post-slider .wp-post-date::after {  background: #e96656; bottom: -4px;content: "";height: 2px; left: 0; margin: auto ; position: absolute; width: 50px; z-index: 1;}
.recent-post-slider .recentpost-categories ul.post-categories{margin:0px 0px 10px 0 !important; padding:0px !important; list-style:none !important; font-size: 0;}
.recent-post-slider .recentpost-categories ul.post-categories li{display:inline-block !important; margin: 2px !important; padding: 0 !important;}
.recent-post-slider .recentpost-categories ul.post-categories li a{padding:5px 13px; text-transform:uppercase; font-size:11px; text-decoration:none; color: #fff; display: block; line-height: normal;}
.recent-post-slider .recentpost-categories ul.post-categories li:nth-child(4n+1) a{background:#1abc9c;}
.recent-post-slider .recentpost-categories ul.post-categories li:nth-child(4n+2) a{background:#3498db;}
.recent-post-slider .recentpost-categories ul.post-categories li:nth-child(4n+3) a{background:#e74c3c;}
.recent-post-slider .recentpost-categories ul.post-categories li:nth-child(4n+4) a{background:#34495e;}

.recent-post-slider .post-image-bg img{height: 100%;width: 100%;object-fit: cover;object-position: top center;border-radius: 0px;}

/***************Design-1**************/
.recent-post-slider.design-1 .post-content-position{position:relative} 
.recent-post-slider.design-1 .post-content-left{position:absolute !important; left:0; bottom: 0px; z-index:999; }
.recent-post-slider.design-1 .post-content-left a {color:#fff;}

.recent-post-slider.design-1 .post-image-bg{height: 23px; line-height: 0; overflow: hidden; position: relative; width: 100%; margin:5px 0;}
.recent-post-slider.design-1 .wp-post-content p{color:#fff;}
.recent-post-slider.design-1 .slick-arrow {bottom:0px !important; top:auto !important;}
.recent-post-slider.design-1 .slick-next{right:0px !important;}
.recent-post-slider.design-1 .slick-prev{right:31px !important; left:auto !important;}
.recent-post-slider.design-1 .slick-dots{left:15px !important;  bottom:2px !important;}

/***************Design-2**************/
.recent-post-slider.design-2 .post-content-position{position:relative;}
.recent-post-slider.design-2 .post-content-left{position:absolute !important; left:0; top:0; bottom:0; background:rgba(0, 0, 0, 0.5); z-index:999; color:#fff;}
.recent-post-slider.design-2 .post-content-left a{color:#fff;}
.recent-post-slider.design-2 .post-content-left{padding: 33px 20px;}
.recent-post-slider.design-2 .post-image-bg{background: #f1f1f1;height: 350px; line-height: 0; overflow: hidden; position: relative; width: 100%;}
.recent-post-slider.design-2 .wp-post-content p{color:#fff;}
.recent-post-slider.design-2 .slick-arrow {bottom:0px !important; top:auto !important;}
.recent-post-slider.design-2 .slick-next{right:0px !important;}
.recent-post-slider.design-2 .slick-prev{right:31px !important; left:auto !important;}
.recent-post-slider.design-2 .slick-dots{left:15px !important;  bottom:2px !important;}
.recent-post-slider.design-2 .recentpost-inner-content {width: 100%; max-height: 100%; overflow: hidden;}

/***************Design-3**************/
.recent-post-slider.design-3 .post-image-bg{background: #f1f1f1;height: 350px;line-height: 0; overflow: hidden; position: relative; width: 100%;}
.recent-post-slider.design-3 .post-short-content{height: 46%;clear:both; background: rgba(51, 51, 51, 0.5);bottom: 0; color: #fff; left: 0; padding: 15px 30px 35px 30px; position: absolute; right: 0; transition: all 0.5s ease-in-out 0s;}
.recent-post-slider.design-3 .wp-post-content	{ opacity: 0; height:0; transition: all 0.5s ease-in-out 0s;}
.recent-post-slider.design-3 .post-overlay:hover > .post-short-content .wp-post-content{opacity:1;height:auto;}
.recent-post-slider.design-3 .post-overlay:hover > .post-short-content {height:70%;}
.recent-post-slider.design-3 .recentpost-categories{left: 0;top: 0px;position: absolute;}
.recent-post-slider.design-3 .recentpost-categories ul.post-categories li{margin: 0 2px 2px 0 !important;}
.recent-post-slider.design-3 h2.wp-post-title a,
.recent-post-slider.design-3 .wp-post-content a.readmorebtn,
.recent-post-slider.design-3 .wp-post-content p{color: #fff;}
.recent-post-slider.design-3 .slick-arrow {bottom:0px !important; top:auto !important;}
.recent-post-slider.design-3 .slick-next{right:0px !important;}
.recent-post-slider.design-3 .slick-prev{right:31px !important; left:auto !important;}
.recent-post-slider.design-3 .slick-dots{left:15px !important; bottom:2px !important;}

/***************Design-4**************/
.recent-post-slider.design-4 .post-list-content, .recent-post-slider.design-4 .post-list{width:100%; float:left; clear:both;}
.recent-post-slider.design-4 .post-list-content .wp-post-title a{color:#444; text-decoration:none;}
.recent-post-slider.design-4 .post-image-bg{background: #f1f1f1;height: 230px;line-height: 0; overflow: hidden; position: relative; width: 100%;}
.recent-post-slider.design-4 .recentpost-categories {margin-top: 0;}
.recent-post-slider.design-4 .recentpost-categories a{color:#fff;}
.recent-post-slider.design-4 .wp-medium-5{padding: 0px 10px 0 0;}
.recent-post-slider.design-4 .post-list-content .wp-medium-7{padding:10px 35px 10px 15px;}
.recent-post-slider.design-4 .slick-arrow{top:50% ;transform: translateY(-50%);-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);}
.recent-post-slider.design-4 .slick-next{right:0px !important;}
.recent-post-slider.design-4 .slick-prev{left:0px !important;}
.recent-post-slider.design-4 .slick-dots{left: 0;right: 0;}
.recent-post-slider.design-4 .wp-post-content a.readmorebtn {color: #444; border-color: #444;}

.wpcolumn,
.wpcolumns {  padding-left: 0.9375em;  padding-right: 0.9375em; width:100%; float: left;  position: relative; }

 @media only screen and (max-width: 768px) { 
 .recent-post-slider.design-1 .post-image-bg img, .recent-post-slider.design-2 .post-image-bg img, .recent-post-slider.design-3 .post-image-bg img{max-width:700px !important}
 }
 
 @media only screen and (max-width: 500px) { 
 .recent-post-slider.design-1 .post-image-bg img, .recent-post-slider.design-2 .post-image-bg img, .recent-post-slider.design-3 .post-image-bg img{max-width:600px !important}
 .recent-post-slider.design-1 .wp-post-content,  .recent-post-slider.design-2 .wp-post-content,  .recent-post-slider.design-3 .wp-post-content{display:none}
 }

@media only screen {
  .wpcolumn,  .wpcolumns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em; float: left; }
}
 @media only screen and (min-width: 40.0625em) {  
  .wpcolumn,
  .wpcolumns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left; }

  .wp-medium-1 {width: 8.33333%;}
  .wp-medium-2 {width: 16.66667%;}
  .wp-medium-3 {width: 25%;}
  .wp-medium-4 {width: 33.33333%;}
  .wp-medium-5 {width: 41.66667%;}
  .wp-medium-6 {width: 50%;}
  .wp-medium-7 {width: 58.33333%;}
  .wp-medium-8 {width: 66.66667%;}
  .wp-medium-9 {width: 75%;}
  .wp-medium-10 {width: 83.33333%;}
  .wp-medium-11 {width: 91.66667%;}
  .wp-medium-12 {width: 100%;}

  .medium-offset-0 {margin-left: 0 !important;}
  .medium-offset-1 {margin-left: 8.33333% !important;}
  .medium-offset-2 {margin-left: 16.66667% !important;}
  .medium-offset-3 {margin-left: 25% !important;}
  .medium-offset-4 {margin-left: 33.33333% !important;}
  .medium-offset-5 {margin-left: 41.66667% !important;}
  .medium-offset-6 {margin-left: 50% !important;}
  .medium-offset-7 {margin-left: 58.33333% !important;}
  .medium-offset-8 {margin-left: 66.66667% !important;}
  .medium-offset-9 {margin-left: 75% !important;}
  .medium-offset-10 {margin-left: 83.33333% !important;}
  .medium-offset-11 {margin-left: 91.66667% !important;}
}.awdr_discount_bar{
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}.yith-infs-loader {
	text-align: center;
	margin: 10px 0 30px;
}
.yith-infs-loader img {
	max-width: 100%;
	display: inline-block;
}

/* Fade In */

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.yith-infs-animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}/*!
 * Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active{outline:0}a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*,::after,::before{text-shadow:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}@-ms-viewport{width:device-width}@viewport{width:device-width}html{font-size:16px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1rem;line-height:1.5;color:#373a3c;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #818a91}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}a{color:#0275d8;text-decoration:none}a:focus,a:hover{color:#014c8c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}pre{margin-top:0;margin-bottom:1rem}figure{margin:0 0 1rem}img{vertical-align:middle}[role=button]{cursor:pointer}[role=button],a,area,button,input,label,select,summary,textarea{-ms-touch-action:manipulation;touch-action:manipulation}table{background-color:transparent}caption{padding-top:.75rem;padding-bottom:.75rem;color:#818a91;text-align:left;caption-side:bottom}th{text-align:left}label{display:inline-block;margin-bottom:.5rem}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,select,textarea{margin:0;line-height:inherit;border-radius:0}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}input[type=search]{-webkit-box-sizing:inherit;box-sizing:inherit;-webkit-appearance:none}output{display:inline-block}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}h5{font-size:1.25rem}h6{font-size:1rem}.h1{font-size:2.5rem}.h2{font-size:2rem}.h3{font-size:1.75rem}.h4{font-size:1.5rem}.h5{font-size:1.25rem}.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300}.display-2{font-size:5.5rem;font-weight:300}.display-3{font-size:4.5rem;font-weight:300}.display-4{font-size:3.5rem;font-weight:300}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:5px}.dl-horizontal{margin-right:-1.875rem;margin-left:-1.875rem}.dl-horizontal::after{display:table;clear:both;content:""}.initialism{font-size:90%;text-transform:uppercase}.blockquote{padding:.5rem 1rem;margin-bottom:1rem;font-size:1.25rem;border-left:.25rem solid #eceeef}.blockquote-footer{display:block;font-size:80%;line-height:1.5;color:#818a91}.blockquote-footer::before{content:"\2014 \00A0"}.blockquote-reverse{padding-right:1rem;padding-left:0;text-align:right;border-right:.25rem solid #eceeef;border-left:0}.blockquote-reverse .blockquote-footer::before{content:""}.blockquote-reverse .blockquote-footer::after{content:"\00A0 \2014"}.carousel-inner>.carousel-item>a>img,.carousel-inner>.carousel-item>img,.img-fluid{display:block;max-width:100%;height:auto}.img-rounded{border-radius:.3rem}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:.25rem;line-height:1.5;background-color:#fff;border:1px solid #ddd;border-radius:.25rem;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#818a91}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:.2rem .4rem;font-size:90%;color:#bd4147;background-color:#f7f7f9;border-radius:.25rem}kbd{padding:.2rem .4rem;font-size:90%;color:#fff;background-color:#333;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;margin-top:0;margin-bottom:1rem;font-size:90%;line-height:1.5;color:#373a3c}pre code{padding:0;font-size:inherit;color:inherit;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:.9375rem;padding-left:.9375rem;margin-right:auto;margin-left:auto}.container::after{display:table;clear:both;content:""}@media (min-width:544px){.container{max-width:576px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:940px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{padding-right:.9375rem;padding-left:.9375rem;margin-right:auto;margin-left:auto}.container-fluid::after{display:table;clear:both;content:""}.row{margin-right:-.9375rem;margin-left:-.9375rem}.row::after{display:table;clear:both;content:""}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:.9375rem;padding-left:.9375rem}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-1{width:8.333333%}.col-xs-2{width:16.666667%}.col-xs-3{width:25%}.col-xs-4{width:33.333333%}.col-xs-5{width:41.666667%}.col-xs-6{width:50%}.col-xs-7{width:58.333333%}.col-xs-8{width:66.666667%}.col-xs-9{width:75%}.col-xs-10{width:83.333333%}.col-xs-11{width:91.666667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.333333%}.col-xs-pull-2{right:16.666667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.333333%}.col-xs-pull-5{right:41.666667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.333333%}.col-xs-pull-8{right:66.666667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.333333%}.col-xs-pull-11{right:91.666667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.333333%}.col-xs-push-2{left:16.666667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.333333%}.col-xs-push-5{left:41.666667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.333333%}.col-xs-push-8{left:66.666667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.333333%}.col-xs-push-11{left:91.666667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.333333%}.col-xs-offset-2{margin-left:16.666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.333333%}.col-xs-offset-5{margin-left:41.666667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.333333%}.col-xs-offset-8{margin-left:66.666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.333333%}.col-xs-offset-11{margin-left:91.666667%}.col-xs-offset-12{margin-left:100%}@media (min-width:544px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-1{width:8.333333%}.col-sm-2{width:16.666667%}.col-sm-3{width:25%}.col-sm-4{width:33.333333%}.col-sm-5{width:41.666667%}.col-sm-6{width:50%}.col-sm-7{width:58.333333%}.col-sm-8{width:66.666667%}.col-sm-9{width:75%}.col-sm-10{width:83.333333%}.col-sm-11{width:91.666667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.333333%}.col-sm-pull-2{right:16.666667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.333333%}.col-sm-pull-5{right:41.666667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.333333%}.col-sm-pull-8{right:66.666667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.333333%}.col-sm-pull-11{right:91.666667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.333333%}.col-sm-push-2{left:16.666667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.333333%}.col-sm-push-5{left:41.666667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.333333%}.col-sm-push-8{left:66.666667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.333333%}.col-sm-push-11{left:91.666667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.333333%}.col-sm-offset-2{margin-left:16.666667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.333333%}.col-sm-offset-5{margin-left:41.666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.333333%}.col-sm-offset-8{margin-left:66.666667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.333333%}.col-sm-offset-11{margin-left:91.666667%}.col-sm-offset-12{margin-left:100%}}@media (min-width:768px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-1{width:8.333333%}.col-md-2{width:16.666667%}.col-md-3{width:25%}.col-md-4{width:33.333333%}.col-md-5{width:41.666667%}.col-md-6{width:50%}.col-md-7{width:58.333333%}.col-md-8{width:66.666667%}.col-md-9{width:75%}.col-md-10{width:83.333333%}.col-md-11{width:91.666667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.333333%}.col-md-pull-2{right:16.666667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.333333%}.col-md-pull-5{right:41.666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.333333%}.col-md-pull-8{right:66.666667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.333333%}.col-md-pull-11{right:91.666667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.333333%}.col-md-push-2{left:16.666667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.333333%}.col-md-push-5{left:41.666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.333333%}.col-md-push-8{left:66.666667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.333333%}.col-md-push-11{left:91.666667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.333333%}.col-md-offset-2{margin-left:16.666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.333333%}.col-md-offset-5{margin-left:41.666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.333333%}.col-md-offset-8{margin-left:66.666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.333333%}.col-md-offset-11{margin-left:91.666667%}.col-md-offset-12{margin-left:100%}}@media (min-width:992px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-1{width:8.333333%}.col-lg-2{width:16.666667%}.col-lg-3{width:25%}.col-lg-4{width:33.333333%}.col-lg-5{width:41.666667%}.col-lg-6{width:50%}.col-lg-7{width:58.333333%}.col-lg-8{width:66.666667%}.col-lg-9{width:75%}.col-lg-10{width:83.333333%}.col-lg-11{width:91.666667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.333333%}.col-lg-pull-2{right:16.666667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.333333%}.col-lg-pull-5{right:41.666667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.333333%}.col-lg-pull-8{right:66.666667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.333333%}.col-lg-pull-11{right:91.666667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.333333%}.col-lg-push-2{left:16.666667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.333333%}.col-lg-push-5{left:41.666667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.333333%}.col-lg-push-8{left:66.666667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.333333%}.col-lg-push-11{left:91.666667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.333333%}.col-lg-offset-2{margin-left:16.666667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.333333%}.col-lg-offset-5{margin-left:41.666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.333333%}.col-lg-offset-8{margin-left:66.666667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.333333%}.col-lg-offset-11{margin-left:91.666667%}.col-lg-offset-12{margin-left:100%}}@media (min-width:1200px){.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9{float:left}.col-xl-1{width:8.333333%}.col-xl-2{width:16.666667%}.col-xl-3{width:25%}.col-xl-4{width:33.333333%}.col-xl-5{width:41.666667%}.col-xl-6{width:50%}.col-xl-7{width:58.333333%}.col-xl-8{width:66.666667%}.col-xl-9{width:75%}.col-xl-10{width:83.333333%}.col-xl-11{width:91.666667%}.col-xl-12{width:100%}.col-xl-pull-0{right:auto}.col-xl-pull-1{right:8.333333%}.col-xl-pull-2{right:16.666667%}.col-xl-pull-3{right:25%}.col-xl-pull-4{right:33.333333%}.col-xl-pull-5{right:41.666667%}.col-xl-pull-6{right:50%}.col-xl-pull-7{right:58.333333%}.col-xl-pull-8{right:66.666667%}.col-xl-pull-9{right:75%}.col-xl-pull-10{right:83.333333%}.col-xl-pull-11{right:91.666667%}.col-xl-pull-12{right:100%}.col-xl-push-0{left:auto}.col-xl-push-1{left:8.333333%}.col-xl-push-2{left:16.666667%}.col-xl-push-3{left:25%}.col-xl-push-4{left:33.333333%}.col-xl-push-5{left:41.666667%}.col-xl-push-6{left:50%}.col-xl-push-7{left:58.333333%}.col-xl-push-8{left:66.666667%}.col-xl-push-9{left:75%}.col-xl-push-10{left:83.333333%}.col-xl-push-11{left:91.666667%}.col-xl-push-12{left:100%}.col-xl-offset-0{margin-left:0}.col-xl-offset-1{margin-left:8.333333%}.col-xl-offset-2{margin-left:16.666667%}.col-xl-offset-3{margin-left:25%}.col-xl-offset-4{margin-left:33.333333%}.col-xl-offset-5{margin-left:41.666667%}.col-xl-offset-6{margin-left:50%}.col-xl-offset-7{margin-left:58.333333%}.col-xl-offset-8{margin-left:66.666667%}.col-xl-offset-9{margin-left:75%}.col-xl-offset-10{margin-left:83.333333%}.col-xl-offset-11{margin-left:91.666667%}.col-xl-offset-12{margin-left:100%}}.table{width:100%;max-width:100%;margin-bottom:1rem}.table td,.table th{padding:.75rem;line-height:1.5;vertical-align:top;border-top:1px solid #eceeef}.table thead th{vertical-align:bottom;border-bottom:2px solid #eceeef}.table tbody+tbody{border-top:2px solid #eceeef}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #eceeef}.table-bordered td,.table-bordered th{border:1px solid #eceeef}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover tbody tr:hover{background-color:#f5f5f5}.table-active,.table-active>td,.table-active>th{background-color:#f5f5f5}.table-hover .table-active:hover{background-color:#e8e8e8}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:#e8e8e8}.table-success,.table-success>td,.table-success>th{background-color:#dff0d8}.table-hover .table-success:hover{background-color:#d0e9c6}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#d0e9c6}.table-info,.table-info>td,.table-info>th{background-color:#d9edf7}.table-hover .table-info:hover{background-color:#c4e3f3}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#c4e3f3}.table-warning,.table-warning>td,.table-warning>th{background-color:#fcf8e3}.table-hover .table-warning:hover{background-color:#faf2cc}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#faf2cc}.table-danger,.table-danger>td,.table-danger>th{background-color:#f2dede}.table-hover .table-danger:hover{background-color:#ebcccc}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#ebcccc}.table-responsive{display:block;width:100%;min-height:.01%;overflow-x:auto}.thead-inverse th{color:#fff;background-color:#373a3c}.thead-default th{color:#55595c;background-color:#eceeef}.table-inverse{color:#eceeef;background-color:#373a3c}.table-inverse.table-bordered{border:0}.table-inverse td,.table-inverse th,.table-inverse thead th{border-color:#55595c}.table-reflow thead{float:left}.table-reflow tbody{display:block;white-space:nowrap}.table-reflow td,.table-reflow th{border-top:1px solid #eceeef;border-left:1px solid #eceeef}.table-reflow td:last-child,.table-reflow th:last-child{border-right:1px solid #eceeef}.table-reflow tbody:last-child tr:last-child td,.table-reflow tbody:last-child tr:last-child th,.table-reflow tfoot:last-child tr:last-child td,.table-reflow tfoot:last-child tr:last-child th,.table-reflow thead:last-child tr:last-child td,.table-reflow thead:last-child tr:last-child th{border-bottom:1px solid #eceeef}.table-reflow tr{float:left}.table-reflow tr td,.table-reflow tr th{display:block!important;border:1px solid #eceeef}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#55595c;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:.25rem}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{border-color:#66afe9;outline:0}.form-control::-webkit-input-placeholder{color:#999;opacity:1}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999;opacity:1}.form-control::placeholder{color:#999;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#eceeef;opacity:1}.form-control:disabled{cursor:not-allowed}.form-control-file,.form-control-range{display:block}.form-control-label{padding:.375rem .75rem;margin-bottom:0}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:2.25rem}.input-group-sm input[type=date].form-control,.input-group-sm input[type=time].form-control,.input-group-sm input[type=datetime-local].form-control,.input-group-sm input[type=month].form-control,input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:1.8625rem}.input-group-lg input[type=date].form-control,.input-group-lg input[type=time].form-control,.input-group-lg input[type=datetime-local].form-control,.input-group-lg input[type=month].form-control,input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:3.166667rem}}.form-control-static{min-height:2.25rem;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0}.form-control-static.form-control-lg,.form-control-static.form-control-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:.275rem .75rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:.75rem 1.25rem;font-size:1.25rem;line-height:1.333333;border-radius:.3rem}.form-group{margin-bottom:1rem}.checkbox,.radio{position:relative;display:block;margin-bottom:.75rem}.checkbox label,.radio label{padding-left:1.25rem;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox label input:only-child,.radio label input:only-child{position:static}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:.25rem;margin-left:-1.25rem}.checkbox+.checkbox,.radio+.radio{margin-top:-.25rem}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:1.25rem;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:.75rem}input[type=checkbox].disabled,input[type=checkbox]:disabled,input[type=radio].disabled,input[type=radio]:disabled{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label{cursor:not-allowed}.form-control-danger,.form-control-success,.form-control-warning{padding-right:2.25rem;background-repeat:no-repeat;background-position:center right .5625rem;-webkit-background-size:1.4625rem 1.4625rem;background-size:1.4625rem 1.4625rem}.has-success .checkbox,.has-success .checkbox-inline,.has-success .form-control-label,.has-success .radio,.has-success .radio-inline,.has-success .text-help,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#5cb85c}.has-success .form-control{border-color:#5cb85c}.has-success .input-group-addon{color:#5cb85c;background-color:#eaf6ea;border-color:#5cb85c}.has-success .form-control-feedback{color:#5cb85c}.has-success .form-control-success{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==)}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .form-control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning .text-help,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#f0ad4e}.has-warning .form-control{border-color:#f0ad4e}.has-warning .input-group-addon{color:#f0ad4e;background-color:#fff;border-color:#f0ad4e}.has-warning .form-control-feedback{color:#f0ad4e}.has-warning .form-control-warning{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+)}.has-danger .checkbox,.has-danger .checkbox-inline,.has-danger .form-control-label,.has-danger .radio,.has-danger .radio-inline,.has-danger .text-help,.has-danger.checkbox label,.has-danger.checkbox-inline label,.has-danger.radio label,.has-danger.radio-inline label{color:#d9534f}.has-danger .form-control{border-color:#d9534f}.has-danger .input-group-addon{color:#d9534f;background-color:#fdf7f7;border-color:#d9534f}.has-danger .form-control-feedback{color:#d9534f}.has-danger .form-control-danger{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=)}@media (min-width:544px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .form-control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.btn{display:inline-block;padding:.375rem 1rem;font-size:1rem;font-weight:400;line-height:1.5;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;border-radius:.25rem}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:focus,.btn:hover{text-decoration:none}.btn.focus{text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0}.btn.disabled,.btn:disabled{cursor:not-allowed;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-primary:hover{color:#fff;background-color:#025aa5;border-color:#01549b}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#025aa5;border-color:#01549b}.btn-primary.active,.btn-primary:active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#025aa5;background-image:none;border-color:#01549b}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#014682;border-color:#01315a}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary:disabled.focus,.btn-primary:disabled:focus{background-color:#0275d8;border-color:#0275d8}.btn-primary.disabled:hover,.btn-primary:disabled:hover{background-color:#0275d8;border-color:#0275d8}.btn-secondary{color:#373a3c;background-color:#fff;border-color:#ccc}.btn-secondary:hover{color:#373a3c;background-color:#e6e6e6;border-color:#adadad}.btn-secondary.focus,.btn-secondary:focus{color:#373a3c;background-color:#e6e6e6;border-color:#adadad}.btn-secondary.active,.btn-secondary:active,.open>.btn-secondary.dropdown-toggle{color:#373a3c;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.btn-secondary.dropdown-toggle.focus,.open>.btn-secondary.dropdown-toggle:focus,.open>.btn-secondary.dropdown-toggle:hover{color:#373a3c;background-color:#d4d4d4;border-color:#8c8c8c}.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary:disabled.focus,.btn-secondary:disabled:focus{background-color:#fff;border-color:#ccc}.btn-secondary.disabled:hover,.btn-secondary:disabled:hover{background-color:#fff;border-color:#ccc}.btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#2aabd2}.btn-info.active,.btn-info:active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;background-image:none;border-color:#2aabd2}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1f7e9a}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info:disabled.focus,.btn-info:disabled:focus{background-color:#5bc0de;border-color:#5bc0de}.btn-info.disabled:hover,.btn-info:disabled:hover{background-color:#5bc0de;border-color:#5bc0de}.btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#419641}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;background-image:none;border-color:#419641}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#2d672d}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success:disabled.focus,.btn-success:disabled:focus{background-color:#5cb85c;border-color:#5cb85c}.btn-success.disabled:hover,.btn-success:disabled:hover{background-color:#5cb85c;border-color:#5cb85c}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#eb9316}.btn-warning.active,.btn-warning:active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;background-image:none;border-color:#eb9316}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#b06d0f}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning:disabled.focus,.btn-warning:disabled:focus{background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning.disabled:hover,.btn-warning:disabled:hover{background-color:#f0ad4e;border-color:#f0ad4e}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#c12e2a}.btn-danger.active,.btn-danger:active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;background-image:none;border-color:#c12e2a}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger:disabled.focus,.btn-danger:disabled:focus{background-color:#d9534f;border-color:#d9534f}.btn-danger.disabled:hover,.btn-danger:disabled:hover{background-color:#d9534f;border-color:#d9534f}.btn-primary-outline{color:#0275d8;background-color:transparent;background-image:none;border-color:#0275d8}.btn-primary-outline.active,.btn-primary-outline.focus,.btn-primary-outline:active,.btn-primary-outline:focus,.open>.btn-primary-outline.dropdown-toggle{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-primary-outline:hover{color:#fff;background-color:#0275d8;border-color:#0275d8}.btn-primary-outline.disabled.focus,.btn-primary-outline.disabled:focus,.btn-primary-outline:disabled.focus,.btn-primary-outline:disabled:focus{border-color:#43a7fd}.btn-primary-outline.disabled:hover,.btn-primary-outline:disabled:hover{border-color:#43a7fd}.btn-secondary-outline{color:#ccc;background-color:transparent;background-image:none;border-color:#ccc}.btn-secondary-outline.active,.btn-secondary-outline.focus,.btn-secondary-outline:active,.btn-secondary-outline:focus,.open>.btn-secondary-outline.dropdown-toggle{color:#fff;background-color:#ccc;border-color:#ccc}.btn-secondary-outline:hover{color:#fff;background-color:#ccc;border-color:#ccc}.btn-secondary-outline.disabled.focus,.btn-secondary-outline.disabled:focus,.btn-secondary-outline:disabled.focus,.btn-secondary-outline:disabled:focus{border-color:#fff}.btn-secondary-outline.disabled:hover,.btn-secondary-outline:disabled:hover{border-color:#fff}.btn-info-outline{color:#5bc0de;background-color:transparent;background-image:none;border-color:#5bc0de}.btn-info-outline.active,.btn-info-outline.focus,.btn-info-outline:active,.btn-info-outline:focus,.open>.btn-info-outline.dropdown-toggle{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info-outline:hover{color:#fff;background-color:#5bc0de;border-color:#5bc0de}.btn-info-outline.disabled.focus,.btn-info-outline.disabled:focus,.btn-info-outline:disabled.focus,.btn-info-outline:disabled:focus{border-color:#b0e1ef}.btn-info-outline.disabled:hover,.btn-info-outline:disabled:hover{border-color:#b0e1ef}.btn-success-outline{color:#5cb85c;background-color:transparent;background-image:none;border-color:#5cb85c}.btn-success-outline.active,.btn-success-outline.focus,.btn-success-outline:active,.btn-success-outline:focus,.open>.btn-success-outline.dropdown-toggle{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success-outline:hover{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.btn-success-outline.disabled.focus,.btn-success-outline.disabled:focus,.btn-success-outline:disabled.focus,.btn-success-outline:disabled:focus{border-color:#a3d7a3}.btn-success-outline.disabled:hover,.btn-success-outline:disabled:hover{border-color:#a3d7a3}.btn-warning-outline{color:#f0ad4e;background-color:transparent;background-image:none;border-color:#f0ad4e}.btn-warning-outline.active,.btn-warning-outline.focus,.btn-warning-outline:active,.btn-warning-outline:focus,.open>.btn-warning-outline.dropdown-toggle{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning-outline:hover{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}.btn-warning-outline.disabled.focus,.btn-warning-outline.disabled:focus,.btn-warning-outline:disabled.focus,.btn-warning-outline:disabled:focus{border-color:#f8d9ac}.btn-warning-outline.disabled:hover,.btn-warning-outline:disabled:hover{border-color:#f8d9ac}.btn-danger-outline{color:#d9534f;background-color:transparent;background-image:none;border-color:#d9534f}.btn-danger-outline.active,.btn-danger-outline.focus,.btn-danger-outline:active,.btn-danger-outline:focus,.open>.btn-danger-outline.dropdown-toggle{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger-outline:hover{color:#fff;background-color:#d9534f;border-color:#d9534f}.btn-danger-outline.disabled.focus,.btn-danger-outline.disabled:focus,.btn-danger-outline:disabled.focus,.btn-danger-outline:disabled:focus{border-color:#eba5a3}.btn-danger-outline.disabled:hover,.btn-danger-outline:disabled:hover{border-color:#eba5a3}.btn-link{font-weight:400;color:#0275d8;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link:disabled{background-color:transparent}.btn-link,.btn-link:active,.btn-link:focus{border-color:transparent}.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#014c8c;text-decoration:underline;background-color:transparent}.btn-link:disabled:focus,.btn-link:disabled:hover{color:#818a91;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:.75rem 1.25rem;font-size:1.25rem;line-height:1.333333;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .75rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height;-o-transition-property:height;transition-property:height}.dropdown,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-right:.25rem;margin-left:.25rem;vertical-align:middle;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-left:.3em solid transparent}.dropdown-toggle:focus{outline:0}.dropup .dropdown-toggle::after{border-top:0;border-bottom:.3em solid}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:1rem;color:#373a3c;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-divider{height:1px;margin:.5rem 0;overflow:hidden;background-color:#e5e5e5}.dropdown-item{display:block;width:100%;padding:3px 20px;clear:both;font-weight:400;line-height:1.5;color:#373a3c;text-align:inherit;white-space:nowrap;background:0 0;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#2b2d2f;text-decoration:none;background-color:#f5f5f5}.dropdown-item.active,.dropdown-item.active:focus,.dropdown-item.active:hover{color:#fff;text-decoration:none;background-color:#0275d8;outline:0}.dropdown-item.disabled,.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{color:#818a91}.dropdown-item.disabled:focus,.dropdown-item.disabled:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:"progid:DXImageTransform.Microsoft.gradient(enabled = false)"}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:.875rem;line-height:1.5;color:#818a91;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:.3em solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:2}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar::after{display:table;clear:both;content:""}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn .caret{margin-left:0}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:.3em .3em 0;border-bottom-width:0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 .3em .3em}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group::after{display:table;clear:both;content:""}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:.25rem;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:.25rem}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:active,.input-group .form-control:focus,.input-group .form-control:hover{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1;color:#55595c;text-align:center;background-color:#eceeef;border:1px solid #ccc;border-radius:.25rem}.input-group-addon.form-control-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:.275rem .75rem;font-size:.875rem;border-radius:.2rem}.input-group-addon.form-control-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:.75rem 1.25rem;font-size:1.25rem;border-radius:.3rem}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:3}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.input-group-btn:last-child>.btn-group:active,.input-group-btn:last-child>.btn-group:focus,.input-group-btn:last-child>.btn-group:hover,.input-group-btn:last-child>.btn:active,.input-group-btn:last-child>.btn:focus,.input-group-btn:last-child>.btn:hover{z-index:3}.c-input{position:relative;display:inline;padding-left:1.5rem;color:#555;cursor:pointer}.c-input>input{position:absolute;z-index:-1;opacity:0}.c-input>input:checked~.c-indicator{color:#fff;background-color:#0074d9}.c-input>input:focus~.c-indicator{-webkit-box-shadow:0 0 0 .075rem #fff,0 0 0 .2rem #0074d9;box-shadow:0 0 0 .075rem #fff,0 0 0 .2rem #0074d9}.c-input>input:active~.c-indicator{color:#fff;background-color:#84c6ff}.c-input+.c-input{margin-left:1rem}.c-indicator{position:absolute;top:0;left:0;display:block;width:1rem;height:1rem;font-size:65%;line-height:1rem;color:#eee;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#eee;background-repeat:no-repeat;background-position:center center;-webkit-background-size:50% 50%;background-size:50% 50%}.c-checkbox .c-indicator{border-radius:.25rem}.c-checkbox input:checked~.c-indicator{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=)}.c-checkbox input:indeterminate~.c-indicator{background-color:#0074d9;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K)}.c-radio .c-indicator{border-radius:50%}.c-radio input:checked~.c-indicator{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==)}.c-inputs-stacked .c-input{display:inline}.c-inputs-stacked .c-input::after{display:block;margin-bottom:.25rem;content:""}.c-inputs-stacked .c-input+.c-input{margin-left:0}.c-select{display:inline-block;max-width:100%;-webkit-appearance:none;padding:.375rem 1.75rem .375rem .75rem;padding-right:.75rem\9;color:#55595c;vertical-align:middle;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;background-image:none\9;-webkit-background-size:8px 10px;background-size:8px 10px;border:1px solid #ccc;-moz-appearance:none}.c-select:focus{border-color:#51a7e8;outline:0}.c-select::-ms-expand{opacity:0}.c-select-sm{padding-top:3px;padding-bottom:3px;font-size:12px}.c-select-sm:not([multiple]){height:26px;min-height:26px}.file{position:relative;display:inline-block;height:2.5rem;cursor:pointer}.file input{min-width:14rem;margin:0;filter:alpha(opacity=0);opacity:0}.file-custom{position:absolute;top:0;right:0;left:0;z-index:5;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;border:1px solid #ddd;border-radius:.25rem}.file-custom::after{content:"Choose file..."}.file-custom::before{position:absolute;top:-.075rem;right:-.075rem;bottom:-.075rem;z-index:6;display:block;height:2.5rem;padding:.5rem 1rem;line-height:1.5;color:#555;content:"Browse";background-color:#eee;border:1px solid #ddd;border-radius:0 .25rem .25rem 0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:inline-block}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#818a91}.nav-link.disabled,.nav-link.disabled:focus,.nav-link.disabled:hover{color:#818a91;cursor:not-allowed;background-color:transparent}.nav-inline .nav-item{display:inline-block}.nav-inline .nav-item+.nav-item,.nav-inline .nav-link+.nav-link{margin-left:1rem}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs::after{display:table;clear:both;content:""}.nav-tabs .nav-item{float:left;margin-bottom:-1px}.nav-tabs .nav-item+.nav-item{margin-left:.2rem}.nav-tabs .nav-link{display:block;padding:.5em 1em;border:1px solid transparent;border-radius:.25rem .25rem 0 0}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#eceeef #eceeef #ddd}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link.disabled:focus,.nav-tabs .nav-link.disabled:hover{color:#818a91;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover,.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover{color:#55595c;background-color:#fff;border-color:#ddd #ddd transparent}.nav-pills::after{display:table;clear:both;content:""}.nav-pills .nav-item{float:left}.nav-pills .nav-item+.nav-item{margin-left:.2rem}.nav-pills .nav-link{display:block;padding:.5em 1em;border-radius:.25rem}.nav-pills .nav-item.open .nav-link,.nav-pills .nav-item.open .nav-link:focus,.nav-pills .nav-item.open .nav-link:hover,.nav-pills .nav-link.active,.nav-pills .nav-link.active:focus,.nav-pills .nav-link.active:hover{color:#fff;cursor:default;background-color:#0275d8}.nav-stacked .nav-item{display:block;float:none}.nav-stacked .nav-item+.nav-item{margin-top:.2rem;margin-left:0}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;padding:.5rem 1rem}.navbar::after{display:table;clear:both;content:""}@media (min-width:544px){.navbar{border-radius:.25rem}}.navbar-full{z-index:1000}@media (min-width:544px){.navbar-full{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:544px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0}.navbar-fixed-bottom{bottom:0}.navbar-sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1030;width:100%}@media (min-width:544px){.navbar-sticky-top{border-radius:0}}.navbar-brand{float:left;padding-top:.25rem;padding-bottom:.25rem;margin-right:1rem;font-size:1.25rem}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}.navbar-divider{float:left;width:1px;padding-top:.425rem;padding-bottom:.425rem;margin-right:1rem;margin-left:1rem;overflow:hidden}.navbar-divider::before{content:"\00a0"}.navbar-toggler{padding:.5rem .75rem;font-size:1.25rem;line-height:1;background:0 0;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}@media (min-width:544px){.navbar-toggleable-xs{display:block!important}}@media (min-width:768px){.navbar-toggleable-sm{display:block!important}}@media (min-width:992px){.navbar-toggleable-md{display:block!important}}.navbar-nav .nav-item{float:left}.navbar-nav .nav-link{display:block;padding-top:.425rem;padding-bottom:.425rem}.navbar-nav .nav-link+.nav-link{margin-left:1rem}.navbar-nav .nav-item+.nav-item{margin-left:1rem}.navbar-light .navbar-brand{color:rgba(0,0,0,.8)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.6)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .active>.nav-link:focus,.navbar-light .navbar-nav .active>.nav-link:hover,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.active:focus,.navbar-light .navbar-nav .nav-link.active:hover,.navbar-light .navbar-nav .nav-link.open,.navbar-light .navbar-nav .nav-link.open:focus,.navbar-light .navbar-nav .nav-link.open:hover,.navbar-light .navbar-nav .open>.nav-link,.navbar-light .navbar-nav .open>.nav-link:focus,.navbar-light .navbar-nav .open>.nav-link:hover{color:rgba(0,0,0,.8)}.navbar-light .navbar-divider{background-color:rgba(0,0,0,.075)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .active>.nav-link:focus,.navbar-dark .navbar-nav .active>.nav-link:hover,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.active:focus,.navbar-dark .navbar-nav .nav-link.active:hover,.navbar-dark .navbar-nav .nav-link.open,.navbar-dark .navbar-nav .nav-link.open:focus,.navbar-dark .navbar-nav .nav-link.open:hover,.navbar-dark .navbar-nav .open>.nav-link,.navbar-dark .navbar-nav .open>.nav-link:focus,.navbar-dark .navbar-nav .open>.nav-link:hover{color:#fff}.navbar-dark .navbar-divider{background-color:rgba(255,255,255,.075)}.card{position:relative;display:block;margin-bottom:.75rem;background-color:#fff;border:1px solid #e5e5e5;border-radius:.25rem}.card-block{padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card>.list-group:first-child .list-group-item:first-child{border-radius:.25rem .25rem 0 0}.card>.list-group:last-child .list-group-item:last-child{border-radius:0 0 .25rem .25rem}.card-header{padding:.75rem 1.25rem;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5}.card-header:first-child{border-radius:.25rem .25rem 0 0}.card-footer{padding:.75rem 1.25rem;background-color:#f5f5f5;border-top:1px solid #e5e5e5}.card-footer:last-child{border-radius:0 0 .25rem .25rem}.card-primary{background-color:#0275d8;border-color:#0275d8}.card-success{background-color:#5cb85c;border-color:#5cb85c}.card-info{background-color:#5bc0de;border-color:#5bc0de}.card-warning{background-color:#f0ad4e;border-color:#f0ad4e}.card-danger{background-color:#d9534f;border-color:#d9534f}.card-primary-outline{background-color:transparent;border-color:#0275d8}.card-secondary-outline{background-color:transparent;border-color:#ccc}.card-info-outline{background-color:transparent;border-color:#5bc0de}.card-success-outline{background-color:transparent;border-color:#5cb85c}.card-warning-outline{background-color:transparent;border-color:#f0ad4e}.card-danger-outline{background-color:transparent;border-color:#d9534f}.card-inverse .card-footer,.card-inverse .card-header{border-bottom:1px solid rgba(255,255,255,.2)}.card-inverse .card-blockquote,.card-inverse .card-footer,.card-inverse .card-header,.card-inverse .card-title{color:#fff}.card-inverse .card-blockquote>footer,.card-inverse .card-link,.card-inverse .card-text{color:rgba(255,255,255,.65)}.card-inverse .card-link:focus,.card-inverse .card-link:hover{color:#fff}.card-blockquote{padding:0;margin-bottom:0;border-left:0}.card-img{border-radius:.25rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img-top{border-radius:.25rem .25rem 0 0}.card-img-bottom{border-radius:0 0 .25rem .25rem}@media (min-width:544px){.card-deck{display:table;table-layout:fixed;border-spacing:1.25rem 0}.card-deck .card{display:table-cell;width:1%;vertical-align:top}.card-deck-wrapper{margin-right:-1.25rem;margin-left:-1.25rem}}@media (min-width:544px){.card-group{display:table;width:100%;table-layout:fixed}.card-group .card{display:table-cell;vertical-align:top}.card-group .card+.card{margin-left:0;border-left:0}.card-group .card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group .card:first-child .card-img-top{border-top-right-radius:0}.card-group .card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group .card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group .card:last-child .card-img-top{border-top-left-radius:0}.card-group .card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group .card:not(:first-child):not(:last-child){border-radius:0}.card-group .card:not(:first-child):not(:last-child) .card-img-bottom,.card-group .card:not(:first-child):not(:last-child) .card-img-top{border-radius:0}}@media (min-width:544px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem}.card-columns .card{display:inline-block;width:100%}}.breadcrumb{padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#eceeef;border-radius:.25rem}.breadcrumb::after{display:table;clear:both;content:""}.breadcrumb>li{float:left}.breadcrumb>li+li::before{padding-right:.5rem;padding-left:.5rem;color:#818a91;content:"/"}.breadcrumb>.active{color:#818a91}.pagination{display:inline-block;padding-left:0;margin-top:1rem;margin-bottom:1rem;border-radius:.25rem}.page-item{display:inline}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link,.page-item.active .page-link:focus,.page-item.active .page-link:hover{z-index:2;color:#fff;cursor:default;background-color:#0275d8;border-color:#0275d8}.page-item.disabled .page-link,.page-item.disabled .page-link:focus,.page-item.disabled .page-link:hover{color:#818a91;cursor:not-allowed;background-color:#fff;border-color:#ddd}.page-link{position:relative;float:left;padding:.5rem .75rem;margin-left:-1px;line-height:1.5;color:#0275d8;text-decoration:none;background-color:#fff;border:1px solid #ddd}.page-link:focus,.page-link:hover{color:#014c8c;background-color:#eceeef;border-color:#ddd}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.333333}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.275rem .75rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.pager{padding-left:0;margin-top:1rem;margin-bottom:1rem;text-align:center;list-style:none}.pager::after{display:table;clear:both;content:""}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eceeef}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover{color:#818a91;cursor:not-allowed;background-color:#fff}.pager .disabled>span{color:#818a91;cursor:not-allowed;background-color:#fff}.pager-next>a,.pager-next>span{float:right}.pager-prev>a,.pager-prev>span{float:left}.label{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.label-default{background-color:#818a91}.label-default[href]:focus,.label-default[href]:hover{background-color:#687077}.label-primary{background-color:#0275d8}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#025aa5}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#eceeef;border-radius:.3rem}@media (min-width:544px){.jumbotron{padding:4rem 2rem}}.jumbotron-hr{border-top-color:#d0d5d8}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{padding:15px;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:35px}.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d0e9c6}.alert-success hr{border-top-color:#c1e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bcdff1}.alert-info hr{border-top-color:#a6d5ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faf2cc}.alert-warning hr{border-top-color:#f7ecb5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebcccc}.alert-danger hr{border-top-color:#e4b9b9}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:block;width:100%;height:1rem;margin-bottom:1rem}.progress[value]{-webkit-appearance:none;color:#0074d9;border:0;-moz-appearance:none;appearance:none}.progress[value]::-webkit-progress-bar{background-color:#eee;border-radius:.25rem}.progress[value]::-webkit-progress-value::before{content:attr(value)}.progress[value]::-webkit-progress-value{background-color:#0074d9;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.progress[value="100"]::-webkit-progress-value{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}@media screen and (min-width:0\0){.progress{background-color:#eee;border-radius:.25rem}.progress-bar{display:inline-block;height:1rem;text-indent:-999rem;background-color:#0074d9;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.progress[width^="0"]{min-width:2rem;color:#818a91;background-color:transparent;background-image:none}.progress[width="100%"]{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}}.progress-striped[value]::-webkit-progress-value{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}.progress-striped[value]::-moz-progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}@media screen and (min-width:0\0){.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:1rem 1rem;background-size:1rem 1rem}}.progress-animated[value]::-webkit-progress-value{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-animated[value]::-moz-progress-bar{animation:progress-bar-stripes 2s linear infinite}@media screen and (min-width:0\0){.progress-animated .progress-bar-striped{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}}.progress-success[value]::-webkit-progress-value{background-color:#5cb85c}.progress-success[value]::-moz-progress-bar{background-color:#5cb85c}@media screen and (min-width:0\0){.progress-success .progress-bar{background-color:#5cb85c}}.progress-info[value]::-webkit-progress-value{background-color:#5bc0de}.progress-info[value]::-moz-progress-bar{background-color:#5bc0de}@media screen and (min-width:0\0){.progress-info .progress-bar{background-color:#5bc0de}}.progress-warning[value]::-webkit-progress-value{background-color:#f0ad4e}.progress-warning[value]::-moz-progress-bar{background-color:#f0ad4e}@media screen and (min-width:0\0){.progress-warning .progress-bar{background-color:#f0ad4e}}.progress-danger[value]::-webkit-progress-value{background-color:#d9534f}.progress-danger[value]::-moz-progress-bar{background-color:#d9534f}@media screen and (min-width:0\0){.progress-danger .progress-bar{background-color:#d9534f}}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right{padding-left:10px}.media-left{padding-right:10px}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:0}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-flush .list-group-item{border-width:1px 0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}a.list-group-item,button.list-group-item{width:100%;color:#555;text-align:inherit}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#818a91;cursor:not-allowed;background-color:#eceeef}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#818a91}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#0275d8;border-color:#0275d8}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#a8d6fe}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9{padding-bottom:42.857143%}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.embed-responsive-1by1{padding-bottom:100%}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:transform .3s ease-out,-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header::after{display:table;clear:both;content:""}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer::after{display:table;clear:both;content:""}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:544px){.modal-dialog{width:600px;margin:30px auto}.modal-sm{width:300px}}@media (min-width:768px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.tooltip.in{opacity:.9}.tooltip.bs-tether-element-attached-bottom,.tooltip.tooltip-top{padding:5px 0;margin-top:-3px}.tooltip.bs-tether-element-attached-bottom .tooltip-arrow,.tooltip.tooltip-top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.bs-tether-element-attached-left,.tooltip.tooltip-right{padding:0 5px;margin-left:3px}.tooltip.bs-tether-element-attached-left .tooltip-arrow,.tooltip.tooltip-right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.bs-tether-element-attached-top,.tooltip.tooltip-bottom{padding:5px 0;margin-top:3px}.tooltip.bs-tether-element-attached-top .tooltip-arrow,.tooltip.tooltip-bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bs-tether-element-attached-right,.tooltip.tooltip-left{padding:0 5px;margin-left:-3px}.tooltip.bs-tether-element-attached-right .tooltip-arrow,.tooltip.tooltip-left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;line-break:auto}.popover.bs-tether-element-attached-bottom,.popover.popover-top{margin-top:-10px}.popover.bs-tether-element-attached-bottom .popover-arrow,.popover.popover-top .popover-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.bs-tether-element-attached-bottom .popover-arrow::after,.popover.popover-top .popover-arrow::after{bottom:1px;margin-left:-10px;content:"";border-top-color:#fff;border-bottom-width:0}.popover.bs-tether-element-attached-left,.popover.popover-right{margin-left:10px}.popover.bs-tether-element-attached-left .popover-arrow,.popover.popover-right .popover-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.bs-tether-element-attached-left .popover-arrow::after,.popover.popover-right .popover-arrow::after{bottom:-10px;left:1px;content:"";border-right-color:#fff;border-left-width:0}.popover.bs-tether-element-attached-top,.popover.popover-bottom{margin-top:10px}.popover.bs-tether-element-attached-top .popover-arrow,.popover.popover-bottom .popover-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-top .popover-arrow::after,.popover.popover-bottom .popover-arrow::after{top:1px;margin-left:-10px;content:"";border-top-width:0;border-bottom-color:#fff}.popover.bs-tether-element-attached-right,.popover.popover-left{margin-left:-10px}.popover.bs-tether-element-attached-right .popover-arrow,.popover.popover-left .popover-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:rgba(0,0,0,.25)}.popover.bs-tether-element-attached-right .popover-arrow::after,.popover.popover-left .popover-arrow::after{right:1px;bottom:-10px;content:"";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:-.7rem -.7rem 0 0}.popover-content{padding:9px 14px}.popover-arrow,.popover-arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover-arrow{border-width:11px}.popover-arrow::after{content:"";border-width:10px}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.carousel-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.carousel-item>a>img,.carousel-inner>.carousel-item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.carousel-item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:transform .6s ease-in-out,-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.carousel-item.active.right,.carousel-inner>.carousel-item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.carousel-item.active.left,.carousel-inner>.carousel-item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.carousel-item.active,.carousel-inner>.carousel-item.next.left,.carousel-inner>.carousel-item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);opacity:.5}.carousel-control.left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-prev::before{content:"\2039"}.carousel-control .icon-next::before{content:"\203a"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:transparent;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media (min-width:544px){.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .icon-prev{margin-left:-15px}.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix::after{display:table;clear:both;content:""}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-xs-left{float:left!important}.pull-xs-right{float:right!important}.pull-xs-none{float:none!important}@media (min-width:544px){.pull-sm-left{float:left!important}.pull-sm-right{float:right!important}.pull-sm-none{float:none!important}}@media (min-width:768px){.pull-md-left{float:left!important}.pull-md-right{float:right!important}.pull-md-none{float:none!important}}@media (min-width:992px){.pull-lg-left{float:left!important}.pull-lg-right{float:right!important}.pull-lg-none{float:none!important}}@media (min-width:1200px){.pull-xl-left{float:left!important}.pull-xl-right{float:right!important}.pull-xl-none{float:none!important}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.invisible{visibility:hidden!important}.text-hide{font:"0/0" a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-xs-left{text-align:left!important}.text-xs-right{text-align:right!important}.text-xs-center{text-align:center!important}@media (min-width:544px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-normal{font-weight:400}.font-weight-bold{font-weight:700}.font-italic{font-style:italic}.text-muted{color:#818a91}.text-primary{color:#0275d8!important}a.text-primary:focus,a.text-primary:hover{color:#025aa5}.text-success{color:#5cb85c!important}a.text-success:focus,a.text-success:hover{color:#449d44}.text-info{color:#5bc0de!important}a.text-info:focus,a.text-info:hover{color:#31b0d5}.text-warning{color:#f0ad4e!important}a.text-warning:focus,a.text-warning:hover{color:#ec971f}.text-danger{color:#d9534f!important}a.text-danger:focus,a.text-danger:hover{color:#c9302c}.bg-inverse{color:#eceeef;background-color:#373a3c}.bg-faded{background-color:#f7f7f9}.bg-primary{color:#fff!important;background-color:#0275d8!important}a.bg-primary:focus,a.bg-primary:hover{background-color:#025aa5}.bg-success{color:#fff!important;background-color:#5cb85c!important}a.bg-success:focus,a.bg-success:hover{background-color:#449d44}.bg-info{color:#fff!important;background-color:#5bc0de!important}a.bg-info:focus,a.bg-info:hover{background-color:#31b0d5}.bg-warning{color:#fff!important;background-color:#f0ad4e!important}a.bg-warning:focus,a.bg-warning:hover{background-color:#ec971f}.bg-danger{color:#fff!important;background-color:#d9534f!important}a.bg-danger:focus,a.bg-danger:hover{background-color:#c9302c}.m-x-auto{margin-right:auto!important;margin-left:auto!important}.m-a-0{margin:0 0!important}.m-t-0{margin-top:0!important}.m-r-0{margin-right:0!important}.m-b-0{margin-bottom:0!important}.m-l-0{margin-left:0!important}.m-x-0{margin-right:0!important;margin-left:0!important}.m-y-0{margin-top:0!important;margin-bottom:0!important}.m-a-1{margin:1rem 1rem!important}.m-t-1{margin-top:1rem!important}.m-r-1{margin-right:1rem!important}.m-b-1{margin-bottom:1rem!important}.m-l-1{margin-left:1rem!important}.m-x-1{margin-right:1rem!important;margin-left:1rem!important}.m-y-1{margin-top:1rem!important;margin-bottom:1rem!important}.m-a-2{margin:1.5rem 1.5rem!important}.m-t-2{margin-top:1.5rem!important}.m-r-2{margin-right:1.5rem!important}.m-b-2{margin-bottom:1.5rem!important}.m-l-2{margin-left:1.5rem!important}.m-x-2{margin-right:1.5rem!important;margin-left:1.5rem!important}.m-y-2{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.m-a-3{margin:3rem 3rem!important}.m-t-3{margin-top:3rem!important}.m-r-3{margin-right:3rem!important}.m-b-3{margin-bottom:3rem!important}.m-l-3{margin-left:3rem!important}.m-x-3{margin-right:3rem!important;margin-left:3rem!important}.m-y-3{margin-top:3rem!important;margin-bottom:3rem!important}.p-a-0{padding:0 0!important}.p-t-0{padding-top:0!important}.p-r-0{padding-right:0!important}.p-b-0{padding-bottom:0!important}.p-l-0{padding-left:0!important}.p-x-0{padding-right:0!important;padding-left:0!important}.p-y-0{padding-top:0!important;padding-bottom:0!important}.p-a-1{padding:1rem 1rem!important}.p-t-1{padding-top:1rem!important}.p-r-1{padding-right:1rem!important}.p-b-1{padding-bottom:1rem!important}.p-l-1{padding-left:1rem!important}.p-x-1{padding-right:1rem!important;padding-left:1rem!important}.p-y-1{padding-top:1rem!important;padding-bottom:1rem!important}.p-a-2{padding:1.5rem 1.5rem!important}.p-t-2{padding-top:1.5rem!important}.p-r-2{padding-right:1.5rem!important}.p-b-2{padding-bottom:1.5rem!important}.p-l-2{padding-left:1.5rem!important}.p-x-2{padding-right:1.5rem!important;padding-left:1.5rem!important}.p-y-2{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.p-a-3{padding:3rem 3rem!important}.p-t-3{padding-top:3rem!important}.p-r-3{padding-right:3rem!important}.p-b-3{padding-bottom:3rem!important}.p-l-3{padding-left:3rem!important}.p-x-3{padding-right:3rem!important;padding-left:3rem!important}.p-y-3{padding-top:3rem!important;padding-bottom:3rem!important}.pos-f-t{position:fixed;top:0;right:0;left:0;z-index:1030}.hidden-xs-up{display:none!important}@media (max-width:543px){.hidden-xs-down{display:none!important}}@media (min-width:544px){.hidden-sm-up{display:none!important}}@media (max-width:767px){.hidden-sm-down{display:none!important}}@media (min-width:768px){.hidden-md-up{display:none!important}}@media (max-width:991px){.hidden-md-down{display:none!important}}@media (min-width:992px){.hidden-lg-up{display:none!important}}@media (max-width:1199px){.hidden-lg-down{display:none!important}}@media (min-width:1200px){.hidden-xl-up{display:none!important}}.hidden-xl-down{display:none!important}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map *//*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('/wp-content/themes/gt/assets/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('/wp-content/themes/gt/assets/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('/wp-content/themes/gt/assets/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('/wp-content/themes/gt/assets/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('/wp-content/themes/gt/assets/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('/wp-content/themes/gt/assets/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
@charset "UTF-8";.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}40%,43%,70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}70%{-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1);-webkit-transform:translateZ(0);transform:translateZ(0)}40%,43%{-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}40%,43%,70%{-webkit-animation-timing-function:cubic-bezier(.755,.05,.855,.06);animation-timing-function:cubic-bezier(.755,.05,.855,.06)}70%{-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{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 pulse{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)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes rubberBand{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,to{-webkit-transform:translateZ(0);transform:translateZ(0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-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 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)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes tada{0%{-webkit-transform:scaleX(1);transform:scaleX(1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate(-3deg);transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(3deg);transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate(-3deg);transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}@keyframes wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate(-5deg);transform:translate3d(-25%,0,0) rotate(-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate(3deg);transform:translate3d(20%,0,0) rotate(3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate(-3deg);transform:translate3d(-15%,0,0) rotate(-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate(2deg);transform:translate3d(10%,0,0) rotate(2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate(-1deg);transform:translate3d(-5%,0,0) rotate(-1deg)}to{-webkit-transform:none;transform:none}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}@keyframes jello{0%,11.1%,to{-webkit-transform:none;transform:none}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-.78125deg) skewY(-.78125deg);transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{-webkit-transform:skewX(.390625deg) skewY(.390625deg);transform:skewX(.390625deg) skewY(.390625deg)}88.8%{-webkit-transform:skewX(-.1953125deg) skewY(-.1953125deg);transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}to{opacity:1;-webkit-transform:scaleX(1);transform:scaleX(1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) rotateY(-1turn);transform:perspective(400px) rotateY(-1turn)}0%,40%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg);transform:perspective(400px) translateZ(150px) rotateY(-190deg)}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg);transform:perspective(400px) translateZ(150px) rotateY(-170deg)}50%,80%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95)}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) rotateY(-1turn);transform:perspective(400px) rotateY(-1turn)}0%,40%{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg);transform:perspective(400px) translateZ(150px) rotateY(-190deg)}50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg);transform:perspective(400px) translateZ(150px) rotateY(-170deg)}50%,80%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95)}to{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg)}60%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateX(-5deg);transform:perspective(400px) rotateX(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}0%,40%{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}40%{-webkit-transform:perspective(400px) rotateY(-20deg);transform:perspective(400px) rotateY(-20deg)}60%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotateY(-5deg);transform:perspective(400px) rotateY(-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateX(-20deg);transform:perspective(400px) rotateX(-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotateY(-15deg);transform:perspective(400px) rotateY(-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg)}60%,80%{opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg)}60%,80%{opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{0%{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{0%{transform-origin:center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{0%{transform-origin:right bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{0%{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{0%{transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{transform-origin:center;opacity:1}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{transform-origin:center;opacity:1}0%,to{-webkit-transform-origin:center}to{transform-origin:center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(45deg);transform:rotate(45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{transform-origin:left bottom;opacity:1}0%,to{-webkit-transform-origin:left bottom}to{transform-origin:left bottom;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{transform-origin:right bottom;opacity:1}0%,to{-webkit-transform-origin:right bottom}to{transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{transform-origin:top left}0%,20%,60%{-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{transform-origin:top left}0%,20%,60%{-webkit-transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);transform-origin:top left}40%,80%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate(-120deg);transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate(120deg);transform:translate3d(100%,0,0) rotate(120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%,to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%,to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(.55,.055,.675,.19);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(.175,.885,.32,1);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@charset "UTF-8";

@font-face {
  font-family: "font-gt";
  src:url("/wp-content/themes/gt/assets/fonts/font-gt.eot");
  src:url("/wp-content/themes/gt/assets/fonts/font-gt.eot?#iefix") format("embedded-opentype"),
    url("/wp-content/themes/gt/assets/fonts/font-gt.woff") format("woff"),
    url("/wp-content/themes/gt/assets/fonts/font-gt.ttf") format("truetype"),
    url("/wp-content/themes/gt/assets/fonts/font-gt.svg#font-gt") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
    font-family: "font-gt" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "font-gt" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ec {
    display: inline-block;
    font: normal normal normal 14px/1 font-gt;
    font-size: inherit;
    text-rendering: auto;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ec-add-to-cart:before {
  content: "\61";
}
.ec-comment:before {
  content: "\63";
}
.ec-compare:before {
  content: "\64";
}
.ec-customers:before {
  content: "\65";
}
.ec-dollar:before {
  content: "\66";
}
.ec-favorites:before {
  content: "\67";
}
.ec-grid-view:before {
  content: "\68";
}
.ec-list-view:before {
  content: "\69";
}
.ec-phone:before {
  content: "\6b";
}
.ec-returning:before {
  content: "\6c";
}
.ec-search:before {
  content: "\6d";
}
.ec-shopping-bag:before {
  content: "\6e";
}
.ec-support:before {
  content: "\6f";
}
.ec-tag:before {
  content: "\70";
}
.ec-thing-arrow-right:before {
  content: "\71";
}
.ec-user:before {
  content: "\72";
}
.ec-arrow-right-categproes:before {
  content: "\62";
}
.ec-blog-likes:before {
  content: "\6a";
}
.ec-category-icon:before {
  content: "\73";
}
.ec-mail:before {
  content: "\74";
}
.ec-map-pointer:before {
  content: "\75";
}
.ec-newsletter:before {
  content: "\76";
}
.ec-close-remove:before {
  content: "\77";
}
.ec-payment:before {
  content: "\78";
}
.ec-arrow-down-search:before {
  content: "\79";
}
.ec-list-view-small:before {
  content: "\7a";
}
.ec-list-view-medium:before {
  content: "\41";
}
.ec-transport:before {
  content: "\42";
}
@charset "UTF-8";
/**
 * Global styles
 */
* {
  box-sizing: border-box; }

body {
  overflow-x: hidden;
  background-color: #ffffff;
  color: #0d244d;
  direction: ltr; }

a:focus {.top-bar
  outline: none; }.top-bar

a:hover, a:focus {
  text-decoration: none; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

/**
 * Alignment
 */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.618em; }
  .alignleft.flip {
    float: right !important;
    margin-left: 1.618em !important; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.618em; }
  .alignright.flip {
    float: left !important;
    margin-right: 1.618em !important; }

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto; }

/**
 * Accessibility
 */
.screen-reader-text {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important; }

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  display: block;
  font-weight: bold;
  height: auto;
  left: 0;
  line-height: normal;
  padding: 1em 1.618em;
  text-decoration: none;
  top: 0;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
  outline: none; }

/**
 * Clearing
 */
.light-bg {
  background: #f5f5f5; }

/**
 * Typography
 */
body {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 0.875em;
  letter-spacing: -0.01em; }

body,
button,
input,
textarea {
  color: #0d244d;
  font-family: "Barlow", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  line-height: 1.714em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

button,
input {
  line-height: 1.286em; }

select {
  color: initial;
  font-family: "Barlow", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em; }

.dropdown-menu {
  font-size: 1em; }

.gt-cute * {
  font-family: "Comic Sans MS", sans-serif; }

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.236rem; }
  table th,
  table td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  table tbody + tbody {
    border-top: 2px solid #eceeef; }
  table .table {
    background-color: #fff; }
  table tbody tr td a {
    color: #3e3e3e; }
    table tbody tr td a:hover, table tbody tr td a:focus {
      color: #000;
      text-decoration: none; }

table.layout {
  margin-bottom: 0; }
  table.layout th, table.layout td {
    padding: 0;
    line-height: inherit;
    border: none;
    vertical-align: middle; }

img {
  height: auto;
  max-width: 100%;
  display: block; }

.gt-cute * {
  font-family: "Comic Sans MS", sans-serif; }

/**
 * Forms
 */
.form-control, .navbar-search .form-control, table.cart .coupon .input-text {
  font-size: 1.071em;
  line-height: 2em;
  border-radius: 1.467em;
  padding: 0.701em 2.134em;
  border-width: 0; }

label {
  font-size: 1em;
  line-height: 1.286em;
  font-weight: bold;
  margin-bottom: 0.857em; }

.input-text {
  font-size: 1em;
  line-height: 1.286em;
  border: 1px solid #ddd;
  padding: 0.858em 1.858em;
  border-radius: 1.286em;
  width: 100%; }
  .input-text:focus {
    border-color: #66afe9;
    outline: none; }

.woocommerce-widget-layered-nav-dropdown .select2-container:focus,
.select2-container:focus {
  outline: none; }

.woocommerce-widget-layered-nav-dropdown .select2-container .select2-choice,
.woocommerce-widget-layered-nav-dropdown .select2-container .select2-selection,
.select2-container .select2-choice,
.select2-container .select2-selection {
  font-size: 1em;
  line-height: 1.286em;
  border: 1px solid #ddd;
  width: 100%; }

.woocommerce-widget-layered-nav-dropdown .select2-container .select2-selection,
.select2-container .select2-selection {
  padding: 8px 18px; }
  .woocommerce-widget-layered-nav-dropdown .select2-container .select2-selection .select2-selection__arrow,
  .select2-container .select2-selection .select2-selection__arrow {
    top: 0;
    right: 10px;
    height: 44px; }
  .woocommerce-widget-layered-nav-dropdown .select2-container .select2-selection.select2-selection--single,
  .select2-container .select2-selection.select2-selection--single {
    height: 44px;
    border-radius: 50px; }
  .woocommerce-widget-layered-nav-dropdown .select2-container .select2-selection.select2-selection--multiple,
  .select2-container .select2-selection.select2-selection--multiple {
    border-radius: 3px;
    border: 1px solid #ddd; }

.woocommerce-widget-layered-nav-dropdown .select2-container .select2-choice,
.select2-container .select2-choice {
  padding: 0.858em 1.858em; }

.woocommerce-widget-layered-nav-dropdown .select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--single {
  border-radius: 20px; }

textarea.input-text {
  min-height: 10em;
  padding: 1.858em; }

.btn, .hero-action-btn,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  font-size: 0.875rem;
  border-radius: 1.571em;
  padding: 1.036em 2.134em;
  border-width: 0;
  display: inline-block;
  color: #0d244d;
  background-color: #efecec;
  border-color: #efecec;
  transition: all 0.2s ease-in-out; }
  .btn:hover, .hero-action-btn:hover,
  .button:hover,
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover {
    color: #fff;
    background-color: black;
    border-color: black; }
  .btn:focus, .hero-action-btn:focus, .btn.focus, .focus.hero-action-btn,
  .button:focus,
  .button.focus,
  button:focus,
  button.focus,
  input[type="button"]:focus,
  input[type="button"].focus,
  input[type="reset"]:focus,
  input[type="reset"].focus,
  input[type="submit"]:focus,
  input[type="submit"].focus {
    color: #fff;
    background-color: black;
    border-color: black; }
  .btn:active, .hero-action-btn:active, .btn.active, .active.hero-action-btn,
  .open > .btn.dropdown-toggle,
  .open > .dropdown-toggle.hero-action-btn,
  .button:active,
  .button.active,
  .open >
  .button.dropdown-toggle,
  button:active,
  button.active,
  .open >
  button.dropdown-toggle,
  input[type="button"]:active,
  input[type="button"].active,
  .open >
  input[type="button"].dropdown-toggle,
  input[type="reset"]:active,
  input[type="reset"].active,
  .open >
  input[type="reset"].dropdown-toggle,
  input[type="submit"]:active,
  input[type="submit"].active,
  .open >
  input[type="submit"].dropdown-toggle {
    color: #0d244d;
    background-color: black;
    border-color: black;
    background-image: none; }
    .btn:active:hover, .hero-action-btn:active:hover, .btn:active:focus, .hero-action-btn:active:focus, .btn:active.focus, .hero-action-btn:active.focus, .btn.active:hover, .active.hero-action-btn:hover, .btn.active:focus, .active.hero-action-btn:focus, .btn.active.focus, .active.focus.hero-action-btn,
    .open > .btn.dropdown-toggle:hover,
    .open > .dropdown-toggle.hero-action-btn:hover,
    .open > .btn.dropdown-toggle:focus,
    .open > .dropdown-toggle.hero-action-btn:focus,
    .open > .btn.dropdown-toggle.focus,
    .open > .dropdown-toggle.focus.hero-action-btn,
    .button:active:hover,
    .button:active:focus,
    .button:active.focus,
    .button.active:hover,
    .button.active:focus,
    .button.active.focus,
    .open >
    .button.dropdown-toggle:hover,
    .open >
    .button.dropdown-toggle:focus,
    .open >
    .button.dropdown-toggle.focus,
    button:active:hover,
    button:active:focus,
    button:active.focus,
    button.active:hover,
    button.active:focus,
    button.active.focus,
    .open >
    button.dropdown-toggle:hover,
    .open >
    button.dropdown-toggle:focus,
    .open >
    button.dropdown-toggle.focus,
    input[type="button"]:active:hover,
    input[type="button"]:active:focus,
    input[type="button"]:active.focus,
    input[type="button"].active:hover,
    input[type="button"].active:focus,
    input[type="button"].active.focus,
    .open >
    input[type="button"].dropdown-toggle:hover,
    .open >
    input[type="button"].dropdown-toggle:focus,
    .open >
    input[type="button"].dropdown-toggle.focus,
    input[type="reset"]:active:hover,
    input[type="reset"]:active:focus,
    input[type="reset"]:active.focus,
    input[type="reset"].active:hover,
    input[type="reset"].active:focus,
    input[type="reset"].active.focus,
    .open >
    input[type="reset"].dropdown-toggle:hover,
    .open >
    input[type="reset"].dropdown-toggle:focus,
    .open >
    input[type="reset"].dropdown-toggle.focus,
    input[type="submit"]:active:hover,
    input[type="submit"]:active:focus,
    input[type="submit"]:active.focus,
    input[type="submit"].active:hover,
    input[type="submit"].active:focus,
    input[type="submit"].active.focus,
    .open >
    input[type="submit"].dropdown-toggle:hover,
    .open >
    input[type="submit"].dropdown-toggle:focus,
    .open >
    input[type="submit"].dropdown-toggle.focus {
      color: #0d244d;
      background-color: #c7bdbd;
      border-color: #b5a7a7; }
  .btn.disabled:focus, .disabled.hero-action-btn:focus, .btn.disabled.focus, .disabled.focus.hero-action-btn, .btn:disabled:focus, .hero-action-btn:disabled:focus, .btn:disabled.focus, .hero-action-btn:disabled.focus,
  .button.disabled:focus,
  .button.disabled.focus,
  .button:disabled:focus,
  .button:disabled.focus,
  button.disabled:focus,
  button.disabled.focus,
  button:disabled:focus,
  button:disabled.focus,
  input[type="button"].disabled:focus,
  input[type="button"].disabled.focus,
  input[type="button"]:disabled:focus,
  input[type="button"]:disabled.focus,
  input[type="reset"].disabled:focus,
  input[type="reset"].disabled.focus,
  input[type="reset"]:disabled:focus,
  input[type="reset"]:disabled.focus,
  input[type="submit"].disabled:focus,
  input[type="submit"].disabled.focus,
  input[type="submit"]:disabled:focus,
  input[type="submit"]:disabled.focus {
    background-color: #efecec;
    border-color: #efecec; }
  .btn.disabled:hover, .disabled.hero-action-btn:hover, .btn:disabled:hover, .hero-action-btn:disabled:hover,
  .button.disabled:hover,
  .button:disabled:hover,
  button.disabled:hover,
  button:disabled:hover,
  input[type="button"].disabled:hover,
  input[type="button"]:disabled:hover,
  input[type="reset"].disabled:hover,
  input[type="reset"]:disabled:hover,
  input[type="submit"].disabled:hover,
  input[type="submit"]:disabled:hover {
    background-color: #efecec;
    border-color: #efecec; }
  .btn:focus, .hero-action-btn:focus, .btn.focus, .focus.hero-action-btn, .btn:active:focus, .hero-action-btn:active:focus, .btn:active.focus, .hero-action-btn:active.focus, .btn.active:focus, .active.hero-action-btn:focus, .btn.active.focus, .active.focus.hero-action-btn,
  .button:focus,
  .button.focus,
  .button:active:focus,
  .button:active.focus,
  .button.active:focus,
  .button.active.focus,
  button:focus,
  button.focus,
  button:active:focus,
  button:active.focus,
  button.active:focus,
  button.active.focus,
  input[type="button"]:focus,
  input[type="button"].focus,
  input[type="button"]:active:focus,
  input[type="button"]:active.focus,
  input[type="button"].active:focus,
  input[type="button"].active.focus,
  input[type="reset"]:focus,
  input[type="reset"].focus,
  input[type="reset"]:active:focus,
  input[type="reset"]:active.focus,
  input[type="reset"].active:focus,
  input[type="reset"].active.focus,
  input[type="submit"]:focus,
  input[type="submit"].focus,
  input[type="submit"]:active:focus,
  input[type="submit"]:active.focus,
  input[type="submit"].active:focus,
  input[type="submit"].active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:focus, .hero-action-btn:focus, .btn:hover, .hero-action-btn:hover,
  .button:focus,
  .button:hover,
  button:focus,
  button:hover,
  input[type="button"]:focus,
  input[type="button"]:hover,
  input[type="reset"]:focus,
  input[type="reset"]:hover,
  input[type="submit"]:focus,
  input[type="submit"]:hover {
    text-decoration: none; }
  .btn.focus, .focus.hero-action-btn, .btn:focus, .hero-action-btn:focus, .btn:active:focus, .hero-action-btn:active:focus,
  .button.focus,
  .button:focus,
  .button:active:focus,
  button.focus,
  button:focus,
  button:active:focus,
  input[type="button"].focus,
  input[type="button"]:focus,
  input[type="button"]:active:focus,
  input[type="reset"].focus,
  input[type="reset"]:focus,
  input[type="reset"]:active:focus,
  input[type="submit"].focus,
  input[type="submit"]:focus,
  input[type="submit"]:active:focus {
    text-decoration: none;
    outline: none; }
  .btn:active, .hero-action-btn:active, .btn.active, .active.hero-action-btn,
  .button:active,
  .button.active,
  button:active,
  button.active,
  input[type="button"]:active,
  input[type="button"].active,
  input[type="reset"]:active,
  input[type="reset"].active,
  input[type="submit"]:active,
  input[type="submit"].active {
    background-image: none;
    outline: 0; }
  .btn.disabled, .disabled.hero-action-btn, .btn:disabled, .hero-action-btn:disabled,
  .button.disabled,
  .button:disabled,
  button.disabled,
  button:disabled,
  input[type="button"].disabled,
  input[type="button"]:disabled,
  input[type="reset"].disabled,
  input[type="reset"]:disabled,
  input[type="submit"].disabled,
  input[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: .65; }

.btn-secondary, table.cart .coupon .button, .checkout_coupon .form-row-last .button {
  background-color: #0d244d;
  color: #fff; }

.form-inline-block {
  display: inline-block; }

.btn-longer {
  padding: 0.6875rem 2.625rem; }

.btn-primary,
input[type="submit"] {
  font-weight: bold; }

.form-row {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  margin-bottom: 1.714em; }
  @media (min-width: 768px) {
    .form-row {
      width: 100%; } }
  .form-row label:not(.inline) {
    display: block; }

#billing_address_2_field {
  margin-top: -0.714em; }

@media (min-width: 768px) {
  .form-row-first,
  .form-row-last {
    width: 50%; } }

.form-row-wide {
  clear: both;
  width: 100%; }

.form-row {
  padding-left: 0;
  padding-right: 0; }
  .form-row.form-row-first {
    padding-right: 15px;
    clear: left; }
  .form-row.form-row-last {
    padding-left: 15px; }

.clear::after, form::after {
  content: "";
  display: table;
  clear: both; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
.input-text {
  padding: 0.857em 1.214em;
  background-color: transparent;
  color: #818181;
  line-height: 1.286em;
  outline: none;
  border: 0;
  -webkit-appearance: none;
  border-radius: 1em;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc; }

textarea {
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  padding-left: .857em;
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  width: 100%; }

fieldset {
  clear: both; }
  fieldset legend {
    font-size: 1.5em; }

/**
 * Layout
 */
@media (min-width: 1200px) {
  .container {
    max-width: 1280px; } }

#content {
  margin-bottom: 10.714em; }
  #content #primary {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%;
    padding-right: 0;
    padding-left: 0; }
    @media (min-width: 992px) {
      #content #primary {
        padding-left: 0.9375rem;
        width: 75%;
        left: 25%; } }
  #content #sidebar {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%;
    padding-right: 0;
    padding-left: 0; }
    @media (min-width: 992px) {
      #content #sidebar {
       background:#fff;
	   padding:10px;
        width: 25%;
        right: 75%; } }

.error404 #content #primary,
.page-template-template-homepage-v1 #content #primary,
.page-template-template-homepage-v3 #content #primary,
.page-template-default #content #primary,
.full-width #content #primary,
.page-template-template-page-blank #content #primary {
  padding-left: 0; }
  @media (min-width: 768px) {
    .error404 #content #primary,
    .page-template-template-homepage-v1 #content #primary,
    .page-template-template-homepage-v3 #content #primary,
    .page-template-default #content #primary,
    .full-width #content #primary,
    .page-template-template-page-blank #content #primary {
      width: 100%;
      left: auto; } }

.right-sidebar #content #primary,
.page-template-template-page-sidebar-right #content #primary {
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 768px) {
    .right-sidebar #content #primary,
    .page-template-template-page-sidebar-right #content #primary {
      left: auto; } }
  @media (min-width: 992px) {
    .right-sidebar #content #primary,
    .page-template-template-page-sidebar-right #content #primary {
      padding-right: 15px; } }

.right-sidebar #content #sidebar,
.page-template-template-page-sidebar-right #content #sidebar {
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 768px) {
    .right-sidebar #content #sidebar,
    .page-template-template-page-sidebar-right #content #sidebar {
      right: auto; } }
  @media (min-width: 992px) {
    .right-sidebar #content #sidebar,
    .page-template-template-page-sidebar-right #content #sidebar {
      padding-left: 15px; } }

.page-template-template-page-centered-fullwidth #content #primary {
  padding-left: 0; }
  @media (min-width: 768px) {
    .page-template-template-page-centered-fullwidth #content #primary {
      width: 83.3333333333%;
      left: 8.3333333333%; } }

@media (min-width: 768px) {
  .woocommerce-lost-password #content #primary {
    width: 66.6666666667%;
    left: 16.6666666667%; } }

.col2-set {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .col2-set::after {
    content: "";
    display: table;
    clear: both; }
  .col2-set .col-1,
  .col2-set .col-2 {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .col2-set .col-1,
      .col2-set .col-2 {
        width: 50%; } }

.page-template-template-homepage-v2 #primary section:last-child,
.page-template-template-homepage-v2 #sidebar aside:last-child {
  margin-bottom: 0; }

.page-template-template-homepage-v3 #primary section:last-child {
  margin-bottom: 0; }

.page-template-template-homepage-v3 #content + .brands-carousel {
  margin-top: -6.143em; }

.woocommerce-page .page-header {
  position: relative;
  margin-bottom: 1.429em; }
  .woocommerce-page .page-header .woocommerce-result-count {
    position: absolute;
    margin: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }

.woocommerce-page .page-title {
  font-size: 1.786em;
  line-height: 1.6em;
  margin: 0; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  padding: 1em 1.618em;
  margin-bottom: 2.618em;
  background-color: #5cb85c;
  margin-left: 0;
  border-radius: 2px;
  color: #fff;
  clear: both;
  border-left: 0.618em solid rgba(0, 0, 0, 0.15); }
  .woocommerce-message::after,
  .woocommerce-info::after,
  .woocommerce-error::after,
  .woocommerce-noreviews::after,
  p.no-comments::after {
    content: "";
    display: table;
    clear: both; }
  .woocommerce-message a,
  .woocommerce-info a,
  .woocommerce-error a,
  .woocommerce-noreviews a,
  p.no-comments a {
    color: #fff; }
    .woocommerce-message a:hover,
    .woocommerce-info a:hover,
    .woocommerce-error a:hover,
    .woocommerce-noreviews a:hover,
    p.no-comments a:hover {
      color: #fff;
      opacity: 0.7; }
    .woocommerce-message a.button:hover,
    .woocommerce-info a.button:hover,
    .woocommerce-error a.button:hover,
    .woocommerce-noreviews a.button:hover,
    p.no-comments a.button:hover {
      opacity: 1; }
  .woocommerce-message .button,
  .woocommerce-info .button,
  .woocommerce-error .button,
  .woocommerce-noreviews .button,
  p.no-comments .button {
    float: right;
    padding: 0;
    background: none;
    color: #fff;
    box-shadow: none;
    line-height: 1.618;
    padding-left: 1em;
    border-width: 0;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgba(255, 255, 255, 0.25) !important;
    border-radius: 0; }
    .woocommerce-message .button:hover,
    .woocommerce-info .button:hover,
    .woocommerce-error .button:hover,
    .woocommerce-noreviews .button:hover,
    p.no-comments .button:hover {
      background: none;
      color: #fff;
      opacity: 0.7; }
  .woocommerce-message pre,
  .woocommerce-info pre,
  .woocommerce-error pre,
  .woocommerce-noreviews pre,
  p.no-comments pre {
    background-color: rgba(0, 0, 0, 0.1); }

.site-content > .container > .woocommerce > .woocommerce-message:first-child,
.site-content > .container > .woocommerce > .woocommerce-info:first-child,
.site-content > .container > .woocommerce > .woocommerce-error:first-child {
  margin-top: 2.618em; }

.wc-forward:after {
  content: "\f178";
  font-family: "FontAwesome";
  margin-left: .53em;
  font-weight: 400; }

.woocommerce-error {
  list-style: none; }

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  color: #0d244d; }
  .woocommerce-info a, .woocommerce-info button,
  .woocommerce-noreviews a,
  .woocommerce-noreviews button,
  p.no-comments a,
  p.no-comments button {
    color: #0d244d;
    font-weight: bold; }
    .woocommerce-info a:focus, .woocommerce-info a:hover, .woocommerce-info button:focus, .woocommerce-info button:hover,
    .woocommerce-noreviews a:focus,
    .woocommerce-noreviews a:hover,
    .woocommerce-noreviews button:focus,
    .woocommerce-noreviews button:hover,
    p.no-comments a:focus,
    p.no-comments a:hover,
    p.no-comments button:focus,
    p.no-comments button:hover {
      color: #0d244d;
      text-decoration: none; }

.woocommerce-error {
  background-color: #d9534f; }

dl.variation {
  font-size: .857em;
  margin: 0.857em 0 0 0; }
  dl.variation dd {
    margin: 0 0 1em; }
    dl.variation dd p {
      margin: 0; }

p.in-stock,
.in-stock span {
  color: #5cb85c; }

p.out-of-stock,
.out-of-stock span {
  color: #d9534f; }

p.available-on-backorder,
.available-on-backorder span {
  color: #f0ad4e; }

section {
  margin-bottom: 3.571em; }
  section header {
    margin-bottom: 2.857em;
	text-align:center;
}
    section header h1, section header .h1 {
      font-size: 1.2em;
      line-height: 1.2em;
      display: inline-block;
      padding-bottom: 0.200em;
	  letter-spacing:2px;
      position: relative;
	  font-weight:900;
      margin-bottom: 0; }
      section header h1:after, section header .h1:after {
        content: ' ';
        border-bottom: 2px solid transparent;
        display: block;
        position: absolute;
        bottom: -1px;
    
		width: 50%;
    left: 25%;
	}

section > h2 {
  font-size: 1.2em;
  line-height: 1.2em;
  position: relative;
  margin-bottom: 1.6em; }

.page .entry-header {
  text-align: center;
  margin-bottom: 2.857em; }
  .page .entry-header h1 {
    font-size: 2.857em;
    letter-spacing: -0.025em;
    margin-bottom: 0; }
  .page .entry-header .entry-subtitle {
    color: #9f9f9f; }
  .page .entry-header.header-with-cover-image {
    background-size: cover;
    background-position: center top;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    position: relative;
    min-height: 589px;
    margin-bottom: 0; }
    .page .entry-header.header-with-cover-image .caption {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
      .page .entry-header.header-with-cover-image .caption h1 {
        font-weight: 700;
        margin-bottom: 0; }
      .page .entry-header.header-with-cover-image .caption .entry-subtitle {
        color: #434343;
        font-size: 1.286em;
        position: relative;
        top: 1.667em; }

/**
 * Media
 */
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  display: inline-block; }

/**
 * Captions
 */
.wp-caption {
  margin-bottom: 1.618em;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto; }
  .wp-caption .wp-caption-text {
    text-align: left;
    font-style: italic;
    padding: 0 0 1em 0; }

/**
 * Embeds
 */
embed,
iframe,
object,
video {
  max-width: 100%; }

img.desaturate {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; }
  img.desaturate:hover {
    -webkit-filter: grayscale(0%);
    filter: none; }

.primary-nav .nav-inline > .menu-item {
  display: inline-block; }

.primary-nav .nav-inline > .menu-item + .menu-item {
  margin-left: 2.5em; }

.primary-nav .nav-inline > .menu-item.dropdown + .menu-item {
  margin-left: 2.143em; }

.primary-nav .nav-inline > .menu-item > a {
  display: inline-block;
  color: #334141;
  font-size: 1.071em;
  font-weight: bold; }
  .primary-nav .nav-inline > .menu-item > a:focus, .primary-nav .nav-inline > .menu-item > a:hover {
    text-decoration: none; }
  .primary-nav .nav-inline > .menu-item > a.disabled {
    color: #818a91; }
    .primary-nav .nav-inline > .menu-item > a.disabled, .primary-nav .nav-inline > .menu-item > a.disabled:focus, .primary-nav .nav-inline > .menu-item > a.disabled:hover {
      color: #818a91;
      cursor: not-allowed;
      background-color: transparent; }

.primary-nav .nav-inline .dropdown-toggle::after {
  content: '\f107';
  font-family: 'FontAwesome';
  color: #aeaeae;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-left: 0.5em;
  margin-right: 0;
  width: auto;
  height: auto; }

.primary-nav .nav-inline > .menu-item.open .dropdown-menu {
  transform: translateY(0%); }

.header-logo + .primary-nav {
  padding: .9em .9375rem; }

.departments-menu > .nav-item {
  width: 24%;
  margin-right: 15px; }
  .departments-menu > .nav-item .nav-link {
    padding-left: 1.5em; }

.departments-menu .menu-item-has-children > .dropdown-menu,
.departments-menu .departments-menu-dropdown {
  width: 100%;
  border-width: 2px;
  border-radius: 0.625rem;
  padding: 0.857em 0; }
  .departments-menu .menu-item-has-children > .dropdown-menu > li,
  .departments-menu .departments-menu-dropdown > li {
    padding: 0 0.929em; }
  .departments-menu .menu-item-has-children > .dropdown-menu:hover,
  .departments-menu .departments-menu-dropdown:hover {
    border-bottom-right-radius: 0; }

.departments-menu .menu-item-has-children > .dropdown-menu {
  padding: 0; }

.departments-menu .departments-menu-dropdown {
  top: 107%;
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  z-index: 2000; }

.departments-menu .dropdown-menu > .menu-item {
  position: static; }
  .departments-menu .dropdown-menu > .menu-item > a {
    display: block;
    width: 100%;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: none;
    border: 0;
    color: #0d244d;
    padding: 9px 0 9px 8px;
    white-space: normal; }
    .departments-menu .dropdown-menu > .menu-item > a:focus, .departments-menu .dropdown-menu > .menu-item > a:hover {
      color: #2b2d2f;
      text-decoration: none;
      background-color: #f5f5f5; }
    .departments-menu .dropdown-menu > .menu-item > a.active, .departments-menu .dropdown-menu > .menu-item > a.active:focus, .departments-menu .dropdown-menu > .menu-item > a.active:hover {
      color: #fff;
      text-decoration: none;
      background-color: #efecec;
      outline: 0; }
    .departments-menu .dropdown-menu > .menu-item > a.disabled, .departments-menu .dropdown-menu > .menu-item > a.disabled:focus, .departments-menu .dropdown-menu > .menu-item > a.disabled:hover {
      color: #818a91; }
    .departments-menu .dropdown-menu > .menu-item > a.disabled:focus, .departments-menu .dropdown-menu > .menu-item > a.disabled:hover {
      text-decoration: none;
      cursor: not-allowed;
      background-color: transparent;
      background-image: none;
      filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; }
    .departments-menu .dropdown-menu > .menu-item > a .fa {
      font-size: 1.071em;
      padding-right: 1em; }
    .departments-menu .dropdown-menu > .menu-item > a .ec {
      font-size: 1.286em;
      padding-right: 0.667em; }
    .departments-menu .dropdown-menu > .menu-item > a i {
      width: 30px; }
  .departments-menu .dropdown-menu > .menu-item.highlight > a {
    font-weight: bold; }
  .departments-menu .dropdown-menu > .menu-item + .menu-item > a {
    border-top: 1px solid #ddd; }

.departments-menu .menu-item-has-children > .dropdown-menu {
  top: -4px;
  border-radius: 0; }
  .departments-menu .menu-item-has-children > .dropdown-menu .menu-item-object-static_block {
    position: relative; }
  .departments-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) {
    width: 277px; }
    .departments-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block):first-child {
      margin-top: 1.143em; }
    .departments-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) .dropdown-menu {
      left: 98%; }

.page-template-template-homepage-v2 .departments-menu > .dropdown.open > .dropdown-menu,
.page-template-template-homepage-v2 .departments-menu > .dropdown > .dropdown-menu {
  display: block; }

.vertical-menu {
  clear: both;
  background-color: #fff;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
  width: 100%; }
  .vertical-menu .menu-item > a .fa {
    font-size: 1.071em;
    padding-right: 1em; }
  .vertical-menu .menu-item > a .ec {
    font-size: 1.286em;
    padding-right: 0.667em; }
  .vertical-menu .menu-item > a i {
    width: 30px; }
  .vertical-menu.make-absolute {
    width: calc( 100% - 2.143em);
    position: absolute;
    z-index: 1; }
  .vertical-menu > li.list-group-item {
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
    border: none;
    padding: 0;
    margin-bottom: 0.571em; }
    .vertical-menu > li.list-group-item > a, .vertical-menu > li.list-group-item > span {
      font-size: 1.143em;
      line-height: 1.125em;
      font-weight: bold;
      padding: 1.071em 1.25em;
      display: block; }
    .vertical-menu > li.list-group-item.dropdown {
      border-radius: 9px;
      padding: 0;
      margin-bottom: 0.875em; }
      .vertical-menu > li.list-group-item.dropdown > a[data-toggle="dropdown"], .vertical-menu > li.list-group-item.dropdown > a[data-toggle="dropdown-hover"] {
        padding: 1.071em 1.25em;
        display: block;
        color: #0d244d; }
        .vertical-menu > li.list-group-item.dropdown > a[data-toggle="dropdown"]:focus, .vertical-menu > li.list-group-item.dropdown > a[data-toggle="dropdown"]:hover, .vertical-menu > li.list-group-item.dropdown > a[data-toggle="dropdown-hover"]:focus, .vertical-menu > li.list-group-item.dropdown > a[data-toggle="dropdown-hover"]:hover {
          color: #0d244d;
          text-decoration: none; }
      .vertical-menu > li.list-group-item.dropdown.open {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0; }
  .vertical-menu > .menu-item:last-child {
    margin-bottom: 0.571em; }
    .vertical-menu > .menu-item:last-child > a {
      border-bottom: 0; }
  .vertical-menu > .menu-item,
  .vertical-menu .dropdown-menu > .menu-item {
    position: static;
    display: block;
    padding: 0 1.143em; }
    .vertical-menu > .menu-item.highlight > a,
    .vertical-menu .dropdown-menu > .menu-item.highlight > a {
      font-weight: bold; }
    .vertical-menu > .menu-item > a,
    .vertical-menu .dropdown-menu > .menu-item > a {
      display: block;
      border-bottom: 1px solid #ddd;
      padding: 0.608em 0.357em;
      font-size: 1em;
      color: #0d244d;
      font-weight: normal; }
      .vertical-menu > .menu-item > a:focus, .vertical-menu > .menu-item > a:hover,
      .vertical-menu .dropdown-menu > .menu-item > a:focus,
      .vertical-menu .dropdown-menu > .menu-item > a:hover {
        color: #0d244d;
        text-decoration: none;
        background-color: #f5f5f5;
        font-weight: bold; }
    .vertical-menu > .menu-item:focus > a, .vertical-menu > .menu-item:hover > a,
    .vertical-menu .dropdown-menu > .menu-item:focus > a,
    .vertical-menu .dropdown-menu > .menu-item:hover > a {
      background-color: #f5f5f5;
      font-weight: bold; }
  .vertical-menu .menu-item-has-children a[data-toggle="dropdown"]::after, .vertical-menu .menu-item-has-children a[data-toggle="dropdown-hover"]::after {
    font-family: 'font-gt';
    border-top: none;
    border-left: none;
    border-right: none;
    width: auto;
    height: auto; }
  .vertical-menu .menu-item-has-children > .dropdown-menu {
    top: 50px;
    border-radius: 0;
    padding: 0; }
    .vertical-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) {
      width: 277px; }
      .vertical-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block):first-child {
        margin-top: 1.143em; }
      .vertical-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) > a {
        border-bottom: 0;
        padding: 0.35em 1.429em; }
        .vertical-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) > a:focus, .vertical-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) > a:hover {
          background-color: transparent; }
      .vertical-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) .dropdown-menu {
        top: -4px;
        left: 99%; }
  .vertical-menu .list-group-item > .dropdown-menu {
    font-size: 14px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    width: 100%;
    top: 97%;
    padding-top: 0.714em;
    border-bottom-right-radius: 9px;
    border-bottom-left-radius: 9px;
    border-top: 0;
    border-color: #eee; }
    .vertical-menu .list-group-item > .dropdown-menu > .menu-item:last-child {
      margin-bottom: 0.571em; }
      .vertical-menu .list-group-item > .dropdown-menu > .menu-item:last-child > a {
        border-bottom: 0; }
    .vertical-menu .list-group-item > .dropdown-menu > .menu-item > a {
      padding-right: 0.257em; }
    .vertical-menu .list-group-item > .dropdown-menu > .menu-item .dropdown-menu {
      top: -3px;
      border-radius: 0;
      padding: 0; }

.secondary-nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  line-height: 3.714em; }
  .secondary-nav > .menu-item {
    display: inline-block; }
    .secondary-nav > .menu-item a {
      display: inline-block;
      font-weight: bold;
      color: #0d244d; }
      .secondary-nav > .menu-item a:focus, .secondary-nav > .menu-item a:hover {
        text-decoration: none;
        color: #0d244d; }
    .secondary-nav > .menu-item.highlight a {
      color: #df3737; }
    .secondary-nav > .menu-item.unbold a {
      font-weight: normal; }
    .secondary-nav > .menu-item.bold a {
      font-weight: normal; }
    .secondary-nav > .menu-item.pull-right a {
      font-weight: normal; }
    .secondary-nav > .menu-item + .menu-item {
      margin-left: 2em; }
  .secondary-nav .vc_row-has-fill > .vc_column_container > .vc_column-inner {
    padding-top: 0; }
  .secondary-nav > .dropdown.open > a {
    position: relative; }
    .secondary-nav > .dropdown.open > a::before {
      content: "\f0d8";
      position: absolute;
      display: block;
      left: 45%;
      bottom: -24px;
      font-size: 14px;
      font-family: "FontAwesome", sans-serif; }
  .secondary-nav > .dropdown > a.dropdown-toggle::after {
    content: "\f107";
    border: none;
    width: auto;
    height: auto;
    font-family: "FontAwesome", sans-serif;
    margin-left: 8px; }
  .secondary-nav > .dropdown.yamm-fw:last-child > .dropdown-menu, .secondary-nav > .dropdown.yamm-tfw:last-child > .dropdown-menu {
    right: 0; }
  .secondary-nav > .dropdown.yamm-fw .dropdown-menu,
  .secondary-nav > .dropdown.yamm-tfw .dropdown-menu {
    padding: 0; }
    .secondary-nav > .dropdown.yamm-fw .dropdown-menu li,
    .secondary-nav > .dropdown.yamm-fw .dropdown-menu > li,
    .secondary-nav > .dropdown.yamm-tfw .dropdown-menu li,
    .secondary-nav > .dropdown.yamm-tfw .dropdown-menu > li {
      padding: 0; }
  .secondary-nav > .dropdown .dropdown-menu {
    display: none;
    width: 270px;
    background: #fff;
    background-size: contain !important;
    font-size: 14px;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    border: 1px solid #ddd;
    border-top: 2px solid transparent;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); }
    .secondary-nav > .dropdown .dropdown-menu li {
      padding: 0px 18px; }
      .secondary-nav > .dropdown .dropdown-menu li a {
        white-space: normal;
        padding: 5px 0px;
        line-height: 26px;
        display: block;
        color: #0d244d;
        font-size: 14px;
        font-weight: 400; }
      .secondary-nav > .dropdown .dropdown-menu li.nav-title a {
        font-weight: 700; }
    .secondary-nav > .dropdown .dropdown-menu > li + li > a {
      border-top: 1px solid #eaeaea; }
    .secondary-nav > .dropdown .dropdown-menu .yamm-content li + li a {
      border-top: 0; }
  .secondary-nav > .dropdown.open > .dropdown-menu {
    display: block; }
  .secondary-nav > .dropdown .dropdown-submenu.menu-item-has-children > a::after {
    font-family: "FontAwesome", sans-serif;
    content: "\f105";
    float: right; }
  .secondary-nav > .dropdown .dropdown-submenu.open > a {
    font-weight: bold; }
  .secondary-nav > .dropdown .dropdown-submenu.open > .dropdown-menu {
    top: 0;
    left: 100% !important;
    display: block !important; }
  .secondary-nav > .dropdown .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100% !important; }

.navbar-search {
  float: right;
 }
  .navbar-search > .input-group {
    width: 100%;
    display: flex; }
    .navbar-search > .input-group .input-search-field {
      flex-grow: 1;
      flex-basis: 0;
      margin-right: -1px; }
      .navbar-search > .input-group .input-search-field .product-search-field.form-control, .navbar-search > .input-group .input-search-field table.cart .coupon .product-search-field.input-text, table.cart .coupon .navbar-search > .input-group .input-search-field .product-search-field.input-text {
        border-top-left-radius: 2.467em;
        border-bottom-left-radius: 2.467em; }
    .navbar-search > .input-group .input-search-field span {
      width: 600px; }
    .navbar-search > .input-group .search-categories {
      display: flex; }
    .navbar-search > .input-group .search-categories,
    .navbar-search > .input-group .input-group-btn {
      width: auto;
      height: 50px; }
  .navbar-search .form-control, .navbar-search table.cart .coupon .input-text, table.cart .coupon .navbar-search .input-text {
    background: #fff;
    line-height: 1.34em;
    padding: 1.01em 2.134em;
    height: 50px;
    border-radius: 2.467em; }
  .navbar-search .search-field:not(:first-child):not(:last-child) {
    border-top-left-radius: 2.467em;
    border-bottom-left-radius: 2.467em; }
  .navbar-search .btn, .navbar-search .hero-action-btn, .navbar-search button {
    line-height: 1.36em;
    padding: 1.08em 1.93em;
    height: 50px;
    border-radius: 2.571em; }
    .navbar-search .btn:hover, .navbar-search .hero-action-btn:hover, .navbar-search .btn:focus, .navbar-search .hero-action-btn:focus, .navbar-search button:hover, .navbar-search button:focus {
      background-color: #000;
      border-color: #000;
      color: #fff; }
  .navbar-search .search-categories.input-group-addon {
    border: none;
    background-color: #fff; }
  .navbar-search .search-categories > select {
    color: #6b6b6b;
    font-size: 0.938em;
    line-height: 1.4em;
    display: inline-block;
    max-width: 100%;
    padding: 0 1.75rem 0 .75rem;
    padding-right: .75rem \9;
    vertical-align: middle;
    background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
    background-image: none \9;
    background-size: 8px 10px;
    border: none;
    -moz-appearance: none;
    -webkit-appearance: none; }
    .navbar-search .search-categories > select:focus {
      border-color: #51a7e8;
      outline: none; }
    .navbar-search .search-categories > select::-ms-expand {
      opacity: 0; }

.header-v3 .navbar-search .btn, .header-v3 .navbar-search .hero-action-btn,
.header-v3 .navbar-search .hero-action-btn,
.header-v3 .navbar-search button,
.header-v3 .navbar-search .form-control,
.header-v3 .navbar-search table.cart .coupon .input-text, table.cart .coupon
.header-v3 .navbar-search .input-text,
.header-v3 .navbar-search > .input-group .input-group-btn,
.header-v3 .navbar-search > .input-group .search-categories,
.header-v1 .navbar-search .btn,
.header-v1 .navbar-search .hero-action-btn,
.header-v1 .navbar-search .hero-action-btn,
.header-v1 .navbar-search button,
.header-v1 .navbar-search .form-control,
.header-v1 .navbar-search table.cart .coupon .input-text, table.cart .coupon
.header-v1 .navbar-search .input-text,
.header-v1 .navbar-search > .input-group .input-group-btn,
.header-v1 .navbar-search > .input-group .search-categories {
  height: 54px; }

.navbar-mini-cart .nav-link > .fa {
  margin-right: 1.071em; }

.navbar-mini-cart .nav-link {
  position: relative; }

.navbar-mini-cart .cart-items-count {
  font-size: 0.750em;
  line-height: 1.750em;
  font-weight: bold;
  position: absolute;
  left: 7px;
  width: 1.750em;
  text-align: center;
  border-radius: 50%;
  bottom: 4px; }

.dropdown-menu-mini-cart {
  width: 332px;
  left: auto;
  right: 0;
  padding: 2.2em 2.2em 1.2em 2.2em;
  border-radius: 0;
  top: 120% !important;
  box-shadow: 0px 0px 6px 0px rgba(1, 1, 1, 0.3);
  border: none; }
  .dropdown-menu-mini-cart .mini_cart_item {
    margin-bottom: 1em;
    padding-bottom: 1.143em;
    border-bottom: 1px solid #ddd; }
  .dropdown-menu-mini-cart p.total {
    text-align:center; }
  .dropdown-menu-mini-cart dl.variation,
  .dropdown-menu-mini-cart .quantity {
    margin-left: 95px; }
  .dropdown-menu-mini-cart p.buttons {
    text-align: center;
    margin-bottom: 0; }
  .dropdown-menu-mini-cart .wc-forward {
    padding: 0.75em 2.07em;
    margin: 0 0.5em; }
    .dropdown-menu-mini-cart .wc-forward::after {
      content: none; }

.woocommerce-breadcrumb {
  margin-top: 1.786em;
  margin-bottom: 20px; }
  .woocommerce-breadcrumb a {
    color: #0d244d;
    display: inline-block; }
    .woocommerce-breadcrumb a:focus, .woocommerce-breadcrumb a:hover {
      color: #0d244d;
      text-decoration: none; }
  .woocommerce-breadcrumb span.delimiter {
    margin: 0 1.429em; }
    .woocommerce-breadcrumb span.delimiter + a {
      padding: 0.465em 0.929em;
      background-color: #f5f5f5;
      border-radius: 0.357em; }
      .woocommerce-breadcrumb span.delimiter + a:focus, .woocommerce-breadcrumb span.delimiter + a:hover {
        background-color: #e8e8e8; }

.home.blog #content,
.home.page .entry-header,
.no-breadcrumb #content,
.page.no-breadcrumb .entry-header {
  margin-top: 3.571em; }

@media (max-width: 568px) {
  .woocommerce-breadcrumb {
    margin-top: 0;
    background-color: #f8f8f8;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px 15px 0 15px; }
    .woocommerce-breadcrumb a {
      padding-bottom: 1.2em; }
    .woocommerce-breadcrumb span.delimiter {
      margin: 0 10px; }
      .woocommerce-breadcrumb span.delimiter + a {
        padding: 0 0 1.2em 0; } }

.woocommerce-ordering .orderby {
  display: inline-block;
  max-width: 100%;
  padding: .375rem 1.75rem .375rem .75rem;
  padding-right: .75rem \9;
  color: #55595c;
  vertical-align: middle;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
  background-image: none \9;
  background-size: 8px 10px;
  border: 1px solid #ccc;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 1.071em;
  color: #7e7e7e;
  border-color: #e3e3e3; }
  .woocommerce-ordering .orderby:focus {
    border-color: #51a7e8;
    outline: none; }
  .woocommerce-ordering .orderby::-ms-expand {
    opacity: 0; }

.wc-tabs, .ec-tabs {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .wc-tabs > li, .ec-tabs > li {
    display: inline-block; }
    .wc-tabs > li a, .ec-tabs > li a {
      line-height: 1em;
      font-size: 1.286em;
      color: #0d244d;
      padding-bottom: 1em;
      position: relative;
      display: block; }
      .wc-tabs > li a:focus, .wc-tabs > li a:hover, .ec-tabs > li a:focus, .ec-tabs > li a:hover {
        text-decoration: none; }
    .wc-tabs > li.active a, .ec-tabs > li.active a {
      font-weight: bold; }
      .wc-tabs > li.active a::before, .ec-tabs > li.active a::before {
        content: ' ';
        height: 4px;
        width: 10px;
        display: block;
        position: absolute;
        bottom: -5px;
        left: 50%;
        border-radius: 0 0 10px 10px;
        transform: translateX(-50%); }
      .wc-tabs > li.active a::after, .ec-tabs > li.active a::after {
        content: ' ';
        border-bottom: 2px solid transparent;
        display: block;
        position: absolute;
        bottom: -1px;
        width: 100%; }
    .wc-tabs > li + li, .ec-tabs > li + li {
      margin-left: 3.214em; }

.gt-wc-wppp-select {
  border-radius: 1.071em;
  color: #7e7e7e;
  border-color: #e3e3e3; }

.form-adv-pagination {
  display: inline-block; }

.gt-advanced-pagination {
  color: #7e7e7e; }
  .gt-advanced-pagination input[type="number"] {
    color: #7e7e7e;
    width: 3.335em;
    text-align: center;
    padding: 0.201em 0.75em;
    border: 1px solid #e3e3e3;
    -moz-appearance: textfield; }
  .gt-advanced-pagination input[type=number]::-webkit-inner-spin-button,
  .gt-advanced-pagination input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0; }
  .gt-advanced-pagination a.prev {
    padding-right: 0.600em; }
  .gt-advanced-pagination a.next {
    padding-left: 0.600em; }
  .gt-advanced-pagination a.prev, .gt-advanced-pagination a.next {
    color: #b0b0b0;
    font-size: 1.429em; }
    .gt-advanced-pagination a.prev:focus, .gt-advanced-pagination a.prev:hover, .gt-advanced-pagination a.next:focus, .gt-advanced-pagination a.next:hover {
      text-decoration: none;
      color: #b0b0b0; }
  .gt-advanced-pagination .form-control, .gt-advanced-pagination table.cart .coupon .input-text, table.cart .coupon .gt-advanced-pagination .input-text {
    display: inline-block; }

li.product:hover, .section-onsale-product .onsale-product:hover, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover, .products-carousel .owl-item .product:hover, li.product.hover, .section-onsale-product .hover.onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content, .products-carousel .owl-item .hover.product {
  z-index: 999;
  position: relative; }
  li.product:hover .product-inner, .section-onsale-product .onsale-product:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .product-inner, .products-carousel .owl-item .product:hover .product-inner, li.product.hover .product-inner, .section-onsale-product .hover.onsale-product .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content .product-inner, .products-carousel .owl-item .hover.product .product-inner {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    box-shadow: 0px 0px 6px 0px rgba(1, 1, 1, 0.3);
    background-color: #fff; }
  li.product:hover .hover-area, .section-onsale-product .onsale-product:hover .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .hover-area, .products-carousel .owl-item .product:hover .hover-area, li.product.hover .hover-area, .section-onsale-product .hover.onsale-product .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content .hover-area, .products-carousel .owl-item .hover.product .hover-area {
    display: block;
    padding-top: 0.214em;
     }

li.product .product-inner, .section-onsale-product .onsale-product .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-inner, .products-carousel .owl-item .product .product-inner {
  padding: 10px;

   }

li.product .hover-area, .section-onsale-product .onsale-product .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area, .products-carousel .owl-item .product .hover-area {

  border: none;
  position: relative;
  }
  li.product .hover-area .button, .section-onsale-product .onsale-product .hover-area .button, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button, .products-carousel .owl-item .product .hover-area .button {
    position: absolute;
    top: -20px;
    left: 50%;
    white-space: pre;
    transform: translateX(-50%); }
    li.product .hover-area .button:hover, .section-onsale-product .onsale-product .hover-area .button:hover, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button:hover, .products-carousel .owl-item .product .hover-area .button:hover, li.product .hover-area .button:active, .section-onsale-product .onsale-product .hover-area .button:active, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button:active, .products-carousel .owl-item .product .hover-area .button:active, li.product .hover-area .button:focus, .section-onsale-product .onsale-product .hover-area .button:focus, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button:focus, .products-carousel .owl-item .product .hover-area .button:focus {
      color: #fff; }
  li.product .hover-area .action-buttons, .section-onsale-product .onsale-product .hover-area .action-buttons, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons, .products-carousel .owl-item .product .hover-area .action-buttons {
    width: 100%;
    font-size: 0.929em;
    line-height: 1.385em;
    display: flex;
    justify-content: space-around;
    align-items: center; }
    li.product .hover-area .action-buttons .clear, .section-onsale-product .onsale-product .hover-area .action-buttons .clear, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons .clear, .products-carousel .owl-item .product .hover-area .action-buttons .clear {
      display: none; }
    li.product .hover-area .action-buttons div, .section-onsale-product .onsale-product .hover-area .action-buttons div, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons div, .products-carousel .owl-item .product .hover-area .action-buttons div, li.product .hover-area .action-buttons a, .section-onsale-product .onsale-product .hover-area .action-buttons a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons a, .products-carousel .owl-item .product .hover-area .action-buttons a, li.product .hover-area .action-buttons span, .section-onsale-product .onsale-product .hover-area .action-buttons span, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons span, .products-carousel .owl-item .product .hover-area .action-buttons span, li.product .hover-area .action-buttons p, .section-onsale-product .onsale-product .hover-area .action-buttons p, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons p, .products-carousel .owl-item .product .hover-area .action-buttons p {
      margin: 0;
      padding: 0;
      color: #949494; }
    li.product .hover-area .action-buttons > div, .section-onsale-product .onsale-product .hover-area .action-buttons > div, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons > div, .products-carousel .owl-item .product .hover-area .action-buttons > div, li.product .hover-area .action-buttons > a, .section-onsale-product .onsale-product .hover-area .action-buttons > a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons > a, .products-carousel .owl-item .product .hover-area .action-buttons > a {
      padding-top: 0.571em; }
    li.product .hover-area .action-buttons .clear, .section-onsale-product .onsale-product .hover-area .action-buttons .clear, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons .clear, .products-carousel .owl-item .product .hover-area .action-buttons .clear {
      display: none; }
    li.product .hover-area .action-buttons a:hover, .section-onsale-product .onsale-product .hover-area .action-buttons a:hover, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons a:hover, .products-carousel .owl-item .product .hover-area .action-buttons a:hover {
      color: #3b3b3b; }

li.product .loop-product-categories, .section-onsale-product .onsale-product .loop-product-categories, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories, .products-carousel .owl-item .product .loop-product-categories {
  display: block;
  margin-bottom: 1em;
  font-size: 0.857em;
  line-height: 1.05em;
  height: 1.05em;
  color: #878787;
  overflow: hidden; }
  li.product .loop-product-categories a, .section-onsale-product .onsale-product .loop-product-categories a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories a, .products-carousel .owl-item .product .loop-product-categories a {
    color: #878787; }
    li.product .loop-product-categories a:focus, .section-onsale-product .onsale-product .loop-product-categories a:focus, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories a:focus, .products-carousel .owl-item .product .loop-product-categories a:focus, li.product .loop-product-categories a:hover, .section-onsale-product .onsale-product .loop-product-categories a:hover, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories a:hover, .products-carousel .owl-item .product .loop-product-categories a:hover {
      text-decoration: none;
      color: #333; }

li.product a, .section-onsale-product .onsale-product a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content a, .products-carousel .owl-item .product a {
  color: #0062bd; }
  li.product a:focus, .section-onsale-product .onsale-product a:focus, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content a:focus, .products-carousel .owl-item .product a:focus, li.product a:hover, .section-onsale-product .onsale-product a:hover, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content a:hover, .products-carousel .owl-item .product a:hover {
    text-decoration: none; }

li.product h3, .section-onsale-product .onsale-product h3, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content h3, .products-carousel .owl-item .product h3,
li.product .woocommerce-loop-product__title, .section-onsale-product .onsale-product .woocommerce-loop-product__title, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .woocommerce-loop-product__title, .products-carousel .owl-item .product .woocommerce-loop-product__title {
  font-size: 1em;
  line-height: 1.286em;
 letter-spacing:-0.5px;
	text-align:center;
	color:#231f20;
  overflow: hidden; }

li.product .product-thumbnail, .section-onsale-product .onsale-product .product-thumbnail, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-thumbnail, .products-carousel .owl-item .product .product-thumbnail {
  margin-bottom: 0.714em;
  position: relative;
  width: 100%;
  padding-bottom: 88%;

  height: 0; }

li.product .product-rating, .section-onsale-product .onsale-product .product-rating, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-rating, .products-carousel .owl-item .product .product-rating {
  clear: both;
  margin-bottom: 1.667em;
  font-size: 0.857em;
  color: #7d7d7d; }
  li.product .product-rating::after, .section-onsale-product .onsale-product .product-rating::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-rating::after, .products-carousel .owl-item .product .product-rating::after {
    content: "";
    display: table;
    clear: both; }
  li.product .product-rating .star-rating, .section-onsale-product .onsale-product .product-rating .star-rating, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-rating .star-rating, .products-carousel .owl-item .product .product-rating .star-rating {
    display: inline-block; }

li.product .product-short-description, .section-onsale-product .onsale-product .product-short-description, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-short-description, .products-carousel .owl-item .product .product-short-description {
  clear: both;
  color: #7d7d7d;
  font-size: 0.857em;
  line-height: 1.75em;
  margin-bottom: 3em;
  height: 7em;
  overflow: hidden; }
  li.product .product-short-description::after, .section-onsale-product .onsale-product .product-short-description::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-short-description::after, .products-carousel .owl-item .product .product-short-description::after {
    content: "";
    display: table;
    clear: both; }
  li.product .product-short-description ul, .section-onsale-product .onsale-product .product-short-description ul, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-short-description ul, .products-carousel .owl-item .product .product-short-description ul {
    padding-left: 18px; }

li.product .product-sku, .section-onsale-product .onsale-product .product-sku, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-sku, .products-carousel .owl-item .product .product-sku {
  font-size: 0.857em;
  color: #7d7d7d;
  margin-bottom: 0.5em; }

li.product .wp-post-image, .section-onsale-product .onsale-product .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .wp-post-image, .products-carousel .owl-item .product .wp-post-image {
  width: 100%;
  position: absolute;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  vertical-align: middle;
  max-height: 100%; }

li.product .price-add-to-cart, .section-onsale-product .onsale-product .price-add-to-cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price-add-to-cart, .products-carousel .owl-item .product .price-add-to-cart {
  clear: both;
  margin-bottom: 0.929em;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center; }

li.product .price, .section-onsale-product .onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price, .products-carousel .owl-item .product .price {
  color: #343f49;
  font-size: 1.8em;
  line-height: 1.5rem;
  
	width:100%;
	text-align:center;
  }
  li.product .price ins, .section-onsale-product .onsale-product .price ins, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price ins, .products-carousel .owl-item .product .price ins, li.product .price del, .section-onsale-product .onsale-product .price del, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price del, .products-carousel .owl-item .product .price del {
    text-decoration: none; }
  li.product .price ins, .section-onsale-product .onsale-product .price ins, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price ins, .products-carousel .owl-item .product .price ins {
    color: #191f2b; 
	display:block;
	margin-right:5px;
	}
  li.product .price del, .section-onsale-product .onsale-product .price del, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price del, .products-carousel .owl-item .product .price del {
    color: #b9bbbd;
    font-size: 0.8em;
    line-height: 1.5em;
display:block;	}
  li.product .price del .amount, .section-onsale-product .onsale-product .price del .amount, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price del .amount, .products-carousel .owl-item .product .price del .amount {
    text-decoration: line-through; 
    color: #999;
    font-weight: 400;
    
    }

li.product .added_to_cart, .section-onsale-product .onsale-product .added_to_cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart, .products-carousel .owl-item .product .added_to_cart, li.product .button, .section-onsale-product .onsale-product .button, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button, .products-carousel .owl-item .product .button {
  float: right;
  background-color: transparent;
  text-indent: -99999px;
  padding: 0; }
  li.product .added_to_cart:focus, .section-onsale-product .onsale-product .added_to_cart:focus, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart:focus, .products-carousel .owl-item .product .added_to_cart:focus, li.product .added_to_cart:hover, .section-onsale-product .onsale-product .added_to_cart:hover, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart:hover, .products-carousel .owl-item .product .added_to_cart:hover, li.product .button:focus, .section-onsale-product .onsale-product .button:focus, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button:focus, .products-carousel .owl-item .product .button:focus, li.product .button:hover, .section-onsale-product .onsale-product .button:hover, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button:hover, .products-carousel .owl-item .product .button:hover {
    background-color: transparent; }
  li.product .added_to_cart::before, .section-onsale-product .onsale-product .added_to_cart::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart::before, .products-carousel .owl-item .product .added_to_cart::before, li.product .button::before, .section-onsale-product .onsale-product .button::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button::before, .products-carousel .owl-item .product .button::before {
    display: inline-block;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #e6e6e6;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    padding: 3px; }

/*
wishlist fix Sertan K.
li.product .added_to_cart::before, .section-onsale-product .onsale-product .added_to_cart::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart::before, .products-carousel .owl-item .product .added_to_cart::before, li.product .button::before, .section-onsale-product .onsale-product .button::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button::before, .products-carousel .owl-item .product .button::before {
  content: "\f178";
  padding: 0.5em 0.504em;
  float: right;
  text-indent: 0; } */

li.product .button.add_to_cart_button::before, .section-onsale-product .onsale-product .button.add_to_cart_button::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.add_to_cart_button::before, .products-carousel .owl-item .product .button.add_to_cart_button::before {
  content: "\61";
  font-family: "font-gt";
  padding: 0.473em 0.478em;
  float: right;
  text-indent: 0;
  line-height: 16px; }

li.product .button.product_type_variable::before, .section-onsale-product .onsale-product .button.product_type_variable::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.product_type_variable::before, .products-carousel .owl-item .product .button.product_type_variable::before {
  content: "\f0a6";
  padding: 0.5em 0.575em;
  font-family: 'FontAwesome'; }

li.product .button.product_type_external::before, .section-onsale-product .onsale-product .button.product_type_external::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.product_type_external::before, .products-carousel .owl-item .product .button.product_type_external::before {
  content: "\f08e";
  padding: 0.5em 0.504em;
  float: right;
  text-indent: 0; }

li.product .button.added, .section-onsale-product .onsale-product .button.added, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.added, .products-carousel .owl-item .product .button.added {
  display: none; }

li.product .button, .section-onsale-product .onsale-product .button, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button, .products-carousel .owl-item .product .button, li.product .added_to_cart, .section-onsale-product .onsale-product .added_to_cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart, .products-carousel .owl-item .product .added_to_cart {
  width: 2.571em; }

.action-buttons a:hover {
  color: #3b3b3b; }

.columns-4 ul.products > li.product.list-view, .columns-4 .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product .columns-4 ul.products > .list-view.onsale-product, .columns-4 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-4 ul.products > .list-view.onsale-product-content, .columns-4 .products-carousel .owl-item ul.products > .list-view.product, .products-carousel .owl-item .columns-4 ul.products > .list-view.product,
.columns-5 ul.products > li.product.list-view,
.columns-5 .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product
.columns-5 ul.products > .list-view.onsale-product,
.columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
.columns-5 ul.products > .list-view.onsale-product-content,
.columns-5 .products-carousel .owl-item ul.products > .list-view.product, .products-carousel .owl-item
.columns-5 ul.products > .list-view.product,
.columns-6 ul.products > li.product.list-view,
.columns-6 .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product
.columns-6 ul.products > .list-view.onsale-product,
.columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
.columns-6 ul.products > .list-view.onsale-product-content,
.columns-6 .products-carousel .owl-item ul.products > .list-view.product, .products-carousel .owl-item
.columns-6 ul.products > .list-view.product,
ul.products > li.product.list-view, .section-onsale-product
ul.products > .list-view.onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
ul.products > .list-view.onsale-product-content, .products-carousel .owl-item
ul.products > .list-view.product {
  float: none;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%; height:auto ; }
  @media (min-width: 768px) {
    .columns-4 ul.products > li.product.list-view, .columns-4 .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product .columns-4 ul.products > .list-view.onsale-product, .columns-4 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-4 ul.products > .list-view.onsale-product-content, .columns-4 .products-carousel .owl-item ul.products > .list-view.product, .products-carousel .owl-item .columns-4 ul.products > .list-view.product,
    .columns-5 ul.products > li.product.list-view,
    .columns-5 .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product
    .columns-5 ul.products > .list-view.onsale-product,
    .columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    .columns-5 ul.products > .list-view.onsale-product-content,
    .columns-5 .products-carousel .owl-item ul.products > .list-view.product, .products-carousel .owl-item
    .columns-5 ul.products > .list-view.product,
    .columns-6 ul.products > li.product.list-view,
    .columns-6 .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product
    .columns-6 ul.products > .list-view.onsale-product,
    .columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    .columns-6 ul.products > .list-view.onsale-product-content,
    .columns-6 .products-carousel .owl-item ul.products > .list-view.product, .products-carousel .owl-item
    .columns-6 ul.products > .list-view.product,
    ul.products > li.product.list-view, .section-onsale-product
    ul.products > .list-view.onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    ul.products > .list-view.onsale-product-content, .products-carousel .owl-item
    ul.products > .list-view.product {
      width: 100%; } }

ul.products > li.product.list-view, .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .products-carousel .owl-item ul.products > .list-view.product {
  padding-bottom: 2.143em;
  margin-bottom: 2.143em;
  border-bottom: 1px solid #ddd; }
  ul.products > li.product.list-view:last-child, .section-onsale-product ul.products > .list-view.onsale-product:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:last-child, .products-carousel .owl-item ul.products > .list-view.product:last-child {
    margin-bottom: -1.286em;
    border-bottom: none; }
  ul.products > li.product.list-view .media-left, .section-onsale-product ul.products > .list-view.onsale-product .media-left, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-left, .products-carousel .owl-item ul.products > .list-view.product .media-left {
    padding-right: 2.5em; }
    ul.products > li.product.list-view .media-left .wp-post-image, .section-onsale-product ul.products > .list-view.onsale-product .media-left .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-left .wp-post-image, .products-carousel .owl-item ul.products > .list-view.product .media-left .wp-post-image {
      position: static;
      display: block;
      max-width: none;
      height: auto;
      width: 270px; }
  ul.products > li.product.list-view .media-body .col-xs-12:first-child, .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:first-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:first-child, .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:first-child {
    padding-right: 45px;
    overflow: hidden; }
    @media (min-width: 768px) {
      ul.products > li.product.list-view .media-body .col-xs-12:first-child, .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:first-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:first-child, .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:first-child {
        width: 65.926%; } }
  @media (min-width: 768px) {
    ul.products > li.product.list-view .media-body .col-xs-12:last-child, .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:last-child, .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:last-child {
      width: 34.074%; } }
  ul.products > li.product.list-view .product-rating, .section-onsale-product ul.products > .list-view.onsale-product .product-rating, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .product-rating, .products-carousel .owl-item ul.products > .list-view.product .product-rating {
    margin-bottom: 1em; }
  ul.products > li.product.list-view .product-short-description, .section-onsale-product ul.products > .list-view.onsale-product .product-short-description, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .product-short-description, .products-carousel .owl-item ul.products > .list-view.product .product-short-description {
    height: 5.25em;
    font-size: 0.929em; }
  ul.products > li.product.list-view .price, .section-onsale-product ul.products > .list-view.onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .price, .products-carousel .owl-item ul.products > .list-view.product .price {
    margin-bottom: 0.714em;
    display: block; }
  ul.products > li.product.list-view .hover-area, .section-onsale-product ul.products > .list-view.onsale-product .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .hover-area, .products-carousel .owl-item ul.products > .list-view.product .hover-area {
    display: block;
    position: static;
    background-color: transparent; }
  ul.products > li.product.list-view div.availability, .section-onsale-product ul.products > .list-view.onsale-product div.availability, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content div.availability, .products-carousel .owl-item ul.products > .list-view.product div.availability {
    display: block;
    padding-bottom: 0.714em;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.429em; }
    ul.products > li.product.list-view div.availability p.stock, .section-onsale-product ul.products > .list-view.onsale-product div.availability p.stock, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content div.availability p.stock, .products-carousel .owl-item ul.products > .list-view.product div.availability p.stock {
      display: inline; }
  ul.products > li.product.list-view:hover .hover-area, .section-onsale-product ul.products > .list-view.onsale-product:hover .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:hover .hover-area, .products-carousel .owl-item ul.products > .list-view.product:hover .hover-area {
    padding-top: 0;
    border-top: none; }
  ul.products > li.product.list-view::after, .section-onsale-product ul.products > .list-view.onsale-product::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content::after, .products-carousel .owl-item ul.products > .list-view.product::after {
    content: none; }

ul.products > li.product.list-view:not(.list-view-small) .button, .section-onsale-product ul.products > .list-view.onsale-product:not(.list-view-small) .button, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:not(.list-view-small) .button, .products-carousel .owl-item ul.products > .list-view.product:not(.list-view-small) .button {
  font-size: inherit;
  float: none;
  background-color: inherit;
  display: block;
  padding: 0.643em;
  text-align: center;
  font-weight: bold;
  text-indent: 0;
  background-color: #e6e6e6;
  color: #fff;
  margin-bottom: 1.143em; }
  ul.products > li.product.list-view:not(.list-view-small) .button::before, .section-onsale-product ul.products > .list-view.onsale-product:not(.list-view-small) .button::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:not(.list-view-small) .button::before, .products-carousel .owl-item ul.products > .list-view.product:not(.list-view-small) .button::before {
    background-color: transparent;
    padding: 0;
    position: relative;
    left: -8px;
    font-size: 21px;
    top: 4px; }

ul.products > li.product.list-view:not(.list-view-small) .button, .section-onsale-product ul.products > .list-view.onsale-product:not(.list-view-small) .button, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:not(.list-view-small) .button, .products-carousel .owl-item ul.products > .list-view.product:not(.list-view-small) .button, ul.products > li.product.list-view:not(.list-view-small) .added_to_cart, .section-onsale-product ul.products > .list-view.onsale-product:not(.list-view-small) .added_to_cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:not(.list-view-small) .added_to_cart, .products-carousel .owl-item ul.products > .list-view.product:not(.list-view-small) .added_to_cart {
  width: auto; }

@media (min-width: 768px) {
  ul.products > li.product.list-view-small .media-body .col-xs-12:first-child, .section-onsale-product ul.products > .list-view-small.onsale-product .media-body .col-xs-12:first-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .media-body .col-xs-12:first-child, .products-carousel .owl-item ul.products > .list-view-small.product .media-body .col-xs-12:first-child {
    width: 71.926%; } }

@media (min-width: 768px) {
  ul.products > li.product.list-view-small .media-body .col-xs-12:last-child, .section-onsale-product ul.products > .list-view-small.onsale-product .media-body .col-xs-12:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .media-body .col-xs-12:last-child, .products-carousel .owl-item ul.products > .list-view-small.product .media-body .col-xs-12:last-child {
    width: 28.074%; } }

ul.products > li.product.list-view-small .media-left, .section-onsale-product ul.products > .list-view-small.onsale-product .media-left, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .media-left, .products-carousel .owl-item ul.products > .list-view-small.product .media-left {
  padding-right: 1.786em; }
  ul.products > li.product.list-view-small .media-left .wp-post-image, .section-onsale-product ul.products > .list-view-small.onsale-product .media-left .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .media-left .wp-post-image, .products-carousel .owl-item ul.products > .list-view-small.product .media-left .wp-post-image {
    width: 120px; }

ul.products > li.product.list-view-small .loop-product-categories, .section-onsale-product ul.products > .list-view-small.onsale-product .loop-product-categories, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .loop-product-categories, .products-carousel .owl-item ul.products > .list-view-small.product .loop-product-categories {
  margin-bottom: 0.833em; }

ul.products > li.product.list-view-small h3, .section-onsale-product ul.products > .list-view-small.onsale-product h3, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content h3, .products-carousel .owl-item ul.products > .list-view-small.product h3 {
  height: 1.286em;
  margin-bottom: 0; }

ul.products > li.product.list-view-small .product-short-description, .section-onsale-product ul.products > .list-view-small.onsale-product .product-short-description, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .product-short-description, .products-carousel .owl-item ul.products > .list-view-small.product .product-short-description {
  height: 1.75em;
  margin-bottom: 0.714em; }

ul.products > li.product.list-view-small .product-rating, .section-onsale-product ul.products > .list-view-small.onsale-product .product-rating, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .product-rating, .products-carousel .owl-item ul.products > .list-view-small.product .product-rating {
  line-height: 1;
  margin-bottom: 0; }

ul.products > li.product.list-view-small .price-add-to-cart, .section-onsale-product ul.products > .list-view-small.onsale-product .price-add-to-cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .price-add-to-cart, .products-carousel .owl-item ul.products > .list-view-small.product .price-add-to-cart {
  border-bottom: 1px solid #ddd; }
  ul.products > li.product.list-view-small .price-add-to-cart .button::before, .section-onsale-product ul.products > .list-view-small.onsale-product .price-add-to-cart .button::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view-small.onsale-product-content .price-add-to-cart .button::before, .products-carousel .owl-item ul.products > .list-view-small.product .price-add-to-cart .button::before {
    margin-bottom: 0.778em; }

.woocommerce-pagination ul.page-numbers,
.pagination ul.page-numbers {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .woocommerce-pagination ul.page-numbers::after,
  .pagination ul.page-numbers::after {
    content: "";
    display: table;
    clear: both; }
  .woocommerce-pagination ul.page-numbers > li,
  .pagination ul.page-numbers > li {
    float: left;
    margin-right: 0.286em; }
    .woocommerce-pagination ul.page-numbers > li a, .woocommerce-pagination ul.page-numbers > li span,
    .pagination ul.page-numbers > li a,
    .pagination ul.page-numbers > li span {
      color: #7e7e7e;
      display: block;
      padding: 0.643em 1.429em;
      border: 1px solid #e3e3e3;
      border-radius: 1.143em; }
      .woocommerce-pagination ul.page-numbers > li a:focus, .woocommerce-pagination ul.page-numbers > li a:hover, .woocommerce-pagination ul.page-numbers > li span:focus, .woocommerce-pagination ul.page-numbers > li span:hover,
      .pagination ul.page-numbers > li a:focus,
      .pagination ul.page-numbers > li a:hover,
      .pagination ul.page-numbers > li span:focus,
      .pagination ul.page-numbers > li span:hover {
        text-decoration: none; }
      .woocommerce-pagination ul.page-numbers > li a.current, .woocommerce-pagination ul.page-numbers > li span.current,
      .pagination ul.page-numbers > li a.current,
      .pagination ul.page-numbers > li span.current {
        color: #262626;
        font-weight: bold;
        border: none; }
      .woocommerce-pagination ul.page-numbers > li a.dots, .woocommerce-pagination ul.page-numbers > li span.dots,
      .pagination ul.page-numbers > li a.dots,
      .pagination ul.page-numbers > li span.dots {
        border: none;
        padding: 0.642em; }
    .woocommerce-pagination ul.page-numbers > li a:hover,
    .pagination ul.page-numbers > li a:hover {
      background-color: #e3e3e3; }
    .woocommerce-pagination ul.page-numbers > li:last-child,
    .pagination ul.page-numbers > li:last-child {
      margin-right: 0; }

@font-face {
  font-family: 'star';
  src: url("/wp-content/plugins/woocommerce/assets/fonts/star.eot");
  src: url("/wp-content/plugins/woocommerce/assets/fonts/star.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/woocommerce/assets/fonts/star.woff") format("woff"), url("/wp-content/plugins/woocommerce/assets/fonts/star.ttf") format("truetype"), url("/wp-content/plugins/woocommerce/assets/fonts/star.svg#star") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'WooCommerce';
  src: url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot");
  src: url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff") format("woff"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf") format("truetype"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce") format("svg");
  font-weight: normal;
  font-style: normal; }

.star-rating {
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.5em;
  font-family: 'star'; }
  .star-rating:before {
    content: "\73\73\73\73\73";
    color: rgba(0, 0, 0, 0.2);
    float: left;
    top: 0;
    left: 0;
    position: absolute; }
  .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em; }
  .star-rating span:before {
    content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
    color: #fed700; }

p.stars {
  display: inline-block;
  margin: 0; }
  p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -99999px;
    display: inline-block;
    text-decoration: none;
    margin-right: 1px; }
    p.stars a:before {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 1em;
      height: 1em;
      line-height: 1;
      font-family: "WooCommerce";
      content: "\e021";
      text-indent: 0; }
    p.stars a:hover ~ a:before {
      content: "\e021"; }
  p.stars:hover a:before {
    content: "\e020"; }
  p.stars.selected a.active:before {
    content: "\e020"; }
  p.stars.selected a.active ~ a:before {
    content: "\e021"; }
  p.stars.selected a:not(.active):before {
    content: "\e020"; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    -webkit-transform-style: preserve-3d;
    display: block;
    width: 100%;
    height: auto; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    display: none; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  transform-style: preserve-3d; }

.owl-dots {
  text-align: center; }
  .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background-color: #bcbcbc;
    display: inline-block;
    border-radius: 50%; }
    .owl-dots .owl-dot.active {
      width: 30px;
      height: 8px;
      border-radius: 3px; }
    .owl-dots .owl-dot + .owl-dot {
      margin-left: 1em; }

article.post {
  margin-bottom: 6.786em;
  position: relative; }
  article.post .media-attachment {
    margin-bottom: 2.143em; }
    article.post .media-attachment .media-attachment-gallery .owl-carousel .owl-item figure {
      margin-bottom: 0; }
    article.post .media-attachment .media-attachment-gallery .owl-carousel .owl-dots {
      position: relative;
      margin-top: -1.643em;
      top: 0.714em;
      transition: all 200ms ease-out 0s;
      opacity: 0;
      margin-left: 2.500em;
      text-align: left; }
    article.post .media-attachment .media-attachment-gallery .owl-carousel:hover .owl-dots, article.post .media-attachment .media-attachment-gallery .owl-carousel:focus .owl-dots {
      top: -2em;
      opacity: 1; }
    article.post .media-attachment .gt-img-placeholder {
      position: relative; }
      article.post .media-attachment .gt-img-placeholder img {
        display: block;
        max-width: 100%;
        height: auto; }
      article.post .media-attachment .gt-img-placeholder i {
        color: #fff;
        font-size: 3.571em;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%); }
  article.post .entry-header {
    border-bottom: 1px solid #ececec;
    margin-bottom: 1.429em; }
    article.post .entry-header h1.entry-title {
      font-size: 1.786em;
      letter-spacing: -0.025em;
      font-weight: 400;
      margin-bottom: 0.360em;
      padding-bottom: 0.360em; }
      article.post .entry-header h1.entry-title a {
        color: #434343;
        text-decoration: none; }
        article.post .entry-header h1.entry-title a:hover, article.post .entry-header h1.entry-title a:focus {
          color: #000; }
    article.post .entry-header .entry-meta {
      padding-bottom: 1.071em; }
      article.post .entry-header .entry-meta div, article.post .entry-header .entry-meta span {
        display: inline-block;
        font-size: 0.929em;
        line-height: 1.231em;
        padding-right: 0.769em;
        color: #878787; }
        article.post .entry-header .entry-meta div:after, article.post .entry-header .entry-meta span:after {
          color: #9f9f9f;
          content: "\f111";
          display: inline-block;
          font-family: fontawesome;
          font-size: 0.385em;
          line-height: 0.385em;
          padding-left: 2.000em;
          position: relative;
          top: -0.600em; }
        article.post .entry-header .entry-meta div:last-child:after, article.post .entry-header .entry-meta span:last-child:after {
          display: none; }
      article.post .entry-header .entry-meta .meta-label,
      article.post .entry-header .entry-meta .tags-links {
        display: none; }
      article.post .entry-header .entry-meta a {
        color: #878787; }
  article.post .entry-content {
    color: #747474; }
    article.post .entry-content .page-links {
      color: #262626;
      font-weight: 700; }
      article.post .entry-content .page-links .page-links-label {
        font-weight: 400;
        background-color: transparent;
        border: none;
        padding: 0; }
      article.post .entry-content .page-links a {
        color: #7e7e7e;
        font-weight: 400; }
        article.post .entry-content .page-links a:hover, article.post .entry-content .page-links a:focus {
          color: #262626; }
      article.post .entry-content .page-links > a, article.post .entry-content .page-links > span {
        display: inline-block;
        border: 1px solid #e3e3e3;
        padding: 0.357em 0.714em;
        line-height: 1em; }
      article.post .entry-content .page-links > span {
        background-color: #fed700; }
    article.post .entry-content dl, article.post .entry-content ol, article.post .entry-content ul {
      margin-bottom: 2.143em; }
    article.post .entry-content iframe {
      width: 100%;
      border: none; }
  article.post .post-readmore {
    position: relative;
    display: inline-block;
    margin-right: 1.143em; }
    article.post .post-readmore .btn-primary {
      color: #0d244d;
      background-color: #efecec;
      border-color: #efecec;
      padding: 0.786em 3.000em;
      font-weight: 400; }
      article.post .post-readmore .btn-primary:hover {
        color: #fff;
        background-color: black;
        border-color: black; }
      article.post .post-readmore .btn-primary:focus, article.post .post-readmore .btn-primary.focus {
        color: #fff;
        background-color: black;
        border-color: black; }
      article.post .post-readmore .btn-primary:active, article.post .post-readmore .btn-primary.active,
      .open > article.post .post-readmore .btn-primary.dropdown-toggle {
        color: #0d244d;
        background-color: black;
        border-color: black;
        background-image: none; }
        article.post .post-readmore .btn-primary:active:hover, article.post .post-readmore .btn-primary:active:focus, article.post .post-readmore .btn-primary:active.focus, article.post .post-readmore .btn-primary.active:hover, article.post .post-readmore .btn-primary.active:focus, article.post .post-readmore .btn-primary.active.focus,
        .open > article.post .post-readmore .btn-primary.dropdown-toggle:hover,
        .open > article.post .post-readmore .btn-primary.dropdown-toggle:focus,
        .open > article.post .post-readmore .btn-primary.dropdown-toggle.focus {
          color: #0d244d;
          background-color: #c7bdbd;
          border-color: #b5a7a7; }
      article.post .post-readmore .btn-primary.disabled:focus, article.post .post-readmore .btn-primary.disabled.focus, article.post .post-readmore .btn-primary:disabled:focus, article.post .post-readmore .btn-primary:disabled.focus {
        background-color: #efecec;
        border-color: #efecec; }
      article.post .post-readmore .btn-primary.disabled:hover, article.post .post-readmore .btn-primary:disabled:hover {
        background-color: #efecec;
        border-color: #efecec; }
  article.post .comments-link a,
  article.post .likes a {
    position: relative;
    color: #878787;
    font-size: 0.857em;
    line-height: 1.500em; }
    article.post .comments-link a:before, article.post .comments-link a:after,
    article.post .likes a:before,
    article.post .likes a:after {
      color: #999999;
      font-family: FontAwesome; }
    article.post .comments-link a:hover, article.post .comments-link a:focus,
    article.post .likes a:hover,
    article.post .likes a:focus {
      color: #000;
      text-decoration: none; }
      article.post .comments-link a:hover:before, article.post .comments-link a:hover:after, article.post .comments-link a:focus:before, article.post .comments-link a:focus:after,
      article.post .likes a:hover:before,
      article.post .likes a:hover:after,
      article.post .likes a:focus:before,
      article.post .likes a:focus:after {
        color: #000; }
  article.post .comments-link a:before {
    content: "\f0e5";
    margin-right: 0.429em; }
  article.post .likes a:before {
    content: "\f087"; }
  article.post.format-quote {
    background-color: #0d244d;
    padding: 6.429em 6em 6.429em 7.143em; }
    article.post.format-quote .entry-content blockquote {
      letter-spacing: -0.025em;
      color: #fff;
      margin-left: 0;
      margin-bottom: 0; }
      article.post.format-quote .entry-content blockquote:before {
        display: none; }
      article.post.format-quote .entry-content blockquote p {
        font-size: 1.500em;
        font-style: italic;
        line-height: 1.429em;
        margin-bottom: 1.667em; }
      article.post.format-quote .entry-content blockquote ol:last-child,
      article.post.format-quote .entry-content blockquote p:last-child,
      article.post.format-quote .entry-content blockquote ul:last-child {
        margin-bottom: 0; }
      article.post.format-quote .entry-content blockquote cite {
        display: block;
        font-style: normal; }
        article.post.format-quote .entry-content blockquote cite:before {
          content: '-';
          padding-right: 4px; }
  article.post.format-link {
    background: #f5f5f5;
    padding: 5.357em 7.143em;
    letter-spacing: 0.025em; }
    article.post.format-link .entry-content p {
      font-size: 1.786em;
      margin-bottom: 0.800em;
      color: #434343;
      line-height: 1.200em; }
      article.post.format-link .entry-content p:last-child {
        margin-bottom: 0; }
    article.post.format-link .entry-content p a {
      color: #0062bd;
      font-size: 0.875rem;
      line-height: 2.143em; }
  article.post.format-aside .entry-content p {
    font-size: 1.286em;
    margin-bottom: 1.889em; }
  article.post.format-status .entry-content p {
    font-size: 1.571em;
    margin-bottom: 1.545em; }

.sticky h1.entry-title {
  font-size: 1.786em;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-bottom: 0.360em;
  padding-bottom: 0.360em; }
  .sticky h1.entry-title a {
    color: #434343;
    text-decoration: none; }
    .sticky h1.entry-title a:hover, .sticky h1.entry-title a:focus {
      color: #000; }

.pagination {
  display: block;
  border-top: 1px solid #eaeaea;
  padding-top: 1.5625rem;
  text-align: center;
  border-radius: 0;
  clear: both; }
  .pagination ul.page-numbers {
    display: inline-block; }
    .pagination ul.page-numbers > li a .meta-nav, .pagination ul.page-numbers > li span .meta-nav {
      display: none; }

table.cart {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.236rem; }
  table.cart th,
  table.cart td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  table.cart thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  table.cart tbody + tbody {
    border-top: 2px solid #eceeef; }
  table.cart .table {
    background-color: #fff; }
  table.cart thead th {
    font-size: 1em;
    line-height: 1.714em;
    color: #747474;
    border-bottom: 1px solid #ddd;
    border-top: none;
    font-weight: normal; }
  table.cart td {
    vertical-align: middle;
    font-size: 15px;
    line-height: 26px; }
  table.cart tbody tr.cart_item:first-child td {
    padding-top: 2.059em; }
  table.cart tbody tr.cart_item td {
    border-top: none;
    padding-top: 1.029em;
    padding-bottom: 1.029em; }
  table.cart .product-remove a {
    color: #a7a7a7;
    font-size: 1.5em; }
    table.cart .product-remove a:focus, table.cart .product-remove a:hover {
      text-decoration: none;
      color: #ee0000; }
  table.cart .product-thumbnail {
    width: 136px; }
    table.cart .product-thumbnail a {
      display: block; }
    table.cart .product-thumbnail img {
      display: block;
      max-width: 100%;
      height: auto;
      max-width: 100px;
      margin: auto;
      height: 92px;
      width: auto;
      border: 1px solid #ddd;
      padding: 4px; }
  table.cart .product-name a {
    color: #3e3e3e; }
    table.cart .product-name a:focus, table.cart .product-name a:hover {
      color: #000;
      text-decoration: none; }
  table.cart .product-quantity .quantity {
    width: 5em; }
    table.cart .product-quantity .quantity.buttons_added {
      width: 8em;
      font-size: 0.824em; }
      table.cart .product-quantity .quantity.buttons_added .minus, table.cart .product-quantity .quantity.buttons_added .plus {
        bottom: 0.5em; }
  table.cart .product-quantity .input-text {
    padding: 0.5em 1em;
    border-radius: 1em; }
  table.cart .actions {
    text-align: right;
    font-size: 1em;
    padding-top: 25px; }
    table.cart .actions .wc-proceed-to-checkout {
      display: inline-block;
      margin-left: 0.5em; }
      table.cart .actions .wc-proceed-to-checkout .checkout-button {
        font-weight: bold; }
        table.cart .actions .wc-proceed-to-checkout .checkout-button::after {
          content: none; }
  table.cart .coupon {
    font-size: 1em;
    float: left;
    text-align: left;
    display: flex; }
    @media (max-width: 767px) {
      table.cart .coupon {
        flex-direction: column; } }
    @media (min-width: 768px) {
      table.cart .coupon {
        width: 41.6666666667%; } }
    table.cart .coupon label[for="coupon_code"] {
      display: none; }
    table.cart .coupon .input-text {
      border: 1px solid #dddddd;
      border-right: 0;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      padding: 0.534em 1.8em; }
      @media (max-width: 767px) {
        table.cart .coupon .input-text {
          border-top-right-radius: 1.467em;
          border-bottom-right-radius: 1.467em;
          border-right: 0;
          margin-bottom: 16px; } }
    table.cart .coupon .button {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      margin-left: -4px;
      position: relative; }
      @media (max-width: 767px) {
        table.cart .coupon .button {
          border-top-left-radius: 1.467em;
          border-bottom-left-radius: 1.467em; } }
  table.cart input[name="update_cart"] {
    color: #0d244d;
    background-color: #efecec;
    border-color: #efecec;
    width: auto; }
    table.cart input[name="update_cart"]:hover {
      color: #fff;
      background-color: black;
      border-color: black; }
    table.cart input[name="update_cart"]:focus, table.cart input[name="update_cart"].focus {
      color: #fff;
      background-color: black;
      border-color: black; }
    table.cart input[name="update_cart"]:active, table.cart input[name="update_cart"].active,
    .open > table.cart input[name="update_cart"].dropdown-toggle {
      color: #0d244d;
      background-color: black;
      border-color: black;
      background-image: none; }
      table.cart input[name="update_cart"]:active:hover, table.cart input[name="update_cart"]:active:focus, table.cart input[name="update_cart"]:active.focus, table.cart input[name="update_cart"].active:hover, table.cart input[name="update_cart"].active:focus, table.cart input[name="update_cart"].active.focus,
      .open > table.cart input[name="update_cart"].dropdown-toggle:hover,
      .open > table.cart input[name="update_cart"].dropdown-toggle:focus,
      .open > table.cart input[name="update_cart"].dropdown-toggle.focus {
        color: #0d244d;
        background-color: #c7bdbd;
        border-color: #b5a7a7; }
    table.cart input[name="update_cart"].disabled:focus, table.cart input[name="update_cart"].disabled.focus, table.cart input[name="update_cart"]:disabled:focus, table.cart input[name="update_cart"]:disabled.focus {
      background-color: #efecec;
      border-color: #efecec; }
    table.cart input[name="update_cart"].disabled:hover, table.cart input[name="update_cart"]:disabled:hover {
      background-color: #efecec;
      border-color: #efecec; }

table.cart input[name=update_cart].disabled.focus,
table.cart input[name=update_cart].disabled:focus,
table.cart input[name=update_cart].disabled:hover,
table.cart input[name=update_cart]:disabled.focus,
table.cart input[name=update_cart]:disabled:focus,
table.cart input[name=update_cart]:disabled:hover {
  color: #0d244d; }

.cart-collaterals {
   }
  .cart-collaterals::after {
    content: "";
    display: table;
    clear: both; }
  .cart-collaterals h2:not(.woocommerce-loop-product__title) {
    font-size: 1.786em;
    line-height: 1.6em;
    display: block;
    position: relative;
    padding-bottom: 0.400em;
    border-bottom: 1px solid #dadada;
    margin-bottom: 1.360em;
    margin-bottom: 0.5em; }
    .cart-collaterals h2:not(.woocommerce-loop-product__title)::after {
      content: ' ';
      border-bottom: 2px solid transparent;
      display: block;
      width: 20%;
      position: absolute;
      bottom: -1px; }
  .cart-collaterals .cross-sells {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .cart-collaterals .cross-sells {
        width: 50%; } }
    .cart-collaterals .cross-sells ul.products > .product {
      width: 50%; }
    @media (min-width: 768px) {
      .cart-collaterals .cross-sells + .cart_totals {
        margin-left: 8.3333333333%; } }
  .cart-collaterals .cart_totals {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .cart-collaterals .cart_totals {
        width: 41.6666666667%;
        margin-left: 58.3333333333%; } }
    .cart-collaterals .cart_totals table.shop_table {
      width: 100%;
      max-width: 100%;
      margin-bottom: 1.236rem; }
      .cart-collaterals .cart_totals table.shop_table th,
      .cart-collaterals .cart_totals table.shop_table td {
        padding: 0.75rem;
        line-height: 1.5;
        vertical-align: top;
        border-top: 1px solid #eceeef; }
      .cart-collaterals .cart_totals table.shop_table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #eceeef; }
      .cart-collaterals .cart_totals table.shop_table tbody + tbody {
        border-top: 2px solid #eceeef; }
      .cart-collaterals .cart_totals table.shop_table .table {
        background-color: #fff; }
      .cart-collaterals .cart_totals table.shop_table tbody tr th {
        padding-left: 0; }
      .cart-collaterals .cart_totals table.shop_table tbody tr td {
        padding-right: 0; }
      .cart-collaterals .cart_totals table.shop_table tbody tr:first-child td, .cart-collaterals .cart_totals table.shop_table tbody tr:first-child th {
        border-top-width: 0; }
    .cart-collaterals .cart_totals .wc-proceed-to-checkout {
      display: none; }

.cart-collaterals .cart_totals table.shop_table {
  display: block; }
  .cart-collaterals .cart_totals table.shop_table thead, .cart-collaterals .cart_totals table.shop_table tbody, .cart-collaterals .cart_totals table.shop_table tfoot {
    display: block;
    width: 100%; }
    .cart-collaterals .cart_totals table.shop_table thead > tr, .cart-collaterals .cart_totals table.shop_table tbody > tr, .cart-collaterals .cart_totals table.shop_table tfoot > tr {
      display: flex;
      width: 100%;
      justify-content: space-between; }
      .cart-collaterals .cart_totals table.shop_table thead > tr + tr, .cart-collaterals .cart_totals table.shop_table tbody > tr + tr, .cart-collaterals .cart_totals table.shop_table tfoot > tr + tr {
        border-top: 1px solid #eceeef; }
      .cart-collaterals .cart_totals table.shop_table thead > tr td, .cart-collaterals .cart_totals table.shop_table thead > tr th, .cart-collaterals .cart_totals table.shop_table tbody > tr td, .cart-collaterals .cart_totals table.shop_table tbody > tr th, .cart-collaterals .cart_totals table.shop_table tfoot > tr td, .cart-collaterals .cart_totals table.shop_table tfoot > tr th {
        border-top: 0; }
      .cart-collaterals .cart_totals table.shop_table thead > tr.shipping td, .cart-collaterals .cart_totals table.shop_table tbody > tr.shipping td, .cart-collaterals .cart_totals table.shop_table tfoot > tr.shipping td {
        padding: 0.75rem 0 0 0; }

@media (max-width: 767px) {
  .cart-collaterals .cart_totals table.shop_table.shop_table_responsive tr td:before {
    content: none; }
  .cart-collaterals .cart_totals table.shop_table.shop_table_responsive tr th {
    display: block; }
  .cart-collaterals .cart_totals table.shop_table.shop_table_responsive tr td, .cart-collaterals .cart_totals table.shop_table.shop_table_responsive tr th {
    text-align: inherit; } }

.shipping-calculator-form {
  margin: 0; }

/*===================================================================================*/
/*  JPlayer Skin
/*===================================================================================*/
div.jp-jplayer, div.jp-jplayer img {
  max-width: 100%; }

div.jp-jplayer.jp-jplayer-video {
  background-color: #292a2b; }

div.jp-jplayer video {
  margin-bottom: 0; }

div.jp-jplayer img, div.jp-jplayer-video, div.jp-jplayer-video video {
  height: auto !important;
  vertical-align: top; }

.jp-audio-container, .jp-video-container {
  background-color: #f1f1f1;
  box-shadow: 1px 1px 1px #ddd; }

/* no margin on player inside post header */
.post-header .jp-audio-container, .post-header .jp-video-container {
  margin-bottom: 0; }

div.jp-interface {
  position: relative;
  width: 97%;
  z-index: 100; }

.jp-video div.jp-interface {
  -webkit-border-radius: 0 0 2px;
  -moz-border-radius: 0 0 2px;
  border-radius: 0 0 2px; }

.jp-interface, a.jp-play, a.jp-pause, .seperator-first, .seperator-second {
  height: 34px; }

.jp-controls {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.jp-controls li {
  display: inline;
  margin: 0; }

.jp-controls a {
  color: #404040;
  text-shadow: 1px 1px white;
  background: transparent !important;
  width: 24px;
  height: 34px;
  padding: 0 0 0 10px;
  display: inline-block;
  position: absolute;
  top: 0;
  border-bottom: none;
  font-size: 14px;
  line-height: 34px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  z-index: 1;
  opacity: .6; }

.jp-controls a:hover {
  color: #262626;
  background: transparent !important;
  text-decoration: none;
  opacity: .8; }

.jp-controls a span {
  text-indent: -9999px;
  display: block; }

a.jp-play, a.jp-pause {
  left: 0; }

a.jp-pause {
  display: none; }

a.jp-pause:hover {
  background-position: -33px -30px; }

a.jp-mute, a.jp-unmute {
  right: 55px; }

.jp-progress-container, .jp-volume-bar-container {
  position: absolute;
  top: 0;
  height: 8px;
  padding: 13px 10px; }

.jp-progress-container {
  left: 34px;
  right: 92px; }

.jp-progress, .jp-volume-bar {
  height: 9px;
  background: #E7E7E7;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 2px rgba(34, 34, 34, 0.09);
  -moz-box-shadow: inset 0 1px 2px rgba(34, 34, 34, 0.09);
  box-shadow: inset 0 1px 2px rgba(34, 34, 34, 0.09); }

.jp-seek-bar {
  width: 0;
  height: 9px;
  cursor: pointer;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  background: #E0E0E0; }

.jp-progress, .jp-seek-bar {
  background: rgba(102, 102, 102, 0.05); }

.jp-play-bar, .jp-volume-bar-value {
  width: 0;
  height: 9px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  background: #BABABA; }

.jp-volume-bar-container {
  right: 2px;
  width: 40px; }

.jp-volume-bar {
  position: relative;
  overflow: hidden;
  width: 40px;
  cursor: pointer;
  background: rgba(102, 102, 102, 0.1); }

.jp-volume-bar-value {
  width: 0; }

.seperator-first, .seperator-second {
  width: 0;
  position: absolute;
  top: 0;
  left: 33px;
  border: 1px solid #fff;
  border-left-color: #ddd;
  border-width: 0 1px; }

.seperator-second {
  left: auto;
  right: 89px; }

/* volume controls taken over by mobile devices so don't need to see them */
.no-volume .jp-progress-container {
  right: 0px; }

.no-volume .jp-volume-bar-container, .no-volume .seperator-second, .no-volume .jp-mute, .no-volume .jp-unmute {
  display: none; }

.gallery {
  margin-bottom: 2.143em; }
  .gallery::after {
    content: "";
    display: table;
    clear: both; }

figure.gallery-item {
  display: block;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 0; }
  figure.gallery-item::after {
    content: "";
    display: table;
    clear: both; }
  figure.gallery-item .gallery-caption {
    position: absolute;
    background: black;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.625rem 1.25rem;
    opacity: 0;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    bottom: 0;
    right: -30%; }
  figure.gallery-item img {
    display: block;
    width: 100%;
    height: auto; }
  figure.gallery-item:hover .gallery-caption {
    opacity: 1;
    right: 0; }

.gallery dl dt {
  padding: 0;
  margin: 0; }

.gallery .gallery-item {
  width: 25%; }

.gallery-columns-1 .gallery-item {
  width: 100%; }

.gallery-columns-2 .gallery-item {
  width: 50%; }

.gallery-columns-3 .gallery-item {
  width: 33%; }

.gallery-columns-4 .gallery-item {
  width: 25%; }

.gallery-columns-5 .gallery-item {
  width: 20%; }

.gallery-columns-6 .gallery-item {
  width: 16%; }

.gallery-columns-7 .gallery-item {
  width: 14%; }

.gallery-columns-8 .gallery-item {
  width: 12%; }

.gallery-columns-9 .gallery-item {
  width: 11%; }

.gallery-columns-10 .gallery-item {
  width: 10%; }

.gallery-columns-8 figure.gallery-item .gallery-caption,
.gallery-columns-9 figure.gallery-item .gallery-caption,
.gallery-columns-10 figure.gallery-item .gallery-caption {
  display: none; }

article.post .entry-content figure.gallery-item img {
  margin-bottom: 0; }

/**
 * Reviews
 */
#reviews:not(.gt-advanced-reviews) #comments {
  padding-top: 0; }
  #reviews:not(.gt-advanced-reviews) #comments > h2 {
    font-size: 1.786em;
    line-height: 1.6em;
    color: #0d244d;
    position: relative;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 0.6em; }
    #reviews:not(.gt-advanced-reviews) #comments > h2:after {
      border-bottom: 2px solid transparent;
      bottom: -1px;
      content: " ";
      display: block;
      position: absolute;
      width: 3.684em; }

#reviews:not(.gt-advanced-reviews) .comment-form > p {
  margin-bottom: 1.714em; }
  #reviews:not(.gt-advanced-reviews) .comment-form > p label {
    display: block; }
  #reviews:not(.gt-advanced-reviews) .comment-form > p input[type="text"], #reviews:not(.gt-advanced-reviews) .comment-form > p textarea, #reviews:not(.gt-advanced-reviews) .comment-form > p input[type="email"], #reviews:not(.gt-advanced-reviews) .comment-form > p input[type="url"] {
    width: 100%; }

#reviews:not(.gt-advanced-reviews) .comment-form-rating {
  clear: both; }
  #reviews:not(.gt-advanced-reviews) .comment-form-rating label {
    display: block; }

#reviews:not(.gt-advanced-reviews) .comment-form-author,
#reviews:not(.gt-advanced-reviews) .comment-form-email {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  @media (min-width: 768px) {
    #reviews:not(.gt-advanced-reviews) .comment-form-author,
    #reviews:not(.gt-advanced-reviews) .comment-form-email {
      width: 50%; } }

#reviews:not(.gt-advanced-reviews) .comment-form-author {
  padding-left: 0; }

#reviews:not(.gt-advanced-reviews) .comment-form-email {
  padding-right: 0; }

#reviews:not(.gt-advanced-reviews) .comment-form-email {
  margin-right: 0; }

#reviews:not(.gt-advanced-reviews) .form-submit {
  clear: both; }

#reviews .commentlist {
  list-style: none;
  padding-left: 0; }

#reviews .commentlist > li {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.5em;
  list-style: none;
  clear: both;
  padding-bottom: 1.5em; }
  #reviews .commentlist > li time {
    color: #aeaeae;
    font-size: 0.929em; }
  #reviews .commentlist > li .avatar {
    display: none; }
  #reviews .commentlist > li p.meta {
    margin-bottom: 0; }
  #reviews .commentlist > li ul.children {
    border-top: 1px solid #ddd;
    width: 82.4275362319%;
    float: right;
    margin-right: 0;
    padding-top: 2.618em; }
  #reviews .commentlist > li .star-rating {
    margin-bottom: 1em; }
  #reviews .commentlist > li .star-rating + .meta {
    display: none; }
  #reviews .commentlist > li .description {
    margin-bottom: 1.5em;
    line-height: 1.571em; }
  #reviews .commentlist > li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0; }

.gt-advanced-reviews #reply-title, .gt-advanced-reviews h2 {
  font-size: 1.286em;
  line-height: 1.222em;
  font-weight: normal;
  border: none;
  padding-bottom: 0; }
  .gt-advanced-reviews #reply-title::after, .gt-advanced-reviews h2::after {
    content: none; }

.gt-advanced-reviews .comment-form > p {
  margin-bottom: 1.143em;
  display: block;
  width: 100%; }
  .gt-advanced-reviews .comment-form > p label {
    display: table-cell;
    font-weight: normal;
    width: 30%;
    vertical-align: middle; }
  .gt-advanced-reviews .comment-form > p input[type="text"], .gt-advanced-reviews .comment-form > p textarea {
    display: table-cell; 
	width:100%;
	}
  .gt-advanced-reviews .comment-form > p p.stars {
    display: table-cell; }
  .gt-advanced-reviews .comment-form > p textarea {
    height: 7.857em; }

.gt-advanced-reviews .comment-form .form-submit input[type="submit"] {
  font-size: 0.929em;
  color: #fff;
  line-height: 1.385em;
  padding: 1em 2.222em;
  margin-left: 30%; }

.advanced-review {
  margin-bottom: 3.429em; }
  .advanced-review .based-title {
    margin-bottom: 2.571em; }
  .advanced-review .avg-rating {
    margin-bottom: 1.429em; }
    .advanced-review .avg-rating .avg-rating-number {
      display: block;
      font-size: 2.143em;
      font-weight: bold;
      line-height: 0.6em; }
  .advanced-review .rating-histogram .rating-bar {
    margin-bottom: 1.429em; }
    .advanced-review .rating-histogram .rating-bar::after {
      content: "";
      display: table;
      clear: both; }
    .advanced-review .rating-histogram .rating-bar .rating-percentage-bar {
      float: left; }
    .advanced-review .rating-histogram .rating-bar .star-rating {
      float: left; }
  .advanced-review .rating-histogram .rating-percentage-bar {
    width: 14.286em;
    height: 0.714em;
    border-radius: 0.286em;
    background-color: #f3f3f3;
    margin-top: 0.143em;
    margin-left: 2.857em; }
  .advanced-review .rating-histogram .rating-percentage {
    height: 100%;
    background-color: #d8d8d8;
    display: block;
    border-radius: 0.286em; }
  .advanced-review .rating-histogram .rating-count {
    float: left;
    margin-left: 0.714em;
    line-height: 1em; }
    .advanced-review .rating-histogram .rating-count.zero {
      color: #b6b6b6; }

#reviews:not(.gt-advanced-reviews) h2 {
  font-size: 1.786em;
  line-height: 1.6em;
  color: #0d244d;
  position: relative;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.3em;
  text-align: center; }

#reviews:not(.gt-advanced-reviews) .product-rating h3 {
  font-size: 1.5em; }

#reviews:not(.gt-advanced-reviews) .product-rating .product-rating-details table tr .rating-number a {
  color: #b6b6b6; }
  #reviews:not(.gt-advanced-reviews) .product-rating .product-rating-details table tr .rating-number a .rating-star:before {
    color: #fed700; }

#reviews:not(.gt-advanced-reviews) .product-rating .product-rating-details table tr .rating-graph a.bar {
  background-color: #ebebeb;
  border-radius: .386em;
  height: .8em; }

#reviews:not(.gt-advanced-reviews) .product-rating .product-rating-details table tr .rating-count a {
  text-decoration: none;
  color: #b6b6b6; }

#reviews:not(.gt-advanced-reviews) h3 {
  font-size: 1.438em;
  line-height: 1.6em;
  color: #0d244d;
  position: relative; }

#reviews:not(.gt-advanced-reviews) form #subscribe_to_replies_field label {
  margin-left: 1.4em; }

#reviews:not(.gt-advanced-reviews) abbr[title] {
  border: 0px;
  text-decoration: none; }

#reviews:not(.gt-advanced-reviews) #comments form.contributions-filter {
  display: none; }

#reviews:not(.gt-advanced-reviews) #comments #contributions-list h2#contributions-list-title {
  display: none; }

#reviews:not(.gt-advanced-reviews) #comments #contributions-list .contributions-container .contribution-admin-badge {
  opacity: 0.6; }

#reviews:not(.gt-advanced-reviews) #comments #contributions-list .contributions-container ul.children {
  border-top: 0px;
  width: 100%;
  float: none;
  padding: 1.5em 0px; }

#reviews:not(.gt-advanced-reviews) #comments #contributions-list .contributions-container ol li .contribution-karma {
  display: none; }

#reviews:not(.gt-advanced-reviews) #comments #contributions-list .contributions-container ol li .comment-text {
  margin-left: 0px; }
  #reviews:not(.gt-advanced-reviews) #comments #contributions-list .contributions-container ol li .comment-text h3.review-title {
    font-size: 14px; }
    #reviews:not(.gt-advanced-reviews) #comments #contributions-list .contributions-container ol li .comment-text h3.review-title span {
      margin-bottom: 0px; }

#reviews:not(.gt-advanced-reviews) #comments #contributions-list .contributions-container ol li form {
  margin-left: 0px; }

.inner {
  padding-top: 8.571em;
  padding-bottom: 8.571em; }

.inner-md {
  padding-top: 7.143em;
  padding-bottom: 7.143em; }

.inner-sm {
  padding-top: 5.714em;
  padding-bottom: 5.714em; }

.inner-xs {
  padding-top: 2.857em;
  padding-bottom: 2.857em; }

.inner-top {
  padding-top: 8.571em; }

.inner-top-md {
  padding-top: 7.143em; }

.inner-top-sm {
  padding-top: 5.714em; }

.inner-top-xs {
  padding-top: 2.857em; }

.inner-bottom {
  padding-bottom: 8.571em; }

.inner-bottom-md {
  padding-bottom: 7.143em; }

.inner-bottom-sm {
  padding-bottom: 5.714em; }

.inner-bottom-xs {
  padding-bottom: 2.857em; }

.inner-left {
  padding-left: 5.357em; }

.inner-left-md {
  padding-left: 4.286em; }

.inner-left-sm {
  padding-left: 3.214em; }

.inner-left-xs {
  padding-left: 2.143em; }

.inner-right {
  padding-right: 5.357em; }

.inner-right-md {
  padding-right: 4.286em; }

.inner-right-sm {
  padding-right: 3.214em; }

.inner-right-xs {
  padding-right: 2.143em; }

.outer {
  margin-top: 8.571em;
  margin-bottom: 8.571em; }

.outer-md {
  margin-top: 7.143em;
  margin-bottom: 7.143em; }

.outer-sm {
  margin-top: 5.714em;
  margin-bottom: 5.714em; }

.outer-xs {
  margin-top: 2.857em;
  margin-bottom: 2.857em; }

.outer-top {
  margin-top: 8.571em; }

.outer-top-md {
  margin-top: 7.143em; }

.outer-top-sm {
  margin-top: 5.714em; }

.outer-top-xs {
  margin-top: 2.857em; }

.outer-bottom {
  margin-bottom: 8.571em; }

.outer-bottom-md {
  margin-bottom: 7.143em; }

.outer-bottom-sm {
  margin-bottom: 5.714em; }

.outer-bottom-xs {
  margin-bottom: 2.857em; }

.center-block {
  float: none; }

.height-xs {
  height: 30vh; }

.height-sm {
  height: 44vh; }

.height-md {
  height: 61vh; }

.height-lg {
  height: 90vh; }

.no-margin {
  margin: 0; }

.animate-in-view {
  opacity: 0; }

.animated {
  opacity: 1; }

.inline {
  display: inline; }

div.quantity.buttons_added {
  position: relative; }
  div.quantity.buttons_added .minus, div.quantity.buttons_added .plus {
    width: 1.429em;
    height: 1.429em;
    border-radius: 50%;
    font-size: 1em;
    font-weight: bold;
    color: #0d244d;
    padding: 0;
    text-align: center;
    line-height: 1.429em;
    position: absolute;
    bottom: 0.536em;
    right: 0.536em;
    display: inline-block; }
    div.quantity.buttons_added .minus:hover, div.quantity.buttons_added .plus:hover {
      color: #fff; }
  div.quantity.buttons_added input[type="number"] {
    -moz-appearance: textfield; }
  div.quantity.buttons_added input[type=number]::-webkit-inner-spin-button,
  div.quantity.buttons_added input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    /* Removes leftover margin */ }
  div.quantity.buttons_added .plus {
    right: 1.965em;
    margin-right: 0.357em; }

.yamm .nav, .yamm .collapse, .yamm .dropup, .yamm ul.navbar-nav > li.dropdown, .yamm > .dropdown {
  position: static; }

.yamm .container {
  position: relative; }

.yamm .dropdown-menu {
  left: auto; }

.yamm .no-yamm-content-padding .yamm-content {
  padding: 0; }

.yamm .dropdown.yamm-fw .dropdown-menu {
  left: 0;
  right: 0;
  position: absolute;
  padding: 0;
  animation-duration: 200ms; }
  .yamm .dropdown.yamm-fw .dropdown-menu .menu-item {
    list-style: none; }
  .yamm .dropdown.yamm-fw .dropdown-menu .menu {
    padding: 0; }

.yamm .yamm-content {
  padding: 2.143em; }
  .yamm .yamm-content .wpb_content_element {
    margin: 0; }
  .yamm .yamm-content .bg-yamm-content {
    position: absolute;
    right: 0;
    bottom: 0; }

.yamm h1, .yamm h2, .yamm h3, .yamm h4, .yamm h5, .yamm h6, .yamm .nav-title {
  font-weight: bold;
  font-size: 1.071em;
  padding: 0.571em 0;
  min-height: 2.667em; }
  .yamm h1 a, .yamm h1 > a, .yamm h2 a, .yamm h2 > a, .yamm h3 a, .yamm h3 > a, .yamm h4 a, .yamm h4 > a, .yamm h5 a, .yamm h5 > a, .yamm h6 a, .yamm h6 > a, .yamm .nav-title a, .yamm .nav-title > a {
    padding: 0;
    font-weight: bold; }

.yamm .nav-divider {
  height: 1px;
  border-top: 1px solid #ddd;
  margin: 0.5em 0; }

.yamm .nav-text, .yamm .nav-subtext {
  display: block; }

.yamm .nav-subtext {
  font-size: 0.8em;
  color: #aaa;
  line-height: 1; }

.primary-nav .nav-inline .yamm-fw .dropdown-menu,
.secondary-nav .yamm-fw .dropdown-menu {
  width: 900px; }

.primary-nav .nav-inline .yamm-tfw .dropdown-menu,
.secondary-nav .yamm-tfw .dropdown-menu {
  width: 600px; }

.primary-nav .nav-inline .yamm-hw .dropdown-menu,
.secondary-nav .yamm-hw .dropdown-menu {
  width: 450px; }

.vertical-menu .yamm .dropdown.yamm-fw .dropdown-menu,
.departments-menu .yamm .dropdown.yamm-fw .dropdown-menu {
  left: 100%; }

.vertical-menu .yamm-fw .dropdown-menu > li,
.departments-menu .yamm-fw .dropdown-menu > li {
  width: 900px; }

.vertical-menu .yamm-tfw .dropdown-menu > li,
.departments-menu .yamm-tfw .dropdown-menu > li {
  width: 600px; }

.vertical-menu .yamm-hw .dropdown-menu > li,
.departments-menu .yamm-hw .dropdown-menu > li {
  width: 450px; }

.vertical-menu .menu-item-has-children a[data-toggle="dropdown"]::after, .vertical-menu .menu-item-has-children a[data-toggle="dropdown-hover"]::after,
.departments-menu .menu-item-has-children a[data-toggle="dropdown"]::after,
.departments-menu .menu-item-has-children a[data-toggle="dropdown-hover"]::after {
  content: '\62';
  color: #aeaeae;
  font-size: 1.214em;
  float: right; }

.vertical-menu .menu-item-has-children > .dropdown-menu,
.departments-menu .menu-item-has-children > .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  left: 100%;
  border-top-width: 2px;
  border-top-style: solid;
  width: 0;
  min-width: 0; }

.vertical-menu .animate-dropdown .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu, .vertical-menu.animate-dropdown .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu,
.departments-menu .animate-dropdown .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu,
.departments-menu.animate-dropdown .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  -ms-animation: none;
  animation: none; }

.vertical-menu .dropdown:not(.list-group-item) > .dropdown-menu > li {
  width: 240px; }

.vertical-menu.yamm .dropdown.yamm-fw .dropdown-menu,
.vertical-menu .yamm .dropdown.yamm-fw .dropdown-menu {
  left: 100%; }
  .vertical-menu.yamm .dropdown.yamm-fw .dropdown-menu > li,
  .vertical-menu .yamm .dropdown.yamm-fw .dropdown-menu > li {
    width: 900px; }

.vertical-menu .list-group-item > .dropdown.yamm-tfw .dropdown-menu > li,
.vertical-menu .dropdown.yamm-tfw .dropdown-menu > li {
  width: 540px;
  position: relative; }

.vertical-menu .yamm-content {
  padding: 1.143em 1.143em 0 1.143em; }

.bg-yamm-extend-outside {
  position: relative;
  right: -50px; }

.vertical-menu .yamm-content ul,
.secondary-nav .yamm-content ul,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul {
  padding: 0;
  list-style: none;
  margin: 0; }
  .vertical-menu .yamm-content ul + ul,
  .secondary-nav .yamm-content ul + ul,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul + ul,
  .primary-nav .nav-inline .dropdown-menu .yamm-content ul + ul,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content ul + ul {
    margin-top: 1.143em; }

.vertical-menu .yamm-content ul > li > a,
.secondary-nav .yamm-content ul > li > a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul > li > a,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul > li > a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul > li > a {
  padding: 0.35em 1.429em;
  display: block;
  padding-left: 0;
  color: #0d244d;
  text-decoration: none; }
  .vertical-menu .yamm-content ul > li > a:hover,
  .secondary-nav .yamm-content ul > li > a:hover,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul > li > a:hover,
  .primary-nav .nav-inline .dropdown-menu .yamm-content ul > li > a:hover,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content ul > li > a:hover {
    background-color: transparent;
    color: black; }

.vertical-menu .yamm-content h1, .vertical-menu .yamm-content h2, .vertical-menu .yamm-content h3, .vertical-menu .yamm-content h4, .vertical-menu .yamm-content h5, .vertical-menu .yamm-content h6, .vertical-menu .yamm-content .nav-title,
.secondary-nav .yamm-content h1,
.secondary-nav .yamm-content h2,
.secondary-nav .yamm-content h3,
.secondary-nav .yamm-content h4,
.secondary-nav .yamm-content h5,
.secondary-nav .yamm-content h6,
.secondary-nav .yamm-content .nav-title,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h1,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h2,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h3,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h4,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h5,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h6,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .nav-title,
.primary-nav .nav-inline .dropdown-menu .yamm-content h1,
.primary-nav .nav-inline .dropdown-menu .yamm-content h2,
.primary-nav .nav-inline .dropdown-menu .yamm-content h3,
.primary-nav .nav-inline .dropdown-menu .yamm-content h4,
.primary-nav .nav-inline .dropdown-menu .yamm-content h5,
.primary-nav .nav-inline .dropdown-menu .yamm-content h6,
.primary-nav .nav-inline .dropdown-menu .yamm-content .nav-title,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h1,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h2,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h3,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h4,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h5,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h6,
.navbar-primary .departments-menu .dropdown-menu .yamm-content .nav-title {
  font-weight: bold;
  font-size: 1.071em;
  padding: 0.571em 0;
  min-height: 2.667em; }
  .vertical-menu .yamm-content h1 a, .vertical-menu .yamm-content h1 > a, .vertical-menu .yamm-content h2 a, .vertical-menu .yamm-content h2 > a, .vertical-menu .yamm-content h3 a, .vertical-menu .yamm-content h3 > a, .vertical-menu .yamm-content h4 a, .vertical-menu .yamm-content h4 > a, .vertical-menu .yamm-content h5 a, .vertical-menu .yamm-content h5 > a, .vertical-menu .yamm-content h6 a, .vertical-menu .yamm-content h6 > a, .vertical-menu .yamm-content .nav-title a, .vertical-menu .yamm-content .nav-title > a,
  .secondary-nav .yamm-content h1 a,
  .secondary-nav .yamm-content h1 > a,
  .secondary-nav .yamm-content h2 a,
  .secondary-nav .yamm-content h2 > a,
  .secondary-nav .yamm-content h3 a,
  .secondary-nav .yamm-content h3 > a,
  .secondary-nav .yamm-content h4 a,
  .secondary-nav .yamm-content h4 > a,
  .secondary-nav .yamm-content h5 a,
  .secondary-nav .yamm-content h5 > a,
  .secondary-nav .yamm-content h6 a,
  .secondary-nav .yamm-content h6 > a,
  .secondary-nav .yamm-content .nav-title a,
  .secondary-nav .yamm-content .nav-title > a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h1 a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h1 > a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h2 a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h2 > a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h3 a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h3 > a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h4 a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h4 > a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h5 a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h5 > a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h6 a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h6 > a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .nav-title a,
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .nav-title > a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h1 a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h1 > a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h2 a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h2 > a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h3 a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h3 > a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h4 a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h4 > a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h5 a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h5 > a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h6 a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content h6 > a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content .nav-title a,
  .primary-nav .nav-inline .dropdown-menu .yamm-content .nav-title > a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h1 a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h1 > a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h2 a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h2 > a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h3 a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h3 > a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h4 a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h4 > a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h5 a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h5 > a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h6 a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content h6 > a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content .nav-title a,
  .navbar-primary .departments-menu .dropdown-menu .yamm-content .nav-title > a {
    padding: 0;
    font-weight: bold; }

.vertical-menu .yamm-content ul + h1, .vertical-menu .yamm-content ul + h2, .vertical-menu .yamm-content ul + h3, .vertical-menu .yamm-content ul + h4, .vertical-menu .yamm-content ul + h5, .vertical-menu .yamm-content ul + h6, .vertical-menu .yamm-content li + .nav-title, .vertical-menu .yamm-content .menu-item + .nav-title,
.secondary-nav .yamm-content ul + h1,
.secondary-nav .yamm-content ul + h2,
.secondary-nav .yamm-content ul + h3,
.secondary-nav .yamm-content ul + h4,
.secondary-nav .yamm-content ul + h5,
.secondary-nav .yamm-content ul + h6,
.secondary-nav .yamm-content li + .nav-title,
.secondary-nav .yamm-content .menu-item + .nav-title,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul + h1,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul + h2,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul + h3,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul + h4,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul + h5,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul + h6,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content li + .nav-title,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .menu-item + .nav-title,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul + h1,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul + h2,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul + h3,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul + h4,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul + h5,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul + h6,
.primary-nav .nav-inline .dropdown-menu .yamm-content li + .nav-title,
.primary-nav .nav-inline .dropdown-menu .yamm-content .menu-item + .nav-title,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul + h1,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul + h2,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul + h3,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul + h4,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul + h5,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul + h6,
.navbar-primary .departments-menu .dropdown-menu .yamm-content li + .nav-title,
.navbar-primary .departments-menu .dropdown-menu .yamm-content .menu-item + .nav-title {
  margin-top: 1.143em; }

.departments-menu .yamm-fw .dropdown-menu > li {
  width: 896px; }

.departments-menu .yamm-tfw .dropdown-menu > li {
  width: 596px; }

.departments-menu .yamm-hw .dropdown-menu > li {
  width: 446px; }

.animate-dropdown.open > .dropdown-menu,
.animate-dropdown .open > .dropdown-menu,
.animate-dropdown .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu {
  animation-name: slidenavAnimation;
  animation-duration: 200ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  -webkit-animation-name: slidenavAnimation;
  -webkit-animation-duration: 200ms;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: slidenavAnimation;
  -moz-animation-duration: 200ms;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: ease-out;
  -moz-animation-fill-mode: forwards; }

@keyframes slidenavAnimation {
  from {
    margin-top: -30px;
    opacity: 0; }
  to {
    margin-top: 0;
    opacity: 1; } }

@-webkit-keyframes slidenavAnimation {
  from {
    margin-top: -30px;
    opacity: 0; }
  to {
    margin-top: 0;
    opacity: 1; } }

#scrollUp {
  border-radius: 3px;
  bottom: 1.25rem;
  color: #fff;
  font-size: 2.25rem;
  height: 2.625rem;
  line-height: 100%;
  opacity: 0.5;
  padding: 3px;
  right: 1.25rem;
  text-align: center;
  width: 2.625rem; }
  #scrollUp:hover, #scrollUp:focus, #scrollUp:active {
    opacity: 1; }
  #scrollUp i {
    display: inline-block;
    vertical-align: top; }

@media (max-width: 991px) {
  #scrollUp {
    bottom: 5.25rem; } }

.gt_recent_posts_widget ul > li {
  margin-bottom: 1.429em; }
  .gt_recent_posts_widget ul > li .post-thumbnail {
    float: left;
    padding-right: 0.929em; }
    .gt_recent_posts_widget ul > li .post-thumbnail img {
      display: block;
      max-width: 100%;
      height: auto;
      width: 75px;
      height: 75px; }
  .gt_recent_posts_widget ul > li .post-content::after {
    content: "";
    display: table;
    clear: both; }
  .gt_recent_posts_widget ul > li .post-content > a {
    color: #434343;
    display: block; }
    .gt_recent_posts_widget ul > li .post-content > a:hover, .gt_recent_posts_widget ul > li .post-content > a:focus {
      text-decoration: none;
      color: #000; }
  .gt_recent_posts_widget ul > li .post-content .post-date {
    color: #878787;
    font-size: 0.857em;
    line-height: 1.000em; }
  .gt_recent_posts_widget ul > li:last-child {
    margin-bottom: 0; }

.gt_recent_posts_widget .gt-img-placeholder {
  position: relative; }
  .gt_recent_posts_widget .gt-img-placeholder .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; }

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  user-select: none; }

.pace-inactive {
  display: none; }

.pace .pace-progress {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px; }

.navbar-toggle-close {
  display: none; }

.toggled .navbar-toggle-close {
  display: block; }

.toggled .navbar-toggle-hamburger {
  display: none; }

.handheld-navigation-wrapper.toggled .handheld-navigation {
  left: 0; }

.handheld-navigation-wrapper button,
.handheld-navigation-wrapper .navbar-toggler,
.handheld-navigation-wrapper.toggled button,
.handheld-navigation-wrapper.toggled .navbar-toggler {
  color: #d4cdcd;
  border: none; }
  .handheld-navigation-wrapper button:hover, .handheld-navigation-wrapper button:focus, .handheld-navigation-wrapper button:active,
  .handheld-navigation-wrapper .navbar-toggler:hover,
  .handheld-navigation-wrapper .navbar-toggler:focus,
  .handheld-navigation-wrapper .navbar-toggler:active,
  .handheld-navigation-wrapper.toggled button:hover,
  .handheld-navigation-wrapper.toggled button:focus,
  .handheld-navigation-wrapper.toggled button:active,
  .handheld-navigation-wrapper.toggled .navbar-toggler:hover,
  .handheld-navigation-wrapper.toggled .navbar-toggler:focus,
  .handheld-navigation-wrapper.toggled .navbar-toggler:active {
    background-color: transparent;
    border: none;
    color: #0d244d; }

.sticky-wrapper .handheld-navbar-toggle-buttons.stuck {
  border-radius: 3px;
  position: fixed;
  right: 1.75rem;
  top: 1.25rem;
  z-index: 9999; }

.handheld-navigation {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  transition: left 0.2s;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: left 0.2s;
  -moz-transition: left 0.2s;
  -ms-transition: left 0.2s;
  -o-transition: left 0.2s;
  transition: left 0.2s;
  z-index: 99999999;
  display: block !important;
  border-right: 1px solid rgba(255, 255, 255, 0.2); }
  .handheld-navigation .ehm-close {
    display: block;
    background-color: #fff;
    cursor: pointer;
    color: #bbb;
    overflow: hidden;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .handheld-navigation .ehm-close:before {
      font-family: "FontAwesome";
      font-weight: 400;
      content: '\f00d';
      margin-right: 1em;
      display: inline-block;
      padding: 0.857em 0 0.857em 1.387em; }
  .handheld-navigation .yamm .dropdown.yamm-fw .dropdown-menu {
    position: relative; }
  .handheld-navigation .navbar-toggler {
    cursor: pointer;
    text-align: left;
    float: right;
    position: relative;
    border: 2px solid #0d244d;
    box-shadow: none;
    border-radius: 2px;
    padding: 0.6180469716em 0.875em 0.6180469716em 2.617924em;
    font-size: .875em; }
  .handheld-navigation .nav-title, .handheld-navigation .widgettitle, .handheld-navigation .widget-title {
    color: #fff;
    padding-left: 0.2em; }
  .handheld-navigation .nav-divider {
    display: none; }
  .handheld-navigation .yamm-content {
    padding: 0 0 1em 0; }
    .handheld-navigation .yamm-content .vc_row {
      margin: 0; }
    .handheld-navigation .yamm-content ul li a {
      padding: .857em 1.387em; }
  .handheld-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .handheld-navigation ul li.menu-item-has-children.open .dropdown-toggle::after,
    .handheld-navigation ul li.menu-item-has-children.open > a::after,
    .handheld-navigation ul li.menu-item-has-children .dropdown-toggle::after,
    .handheld-navigation ul li.menu-item-has-children > a::after {
      font-family: "FontAwesome", sans-serif;
      color: #fff;
      float: right;
      border: none; }
    .handheld-navigation ul li.menu-item-has-children .dropdown-toggle::after,
    .handheld-navigation ul li.menu-item-has-children > a::after {
      content: "\f055"; }
    .handheld-navigation ul li.menu-item-has-children.open > .dropdown-toggle::after,
    .handheld-navigation ul li.menu-item-has-children.open > a::after {
      content: "\f056"; }
    .handheld-navigation ul li.menu-item-has-children.open .dropdown-backdrop {
      display: none; }
    .handheld-navigation ul li.menu-item-has-children a::after {
      display: inline-block;
      width: 0;
      height: 0;
      margin-right: .25rem;
      margin-left: .25rem;
      vertical-align: middle;
      border: none; }
    .handheld-navigation ul li a {
      padding: .857em 1.387em;
      display: inline-block;
      width: 100%;
      color: #333; 
	  font-weight:600;
	  }
      .handheld-navigation ul li a i {
        margin-right: 10px; }
    .handheld-navigation ul li ul {
      border-radius: 0; }
      .handheld-navigation ul li ul::after, .handheld-navigation ul li ul::before {
        bottom: 100%;
        right: 10px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(72, 72, 72, 0);
        border-bottom-color: #090b0c;
        border-width: 7px;
        margin-left: -7px; }
    .handheld-navigation ul li ul li a {
      color: #666; }
    .handheld-navigation ul .bg-yamm-content {
      display: none; }
    .handheld-navigation ul .dropdown-menu {
      position: relative;
      background-color: #f5f5f5;
      width: 100%;
      transition: all .3s ease;
      border: none; }
      .handheld-navigation ul .dropdown-menu li a {
        padding-left: 2.188em; }
      .handheld-navigation ul .dropdown-menu .yamm-content li a {
        padding-left: 1.387em; }
      .handheld-navigation ul .dropdown-menu .dropdown-menu {
        background-color: #dedede; }
        .handheld-navigation ul .dropdown-menu .dropdown-menu::after, .handheld-navigation ul .dropdown-menu .dropdown-menu::before {
          border-bottom-color: #dedede; }
        .handheld-navigation ul .dropdown-menu .dropdown-menu .dropdown-menu {
          background-color: #2b343c; }
          .handheld-navigation ul .dropdown-menu .dropdown-menu .dropdown-menu::after, .handheld-navigation ul .dropdown-menu .dropdown-menu .dropdown-menu::before {
            border-bottom-color: #2b343c; }
    .handheld-navigation ul > li.open > a ul ul {
      background-color: #090b0c; }

.admin-bar .handheld-navigation {
  padding-top: 46px; }

.live-search-media {
  display: block;
  color: #333; }

.twitter-typeahead {
  z-index: 1051;
  width: 100%;
  display: table-cell !important; }

.tt-hint {
  color: #999; }

.tt-menu {
  margin-top: 2px;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: calc( 100% - 2.134em);
  margin-left: 2.134em;
  text-align: left;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

.tt-suggestion, .empty-message {
  padding: 3px 20px;
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  cursor: pointer; }
  .tt-suggestion:focus, .tt-suggestion:hover, .empty-message:focus, .empty-message:hover {
    color: #0d244d;
    background-color: #f5f5f5;
    cursor: pointer; }

.tt-suggestion.tt-cursor {
  color: #0d244d;
  background-color: #f5f5f5;
  cursor: pointer; }

.tt-suggestion p {
  margin: 0; }

.demo_store {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0;
  padding: 12px 2.6180340252em;
  z-index: 999;
  text-align: center;
  font-weight: bold;
  top: 0; }
  .demo_store a {
    text-decoration: underline;
    display: block; }
    .demo_store a:hover {
      text-decoration: none; }

.admin-bar .demo_store {
  top: 32px; }

.woocommerce-demo-store:not(.admin-bar) #page {
  margin-top: 47px; }

.admin-bar.woocommerce-demo-store #page {
  margin-top: 47px; }

.woocommerce-store-notice-dismissed #page {
  margin-top: 0 !important; }

@media (min-width: 768px) {
  .demo_store a {
    background: rgba(0, 0, 0, 0.1);
    float: right;
    display: inline-block;
    margin: -1em -1.41575em -1em 0;
    padding: 12px 2.6180340252em; } }

.single-product .single-product-wrapper .gt-price .auction {
  font-size: 0.629em; }

.single-product .single-product-wrapper .auction-condition,
.single-product .single-product-wrapper .auction-time {
  padding: 10px; }

.single-product .single-product-wrapper .auction-condition {
  border: 1px solid #ddd;
  margin-bottom: 0; }
  .single-product .single-product-wrapper .auction-condition .curent-bid {
    font-weight: bold;
    color: green; }

.single-product .single-product-wrapper .auction-condition + p {
  padding-top: 14px; }
  .single-product .single-product-wrapper .auction-condition + p + p .button {
    min-width: 160px;
    text-align: center;
    font-size: 16px; }

.single-product .single-product-wrapper .auction-time {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd; }
  .single-product .single-product-wrapper .auction-time .auction-time-countdown {
    display: flex;
    flex-wrap: wrap; }
  .single-product .single-product-wrapper .auction-time .countdown_section {
    background-color: #f1f1f1;
    margin: 2px 1px;
    padding: 8px 0; }

.single-product .single-product-wrapper .auction-ajax-change .auction-end {
  padding: 10px;
  border: 1px solid #ddd; }

.single-product .single-product-wrapper .auction-ajax-change .auction-bid {
  font-size: 18px; }

.single-product .single-product-wrapper .auction_form {
  margin-bottom: 12px; }
  .single-product .single-product-wrapper .auction_form .bid_button {
    min-width: 150px;
    margin-left: 14px; }

.single-product .single-product-wrapper .wsawl-link a {
  color: #949494; }
  .single-product .single-product-wrapper .wsawl-link a:hover {
    color: #3b3b3b; }

li.product-type-auction span.winning {
  min-height: 24px;
  padding: 6px 10px;
  line-height: 1;
  top: 0;
  border-radius: 0;
  z-index: 9;
  left: 0; }

#shipping_method {
  list-style: none;
  width: 100%;
  margin: 0; }
  #shipping_method li {
    position: relative; }
    #shipping_method li label {
      font-weight: normal;
      margin-left: 5px; }
      #shipping_method li label > span {
        position: absolute;
        right: 0;
        top: 2px; }

tr.shipping {
  flex-wrap: wrap; }
  tr.shipping > td, tr.shipping > th {
    display: block;
    flex: 0 0 100%;
    max-width: 100%; }
  tr.shipping > td > .woocommerce-Price-amount {
    float: right; }
  tr.shipping > th {
    padding-bottom: 0 !important; }

.woocommerce-checkout-review-order-table {
  display: block;
  padding: 0 0.75rem; }
  .woocommerce-checkout-review-order-table thead, .woocommerce-checkout-review-order-table tbody, .woocommerce-checkout-review-order-table tfoot {
    display: block;
    width: 100%; }
    .woocommerce-checkout-review-order-table thead > tr, .woocommerce-checkout-review-order-table tbody > tr, .woocommerce-checkout-review-order-table tfoot > tr {
      display: flex;
      width: 100%;
      justify-content: space-between;
      border-top: 1px solid #ddd; }
      .woocommerce-checkout-review-order-table thead > tr td, .woocommerce-checkout-review-order-table thead > tr th, .woocommerce-checkout-review-order-table tbody > tr td, .woocommerce-checkout-review-order-table tbody > tr th, .woocommerce-checkout-review-order-table tfoot > tr td, .woocommerce-checkout-review-order-table tfoot > tr th {
        border: 0;
        padding: 0.75rem 0; }
  .woocommerce-checkout-review-order-table thead tr {
    border-top: 0; }

.top-bar {
 .products-carousel .owl-stage .owl-item:not(.active)
  padding: 0.786em 0; }
  .top-bar .nav-inline .menu-item {
    display: inline-block;
    color: #959595;
    font-size: 0.929em; }
  .top-bar .nav-inline > .menu-item + .menu-item:before {
    content: '|';
    color: #cad5d5;
    display: inline-block;
    margin: 0 1em; }
  .top-bar .nav-inline .menu-item > a {
    display: inline-block;
    color: #334141; }
    .top-bar .nav-inline .menu-item > a i {
      margin-right: 6px;
      font-size: 1rem; }
    .top-bar .nav-inline .menu-item > a:focus, .top-bar .nav-inline .menu-item > a:hover {
      text-decoration: none; }
    .top-bar .nav-inline .menu-item > a.disabled {
      color: #818a91; }
      .top-bar .nav-inline .menu-item > a.disabled, .top-bar .nav-inline .menu-item > a.disabled:focus, .top-bar .nav-inline .menu-item > a.disabled:hover {
        color: #818a91;
        cursor: not-allowed;
        background-color: transparent; }
  .top-bar .nav-inline .menu-item .dropdown-menu {
    top: 30px;
    z-index: 1060; }
    .top-bar .nav-inline .menu-item .dropdown-menu .menu-item {
      display: block; }
      .top-bar .nav-inline .menu-item .dropdown-menu .menu-item:before {
        content: none; }

/**
 * Header
 */
.site-header {
  padding: 2.893em 0; }
  .site-header .dropdown-menu {
    z-index: 1001; }

.header-logo {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  @media (min-width: 768px) {
    .header-logo {
     }
  }
  .header-logo .header-logo-link {
    display: block; max-width:270px; }

.primary-nav {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-top: 0.393em;
  padding-bottom: 0.393em; }
  @media (min-width: 768px) {
    .primary-nav {
      width: 50%; } }

@media (min-width: 768px) {
  .no-header-support-info .primary-nav {
    width: 75%; } }

.header-support-info {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  @media (min-width: 768px) {
    .header-support-info {
      width: 25%; } }
  .header-support-info .support-icon {
    padding-right: 20px;
    padding-left: 15px; }
    .header-support-info .support-icon .fa {
      font-size: 3em; }
    .header-support-info .support-icon .ec {
      font-size: 3.571em; }

.header-v1, .header-v3 {
  padding-bottom: 0;
  border-bottom: 1px solid #ddd; }
  .header-v1 .container > .row:first-child, .header-v3 .container > .row:first-child {
    margin-bottom: 1.786em; }
  .header-v1 .navbar-search .input-group .form-control, .header-v1 .navbar-search .input-group table.cart .coupon .input-text, table.cart .coupon .header-v1 .navbar-search .input-group .input-text, .header-v3 .navbar-search .input-group .form-control, .header-v3 .navbar-search .input-group table.cart .coupon .input-text, table.cart .coupon .header-v3 .navbar-search .input-group .input-text {
    border-width: 2px;
    border-style: solid;
    border-right: 0; }
  .header-v1 .navbar-search .input-group .input-group-addon, .header-v3 .navbar-search .input-group .input-group-addon {
    border-width: 2px;
    border-style: solid;
    border-left: 0;
    border-right: 0; }
  .header-v1 .navbar-search .input-group .btn, .header-v1 .navbar-search .input-group .hero-action-btn, .header-v3 .navbar-search .input-group .btn, .header-v3 .navbar-search .input-group .hero-action-btn {
    border-width: 2px;
    border-style: solid;
    border-left: 0;
    color: #0d244d; }
  .header-v1 .navbar-nav .nav-link, .header-v3 .navbar-nav .nav-link {
    line-height: 2.53em;
    font-weight: bold;
    font-size: 1.142em;
    color: #fff; }
  .header-v1 .navbar-nav + .navbar-nav,
  .header-v1 .navbar-search + .navbar-nav,
  .header-v1 .primary-nav + .navbar-nav,
  .header-v1 .header-logo + .navbar-nav, .header-v3 .navbar-nav + .navbar-nav,
  .header-v3 .navbar-search + .navbar-nav,
  .header-v3 .primary-nav + .navbar-nav,
  .header-v3 .header-logo + .navbar-nav {
    margin-left: 2.714em; }
  .header-v1 .navbar-search + .navbar-nav.pull-right,
  .header-v1 .primary-nav + .navbar-nav.pull-right,
  .header-v1 .header-logo + .navbar-nav.pull-right, .header-v3 .navbar-search + .navbar-nav.pull-right,
  .header-v3 .primary-nav + .navbar-nav.pull-right,
  .header-v3 .header-logo + .navbar-nav.pull-right {
    padding-right: 0.9375rem; }

.home .header-v1,
.page-template-template-homepage-v1 .header-v1,
.header-v3 {
  border-bottom: 0; }

.header-v3 + .navbar-primary,
.header-v3 + .sticky-wrapper > .navbar-primary {
  padding: 0;
	background:transparent;

	border:none;
  }
  .header-v3 + .navbar-primary .navbar-nav > .menu-item > a,
  .header-v3 + .sticky-wrapper > .navbar-primary .navbar-nav > .menu-item > a {
    padding: 1.429em 1.375em; }

.full-color-background .header-v3, .full-color-background .top-bar {
  background-color: #fed700; }

.full-color-background .header-v3 {
  padding-top: 1.4em; }
  .full-color-background .header-v3 .navbar-search .input-group .btn, .full-color-background .header-v3 .navbar-search .input-group .hero-action-btn {
    background-color: #0d244d;
    color: #fff;
    border-color: #0d244d; }
  .full-color-background .header-v3 .navbar-search .input-group .form-control, .full-color-background .header-v3 .navbar-search .input-group table.cart .coupon .input-text, table.cart .coupon .full-color-background .header-v3 .navbar-search .input-group .input-text,
  .full-color-background .header-v3 .navbar-search .input-group .input-group-addon {
    border-color: #fff; }
  .full-color-background .header-v3 .navbar-mini-cart .cart-items-count,
  .full-color-background .header-v3 .navbar-compare .count,
  .full-color-background .header-v3 .navbar-wishlist .count {
    background-color: #0d244d;
    color: #fff; }
  .full-color-background .header-v3 .ellipse-bg {
    fill: #64c3f1; }

.full-color-background .navbar-primary {
  border-top-width: 1px;
  border-top-style: solid; }
  .full-color-background .navbar-primary .navbar-nav {
    margin-left: -20px; }

.full-color-background .header-v3 + .navbar-primary .navbar-nav > .menu-item > a,
.full-color-background .header-v3 + .sticky-wrapper > .navbar-primary .navbar-nav > .menu-item > a {
  padding: 0.907em 1.375em; }

.full-color-background .top-bar {
  border-bottom: none; }

.header-v3 {
  padding-bottom: .64em;
  padding-top: 2.4em; }

.sticky-wrapper .navbar-full.stuck {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; }

.sticky-wrapper .navbar-full.stuck .departments-menu .dropdown .dropdown-menu {
  display: none; }

.sticky-wrapper .navbar-full.stuck .departments-menu .dropdown.open .dropdown-menu {
  display: block; }

.admin-bar .sticky-wrapper .navbar-full.stuck {
  top: 32px; }

@media (max-width: 568px) {
  .site-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 0; }
  .handheld-header {
    margin-bottom: 1.429em;
    display: flex;
    align-items: center; }
    .handheld-header .header-logo {
      margin-bottom: 0; } }

.navbar-primary {
  padding: 0.358em 1rem; }
  .navbar-primary a[data-toggle="dropdown"]::after, .navbar-primary a[data-toggle="dropdown-hover"]::after {
    content: '\79';
    font-family: 'font-gt';
    color: #0d244d;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-left: 0.857em;
    width: auto;
    height: auto; }
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .dropdown-submenu {
    position: relative; }
  .navbar-primary .navbar-nav .nav-link {
    line-height: 2.143em;
    font-weight: bold;
    font-size: 1.142em;
    color: #0d244d; }
  .navbar-primary .navbar-nav + .navbar-nav,
  .navbar-primary .navbar-search + .navbar-nav {
    margin-left: 2.714em; }
    .navbar-primary .navbar-nav + .navbar-nav.navbar-compare,
    .navbar-primary .navbar-search + .navbar-nav.navbar-compare {
      margin-left: 0; }
  .navbar-primary .navbar-nav > .menu-item {
    float: left; }
  .navbar-primary .navbar-nav > .menu-item > a {
    display: block;
    font-size: 1.143em;
    font-weight: bold;
    line-height: 1.125em;
    color: #fff;
    padding: 1.358em 1.375em;
    border-right: 1px solid transparent; }
    .navbar-primary .navbar-nav > .menu-item > a:focus, .navbar-primary .navbar-nav > .menu-item > a:hover {
      color: #fff;
      text-decoration: none; }
  .navbar-primary .navbar-nav > .menu-item:last-child > a {
    border-right: 0; }
  .navbar-primary .navbar-mini-cart .dropdown-menu-mini-cart {
    top: 108% !important;
    right: -25px;
    box-shadow: none;
    padding: 2.2em 2.1em 1.2em 2.1em;
    border: 2px solid transparent; }
  .navbar-primary .navbar-mini-cart .nav-link::after {
    content: none; }
  .navbar-primary .navbar-mini-cart .cart-items-count {
    background-color: #0d244d;
    color: #fff; }
  .navbar-primary .navbar-compare .count,
  .navbar-primary .navbar-wishlist .count {
    background-color: #0d244d;
    color: #fff; }
  .navbar-primary .nav:before,
  .navbar-primary .nav:after {
    display: none; }

.header-v1 + .navbar-primary,
.header-v1 + .sticky-wrapper > .navbar-primary {
  padding: 0; }

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a,
.primary-nav .nav-inline .dropdown-menu .menu-item > a,
.top-bar .nav-inline .dropdown-menu .menu-item > a {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.5;
  color: #373a3c;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 0.571em 1.429em; }
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a:focus, .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a:hover,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a:focus,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a:hover,
  .top-bar .nav-inline .dropdown-menu .menu-item > a:focus,
  .top-bar .nav-inline .dropdown-menu .menu-item > a:hover {
    color: #2b2d2f;
    text-decoration: none;
    background-color: #f5f5f5; }
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.active, .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.active:focus, .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.active:hover,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.active,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.active:focus,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.active:hover,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.active,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.active:focus,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.active:hover {
    color: #fff;
    text-decoration: none;
    background-color: #efecec;
    outline: 0; }
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.disabled, .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.disabled:focus, .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.disabled:hover,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.disabled,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.disabled:focus,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.disabled:hover,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.disabled,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.disabled:focus,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.disabled:hover {
    color: #818a91; }
  .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.disabled:focus, .navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item > a.disabled:hover,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.disabled:focus,
  .primary-nav .nav-inline .dropdown-menu .menu-item > a.disabled:hover,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.disabled:focus,
  .top-bar .nav-inline .dropdown-menu .menu-item > a.disabled:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; }

.navbar-primary #header-v3 .navbar-nav .menu-item .dropdown-menu,
.primary-nav .nav-inline .menu-item .dropdown-menu,
.top-bar .nav-inline .menu-item .dropdown-menu {
  opacity: 0;
  position: absolute;
  display: block;
  visibility: hidden;
  border-radius: 0;
  border-top-width: 2px;
  border-top-style: solid; }

.navbar-primary #header-v3 .navbar-nav > .menu-item.open > .dropdown-menu,
.navbar-primary #header-v3 .navbar-nav > .menu-item .dropdown-menu .menu-item-has-children:hover > .dropdown-menu,
.primary-nav .nav-inline > .menu-item.open > .dropdown-menu,
.primary-nav .nav-inline > .menu-item .dropdown-menu .menu-item-has-children:hover > .dropdown-menu,
.top-bar .nav-inline > .menu-item.open > .dropdown-menu,
.top-bar .nav-inline > .menu-item .dropdown-menu .menu-item-has-children:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; }

.navbar-primary #header-v3 .navbar-nav > .menu-item .dropdown-menu .menu-item-has-children .dropdown-menu,
.primary-nav .nav-inline > .menu-item .dropdown-menu .menu-item-has-children .dropdown-menu,
.top-bar .nav-inline > .menu-item .dropdown-menu .menu-item-has-children .dropdown-menu {
  top: 0;
  left: 100%; }

.navbar-primary #header-v3 .navbar-nav .menu-item .dropdown-menu {
  top: 100%; }

.primary-nav .nav-inline .menu-item .dropdown-menu {
  top: 46px; }

.navbar-primary #header-v3 .navbar-nav > .menu-item > a[data-toggle="dropdown"]::after, .navbar-primary #header-v3 .navbar-nav > .menu-item > a[data-toggle="dropdown-hover"]::after {
  display: none; }

.navbar-primary #header-v3 .navbar-nav > .menu-item.open .dropdown-menu {
  transform: translateY(0%); }

.navbar-mini-cart i.ec,
.navbar-search i.ec,
.navbar-wishlist i.ec,
.navbar-compare i.ec {
  line-height: 0.9em;
  font-size: 1.429em; }

.navbar-search .input-group .form-control:last-child, .navbar-search .input-group table.cart .coupon .input-text:last-child, table.cart .coupon .navbar-search .input-group .input-text:last-child {
  border-top-left-radius: 2.467em;
  border-bottom-left-radius: 2.467em; }

.navbar-compare .nav-link,
.navbar-wishlist .nav-link {
  position: relative; }

.navbar-compare .count,
.navbar-wishlist .count {
  font-size: .75em;
  line-height: 1.75em;
  font-weight: 700;
  position: absolute;
  left: 7px;
  width: 1.75em;
  text-align: center;
  border-radius: 50%;
  bottom: 4px; }

.primary-nav .nav-inline .yamm-fw.open > a {
  position: relative; }
  .primary-nav .nav-inline .yamm-fw.open > a::before {
    position: absolute;
    animation-name: fadeIn;
    animation-duration: 2s;
    content: " ";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    bottom: -16px;
    left: 50%;
    border-bottom-width: 8px;
    border-bottom-style: solid;
    transform: translate(-50%, -50%); }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.home-v1-slider,
.home-v2-slider,
.home-v3-slider {
  background-color: #f9f9f9;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  margin-bottom: 3em; }

.hero {
  font-size: 3.429em !important;
  color: #0d244d !important;
  font-weight: 200 !important;
  line-height: 1em !important;
  margin-bottom: 0.896em !important; }
  .hero span {
    font-weight: 700 !important; }

.hero-v2 {
  font-size: 4.143em !important; }

.hero-subtitle {
  font-size: 1.286em !important;
  color: #34bcec !important; }

.hero-subtitle-v2 {
  font-weight: 900 !important;
  color: #0d244d !important; }

.hero-action-btn {
  color: #0d244d !important;
  font-size: 1.286em !important;
  padding: 0.611em 3.172em !important;
  border-radius: 0.714em !important;
  line-height: 1.3em !important; }

.hero-v2-price {
  line-height: 1em !important; }
  .hero-v2-price sup {
    font-weight: 400 !important; }

.home-full-width-slider {
  margin-bottom: 2em; }

.features-list {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 2.5em;
  margin-left: 0;
  margin-right: 0; }
  .features-list::after {
    content: "";
    display: table;
    clear: both; }
  .features-list .media {
    width: 150px;
    margin: 0 auto; }
  .features-list .media-left i {
    font-size: 2.571em; }
  .features-list .media-left i.ec-customers {
    font-size: 3.386em; }
  .features-list .media-body {
    text-align: center;
    font-size: 1.071em; }
  .features-list .feature {
    padding-top: 2.143em;
    padding-bottom: 2.143em;
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
  .features-list .feature + .feature {
    border-left: 1px solid #ddd; }
  .features-list .feature-text strong {
    display: block; }
  @media (min-width: 992px) {
    .features-list.columns-2 .feature {
      width: 50%; } }
  @media (min-width: 992px) {
    .features-list.columns-3 .feature {
      width: 33%; } }
  @media (min-width: 992px) {
    .features-list.columns-4 .feature {
      width: 25%; } }
  @media (min-width: 992px) {
    .features-list.columns-5 .feature {
      width: 20%; } }
  @media (min-width: 992px) {
    .features-list.columns-6 .feature {
      width: 16.6666666667%; } }

.da-block {
  margin-bottom: 5.286em; }
  .da-block .media-left img {
    width: 100%; }

.da .media {
  background-color: #f5f5f5; }

.da .media-left,
.da .media-body {
  width: 50%; }

.da .media-body {
  padding: 1.571em; }

.da .da-text {
  font-size: 1.286em;
  line-height: 1.278em;
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 1.429em; }

.da .da-action > a {
  font-size: 1.071em;
  font-weight: bold;
  line-height: 2em;
  color: #0d244d; }
  .da .da-action > a:focus, .da .da-action > a:hover {
    color: #0d244d;
    text-decoration: none; }
  .da .da-action > a::after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    content: "";
    font-weight: bold;
    margin-left: 8px;
    color: #fff;
    text-align: center; }
  .da .da-action > a .upto, .da .da-action > a .from {
    text-transform: uppercase;
    font-weight: 300; }
    .da .da-action > a .upto .prefix, .da .da-action > a .from .prefix {
      font-size: 0.919em;
      line-height: 0.909em;
      display: inline-block;
      width: 1.321em;
      margin-right: 4px; }
    .da .da-action > a .upto .value, .da .da-action > a .from .value {
      font-weight: bold;
      font-size: 2.173em;
      letter-spacing: -0.025em;
      line-height: 0.592em; }
      .da .da-action > a .upto .value sup, .da .da-action > a .from .value sup {
        top: -0.25em; }
    .da .da-action > a .upto .suffix, .da .da-action > a .from .suffix {
      top: -0.5em;
      position: relative;
      font-weight: bold;
      vertical-align: top;
      margin-left: 2px; }
  .da .da-action > a .from {
    position: relative; }
    .da .da-action > a .from .prefix {
      width: auto;
      position: absolute;
      top: -1.714em; }

.home-v1-da-block .media-left img,
.home-v2-da-block .media-left img,
.home-v3-da-block .media-left img {
  width: 100%; }

.home-v1-da-block .da .media-body {
  padding: 3.286em 0 2.143em 0; }

.home-v1-da-block .da .da-text {
  margin-bottom: 0.357em; }

.home-v1-da-block .da .media-left {
  width: 60%; }

.home-v1-da-block .da .media-body {
  width: 40%; }

.home-v1-da-block .da:nth-child(2) .media-body {
  padding-top: 3.113em; }

.home-v2-da-block .da .media-body {
  padding: 3.286em 0 2.143em 0; }

.home-v2-da-block .da .da-text {
  font-size: 1.571em;
  letter-spacing: -1px; }

.home-v2-da-block .da .media-left {
  width: 60%; }

.home-v2-da-block .da .media-body {
  width: 40%; }

.home-v3-da-block .da .media-body {
  padding: 2.857em 0 2.143em 0; }

.home-v3-da-block .da .da-text {
  font-size: 1.571em;
  letter-spacing: -1px; }

.home-v3-da-block .da:last-child .media-body {
  padding-left: 12px; }

.home-v3-da-block .da .media-left {
  width: 62%; }

.home-v3-da-block .da .media-body {
  width: 38%; }

.deal-and-tabs {
  margin-bottom: 5em; }

.section-onsale-product header {
  border-bottom: none;
  margin-bottom: 1em; }
  .section-onsale-product header h1 {
    font-size: 2em;
    line-height: 1.214em; }
    .section-onsale-product header h1 .highlight {
      font-weight: 600;
      display: block; }
    .section-onsale-product header h1::after {
      content: none; }

.section-onsale-product .savings {
  float: right;
  position: relative; }

.section-onsale-product .onsale-product > a {
  display: block; }

.section-onsale-product .onsale-product h3,
.section-onsale-product .onsale-product h2,
.section-onsale-product .onsale-product .woocommerce-loop-product__title {
  clear: both;
  text-align: center;
  margin-bottom: 1.214em; }

.section-onsale-product .onsale-product .product-thumbnail {
  margin-bottom: 1.714em; }

.section-onsale-product,
.onsale-product-carousel {
  border-radius: 1.214em;
  border: 2px solid transparent;
  padding: 1.429em 1.571em; }

.section-onsale-product-carousel header {
  margin-bottom: 1.071em;
  border-bottom: none; }
  .section-onsale-product-carousel header h2, .section-onsale-product-carousel header .h1 {
    padding-bottom: 0;
    color: #343f49; }
    .section-onsale-product-carousel header h2::after, .section-onsale-product-carousel header .h1::after {
      display: none; }

.section-onsale-product-carousel .onsale-product-carousel .onsale-product {
  display: inline-block;
  width: 100%; }
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails {
        width: 58.3333333333%;
        padding-left: 0; } }
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images {
      display: block;
      width: 100%;
      position: relative; }
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images > a {
        width: 82.333333%;
        display: inline-block;
        padding-right: 4px; }
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails {
        width: 16.6666666667%;
        display: inline-block;
        padding-left: 4px;
        position: absolute;
        transform: translateY(-50%);
        top: 50%; }
        .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a {
          display: inline-block;
          border: 1px solid #eaeaea;
          padding: 4px;
          margin-bottom: 0.571em; }
          .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a:only-child {
            margin-bottom: 0; }
          .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a.current {
            border-bottom-width: 2px;
            border-bottom-style: solid; }
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .savings {
      position: absolute;
      z-index: 1; }
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%;
    text-align: center; }
    @media (min-width: 768px) {
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content {
        width: 41.6666666667%;
        padding-right: 0;
        margin-top: 5.429em; } }
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price {
      font-size: 2.143em; }
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .button,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .added_to_cart {
      float: none;
      width: inherit;
      text-indent: 0;
      padding: 1.036em 3.434em;
      line-height: 1.286em;
      color: #fff;
      font-weight: 700;
      font-size: 1em;
      background-color: #efecec; }
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .button:before,
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .added_to_cart:before {
        float: none;
        display: inline;
        background-color: transparent;
        vertical-align: middle; }
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .button:focus, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .button:hover,
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .added_to_cart:focus,
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .added_to_cart:hover {
        background-color: #000; }
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .added_to_cart {
      display: inline-block;
      border-radius: 1.571em; }
      .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .added_to_cart:before {
        content: ''; }

.section-onsale-product-carousel .owl-nav {
  z-index: 100; }
  @media (min-width: 768px) {
    .section-onsale-product-carousel .owl-nav {
      margin-left: 58.3333333333%;
      border-bottom: 1px solid #eaeaea;
      position: absolute;
      width: 36%;
      padding-top: 28px;
      padding-bottom: 0.571em; } }
  .section-onsale-product-carousel .owl-nav .slider-prev, .section-onsale-product-carousel .owl-nav .slider-next {
    display: inline-block;
    color: #383838;
    text-decoration: none; }
    .section-onsale-product-carousel .owl-nav .slider-prev:hover, .section-onsale-product-carousel .owl-nav .slider-next:hover {
      color: #383838; }
    .section-onsale-product-carousel .owl-nav .slider-prev i, .section-onsale-product-carousel .owl-nav .slider-next i {
      font-size: 1.143em; }
  .section-onsale-product-carousel .owl-nav .slider-next {
    float: right; }
    .section-onsale-product-carousel .owl-nav .slider-next i {
      padding-left: 0.625em; }
  .section-onsale-product-carousel .owl-nav .slider-prev i {
    padding-right: 0.625em; }
  .section-onsale-product-carousel .owl-nav .disabled {
    color: #a0a0a0; }

.section-onsale-product-carousel.hide-progress .deal-progress {
  display: none; }

.section-onsale-product-carousel.hide-timer .deal-countdown-timer {
  display: none; }

.section-onsale-product-carousel.hide-cart-button .deal-cart-button {
  display: none; }

.section-onsale-product .onsale-product .deal-progress::after,
.section-onsale-product-carousel .onsale-product .deal-progress::after {
  content: "";
  display: table;
  clear: both; }

.section-onsale-product .onsale-product .deal-progress .deal-stock,
.section-onsale-product-carousel .onsale-product .deal-progress .deal-stock {
  font-size: 1.071em;
  line-height: 1.2em;
  margin-bottom: 0.867em; }
  .section-onsale-product .onsale-product .deal-progress .deal-stock::after,
  .section-onsale-product-carousel .onsale-product .deal-progress .deal-stock::after {
    content: "";
    display: table;
    clear: both; }
  .section-onsale-product .onsale-product .deal-progress .deal-stock .stock-available,
  .section-onsale-product-carousel .onsale-product .deal-progress .deal-stock .stock-available {
    float: right; }
  .section-onsale-product .onsale-product .deal-progress .deal-stock .stock-sold,
  .section-onsale-product-carousel .onsale-product .deal-progress .deal-stock .stock-sold {
    float: left; }

.section-onsale-product .onsale-product .deal-progress .progress,
.section-onsale-product-carousel .onsale-product .deal-progress .progress {
  border-radius: 0.571em;
  background-color: #eee;
  height: 1.429em;
  margin-bottom: 1.875em;
  overflow: hidden; }

.section-onsale-product .onsale-product .deal-progress .progress-bar,
.section-onsale-product-carousel .onsale-product .deal-progress .progress-bar {
  display: block;
  text-indent: -99999px;
  height: 100%;
  border-radius: 0.571em; }

.section-onsale-product .onsale-product .price,
.section-onsale-product-carousel .onsale-product .price {
  text-align: center;
  font-size: 2.143em;
  display: block;
  width: 100%;
  margin-bottom: 1em; }

.section-onsale-product .onsale-product .deal-countdown-timer,
.section-onsale-product-carousel .onsale-product .deal-countdown-timer {
  margin-bottom: 0.857em; }
  .section-onsale-product .onsale-product .deal-countdown-timer .marketing-text,
  .section-onsale-product-carousel .onsale-product .deal-countdown-timer .marketing-text {
    margin-bottom: 1.071em; }

.section-onsale-product .onsale-product .countdown,
.section-onsale-product-carousel .onsale-product .countdown {
  text-align: center;
  color: #383838; }
  .section-onsale-product .onsale-product .countdown span[data-value="0"],
  .section-onsale-product-carousel .onsale-product .countdown span[data-value="0"] {
    display: none; }
  .section-onsale-product .onsale-product .countdown > span,
  .section-onsale-product-carousel .onsale-product .countdown > span {
    display: inline-block;
    margin: 0 6px; }
    .section-onsale-product .onsale-product .countdown > span:last-child .value::after,
    .section-onsale-product-carousel .onsale-product .countdown > span:last-child .value::after {
      content: none; }
    .section-onsale-product .onsale-product .countdown > span .value,
    .section-onsale-product-carousel .onsale-product .countdown > span .value {
      font-size: 2.143em;
      line-height: 1.367em;
      width: 56px;
      height: 41px;
      border-radius: 4px;
      background-color: #e6e6e6;
      display: inline-block;
      text-align: center;
      position: relative;
      margin-bottom: 0.429em; }
      .section-onsale-product .onsale-product .countdown > span .value::after,
      .section-onsale-product-carousel .onsale-product .countdown > span .value::after {
        content: ':';
        display: inline-block;
        position: absolute;
        right: -9px;
        font-size: 0.8em;
        line-height: 1.708em; }
    .section-onsale-product .onsale-product .countdown > span b,
    .section-onsale-product-carousel .onsale-product .countdown > span b {
      display: block;
      font-size: 0.857em;
      text-transform: uppercase;
      line-height: 1em; }

.section-onsale-product .savings,
.section-onsale-product-carousel .savings {
  width: 110px;
  height: 65px;
  border-radius: 8px;
  background-color: #343f49;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold; }
  .section-onsale-product .savings .savings-text,
  .section-onsale-product-carousel .savings .savings-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    text-align: center;
    width: 100%; }
  .section-onsale-product .savings .amount, .section-onsale-product .savings .percentage,
  .section-onsale-product-carousel .savings .amount,
  .section-onsale-product-carousel .savings .percentage {
    display: block; }

@media (max-width: 1199px) {
  .products-carousel-tabs .nav {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    justify-content: unset !important;
    width: 100%;
    border: none !important;
    padding-bottom: 6px; }
    .products-carousel-tabs .nav li {
      border-bottom: 1px solid #ddd;
      margin: 0 !important;
      flex-shrink: 0;
      width: 50%; } }

.products-carousel-tabs .nav-inline {
  text-align: center;
  border-bottom: 1px solid #ddd; }
  .products-carousel-tabs .nav-inline .nav-item + .nav-item {
    margin-left: 4em; }

.products-carousel-tabs .nav-link {
  color: #0d244d;
  font-size: 1.429em;
  line-height: 0.9em;
  padding-bottom: 1em; }
  .products-carousel-tabs .nav-link:focus, .products-carousel-tabs .nav-link:hover {
    color: #0d244d; }
  .products-carousel-tabs .nav-link.active {
    font-weight: bold;
    position: relative; }
    .products-carousel-tabs .nav-link.active::before {
      content: ' ';
      height: 4px;
      width: 10px;
      display: block;
      position: absolute;
      bottom: -5px;
      left: 50%;
      border-radius: 0 0 10px 10px;
      transform: translateX(-50%); }
    .products-carousel-tabs .nav-link.active::after {
      content: ' ';
      border-bottom: 2px solid transparent;
      display: block;
      position: absolute;
      bottom: -1px;
      width: 100%; }

.shop-control-bar {
  background-color: #f5f5f5;
  padding: 0.714em 1.429em;
  border-radius: 9px; }
  .shop-control-bar::after {
    content: "";
    display: table;
    clear: both; }
  .shop-control-bar .shop-view-switcher {
    float: left;
    min-height: 1px;
    position: relative;
    border: none; }
    @media (min-width: 992px) {
      .shop-control-bar .shop-view-switcher {
        width: 25%; } }
    .shop-control-bar .shop-view-switcher .nav-link {
      color: #d6dbe1;
      font-size: 1.286em;
      line-height: 2.24em;
      border: none;
      border-radius: 0;
      padding: 0; }
      .shop-control-bar .shop-view-switcher .nav-link:focus, .shop-control-bar .shop-view-switcher .nav-link:hover {
        text-decoration: none;
        color: #575560; }
      .shop-control-bar .shop-view-switcher .nav-link.active {
        text-decoration: none;
        color: #575560;
        background-color: transparent; }
    .shop-control-bar .shop-view-switcher .nav-item + .nav-item {
      margin-left: 0.714em;
      margin-left: 1.071em; }
      @media (max-width: 991px) {
        .shop-control-bar .shop-view-switcher .nav-item + .nav-item {
          margin-left: 2.5em; } }
  .shop-control-bar .woocommerce-ordering {
    float: left;
    width: auto;
    padding: 1px 0; }
    @media (max-width: 991px) {
      .shop-control-bar .woocommerce-ordering .orderby {
        width: 100%;
        border-radius: 100px;
        padding-left: 18px; } }
  .shop-control-bar .form-gt-wc-ppp {
    float: left;
    margin-left: 1em;
    padding: 1px 0; }
  .shop-control-bar .gt-advanced-pagination {
    float: right;
    line-height: 2.43em;
    padding: 1px 0; }

.shop-control-bar-bottom {
  border-top: 1px solid #eaeaea;
  padding: 1.714em 0; }
  .shop-control-bar-bottom::after {
    content: "";
    display: table;
    clear: both; }
  .shop-control-bar-bottom .form-gt-wc-ppp {
    float: left;
    padding: 0.215em 0; }
  .shop-control-bar-bottom .woocommerce-result-count {
    margin-bottom: 0;
    float: left;
    line-height: 3em;
    margin-left: 2em; }
  .shop-control-bar-bottom .woocommerce-pagination {
    float: right; }
    .shop-control-bar-bottom .woocommerce-pagination .prev, .shop-control-bar-bottom .woocommerce-pagination .next {
      display: none; }

.jumbotron-product-category {
  background-color: #f5f5f5;
  margin-bottom: 2.143em;
  padding: 4.286em 4.286em 3.609em 4.286em; }
  .jumbotron-product-category .jumbo-title {
    color: #0d244d;
    font-size: 3.214em;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 100; }
  .jumbotron-product-category .jumbo-subtitle {
    color: #7e7e7e;
    line-height: 1.5em;
    margin-bottom: 0; }
  .jumbotron-product-category .jumbo-image {
    margin-right: -3.143em;
    margin-top: -4.286em; }

.product-loop-categories {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .product-loop-categories::after {
    content: "";
    display: table;
    clear: both; }
  .product-loop-categories .product-category {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-bottom: 5.357em;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -15px; }
    .product-loop-categories .product-category > a {
      display: block;
      color: #0d244d; }
      .product-loop-categories .product-category > a:focus, .product-loop-categories .product-category > a:hover {
        color: #0d244d; }
    .product-loop-categories .product-category img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto 1.429em auto;
      position: static; }
    .product-loop-categories .product-category h3,
    .product-loop-categories .product-category h2,
    .product-loop-categories .product-category .woocommerce-loop-category__title {
      font-size: 1.286em;
      font-weight: normal;
      height: 1.286em;
      margin-bottom: 0; }
    .product-loop-categories .product-category .count {
      background-color: transparent;
      color: inherit;
      display: none; }
    .product-loop-categories .product-category::after {
      content: '';
      border-right: 1px solid #eaeaea;
      position: absolute;
      height: 100%;
      width: 1px;
      top: 0;
      right: 0; }
    .product-loop-categories .product-category.first {
      clear: both; }
    .product-loop-categories .product-category.last::after, .product-loop-categories .product-category:last-child::after {
      content: none; }
    .product-loop-categories .product-category:hover {
      box-shadow: 0px 0px 6px 0px rgba(1, 1, 1, 0.3); }
      .product-loop-categories .product-category:hover::after {
        content: none; }

@media (min-width: 768px) {
  .columns-1 .product-loop-categories > .product-category {
    width: 100%; } }

@media (min-width: 768px) {
  .columns-2 .product-loop-categories > .product-category {
    width: 50%; } }

@media (min-width: 768px) {
  .columns-3 .product-loop-categories > .product-category {
    width: 33%; } }

@media (min-width: 768px) {
  .product-loop-categories > .product-category,
  .columns-4 .product-loop-categories > .product-category {
    width: 25%; } }

@media (min-width: 768px) {
  .columns-5 .product-loop-categories > .product-category {
    width: 20%; } }

@media (min-width: 768px) {
  .columns-6 .product-loop-categories > .product-category {
    width: 16.6666666667%; } }

ul.products {
  padding-left: 0;
  margin-bottom: 1.286em;
  list-style: none; }
  ul.products::after {
    content: "";
    display: table;
    clear: both; }
  ul.products li.product, ul.products .section-onsale-product .onsale-product, .section-onsale-product ul.products .onsale-product, ul.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products .onsale-product-content, ul.products .products-carousel .owl-item .product, .products-carousel .owl-item ul.products .product {
    position: relative;
    min-height: 1px;
    margin: 0.857em 0;
    padding: 0; }
    ul.products li.product::after, ul.products .section-onsale-product .onsale-product::after, .section-onsale-product ul.products .onsale-product::after, ul.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products .onsale-product-content::after, ul.products .products-carousel .owl-item .product::after, .products-carousel .owl-item ul.products .product::after {
      content: '';
     
      display: block;
      position: absolute;
      top: 50%;
      right: 0;
      height: 80%;
      transform: translateY(-50%); }
    ul.products li.product:last-child::after, ul.products .section-onsale-product .onsale-product:last-child::after, .section-onsale-product ul.products .onsale-product:last-child::after, ul.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:last-child::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products .onsale-product-content:last-child::after, ul.products .products-carousel .owl-item .product:last-child::after, .products-carousel .owl-item ul.products .product:last-child::after, ul.products li.product:hover::after, ul.products .section-onsale-product .onsale-product:hover::after, .section-onsale-product ul.products .onsale-product:hover::after, ul.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products .onsale-product-content:hover::after, ul.products .products-carousel .owl-item .product:hover::after, .products-carousel .owl-item ul.products .product:hover::after, ul.products li.product.hover::after, ul.products .section-onsale-product .hover.onsale-product::after, .section-onsale-product ul.products .hover.onsale-product::after, ul.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products .hover.onsale-product-content::after, ul.products .products-carousel .owl-item .hover.product::after, .products-carousel .owl-item ul.products .hover.product::after {
      content: none; }

ul.products > li.product, .section-onsale-product ul.products > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .products-carousel .owl-item ul.products > .product {
  float: left; }
  @media (min-width: 768px) {
    ul.products > li.product, .section-onsale-product ul.products > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .products-carousel .owl-item ul.products > .product {
      width: 33%; } }
  ul.products > li.product.first, .section-onsale-product ul.products > .first.onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .first.onsale-product-content, .products-carousel .owl-item ul.products > .first.product {
     }
  ul.products > li.product.last:after, .section-onsale-product ul.products > .last.onsale-product:after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .last.onsale-product-content:after, .products-carousel .owl-item ul.products > .last.product:after {
    content: none; }

@media (min-width: 992px) {
  .columns-6 ul.products > li.product .hover-area .action-buttons, .columns-6 .section-onsale-product ul.products > .onsale-product .hover-area .action-buttons, .section-onsale-product .columns-6 ul.products > .onsale-product .hover-area .action-buttons, .columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .hover-area .action-buttons, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6 ul.products > .onsale-product-content .hover-area .action-buttons, .columns-6 .products-carousel .owl-item ul.products > .product .hover-area .action-buttons, .products-carousel .owl-item .columns-6 ul.products > .product .hover-area .action-buttons,
  .columns-5 ul.products > li.product .hover-area .action-buttons,
  .columns-5 .section-onsale-product ul.products > .onsale-product .hover-area .action-buttons, .section-onsale-product
  .columns-5 ul.products > .onsale-product .hover-area .action-buttons,
  .columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .hover-area .action-buttons, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .columns-5 ul.products > .onsale-product-content .hover-area .action-buttons,
  .columns-5 .products-carousel .owl-item ul.products > .product .hover-area .action-buttons, .products-carousel .owl-item
  .columns-5 ul.products > .product .hover-area .action-buttons {
    flex-direction: column; } }

.columns-6 ul.products > li.product .product-inner, .columns-6 .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product .columns-6 ul.products > .onsale-product .product-inner, .columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6 ul.products > .onsale-product-content .product-inner, .columns-6 .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item .columns-6 ul.products > .product .product-inner,
.columns-5 ul.products > li.product .product-inner,
.columns-5 .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product
.columns-5 ul.products > .onsale-product .product-inner,
.columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
.columns-5 ul.products > .onsale-product-content .product-inner,
.columns-5 .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item
.columns-5 ul.products > .product .product-inner,
.page-template-template-homepage-v2 .columns-4 ul.products > li.product .product-inner,
.page-template-template-homepage-v2 .columns-4 .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product
.page-template-template-homepage-v2 .columns-4 ul.products > .onsale-product .product-inner,
.page-template-template-homepage-v2 .columns-4 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
.page-template-template-homepage-v2 .columns-4 ul.products > .onsale-product-content .product-inner,
.page-template-template-homepage-v2 .columns-4 .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item
.page-template-template-homepage-v2 .columns-4 ul.products > .product .product-inner {
  padding: 1.071em; }

.columns-6 .product .hover-area .action-buttons > div:first-child,
.columns-6 .product .hover-area .action-buttons > a:first-child,
.columns-5 .product .hover-area .action-buttons > div:first-child,
.columns-5 .product .hover-area .action-buttons > a:first-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons > div:first-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons > a:first-child {
  margin: 0;
  font-size: 12px; }

.columns-6 .product .hover-area .action-buttons > div:last-child,
.columns-6 .product .hover-area .action-buttons > a:last-child,
.columns-5 .product .hover-area .action-buttons > div:last-child,
.columns-5 .product .hover-area .action-buttons > a:last-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons > div:last-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons > a:last-child {
  margin: 0;
  font-size: 12px; }

.columns-6 .product .hover-area .action-buttons .add-to-compare-link::before,
.columns-5 .product .hover-area .action-buttons .add-to-compare-link::before,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons .add-to-compare-link::before {
  margin-right: 5px; }

.columns-6 .product .hover-area .action-buttons .add_to_wishlist::before,
.columns-5 .product .hover-area .action-buttons .add_to_wishlist::before,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons .add_to_wishlist::before {
  margin-right: 0; }

/*===================================================================================*/
/*	PRODUCTS
/*===================================================================================*/
ul.products.columns-1 > li {
  width: 100%; }
  @media (min-width: 992px) {
    ul.products.columns-1 > li {
      width: 100%; } }
  @media (min-width: 768px) {
    ul.products.columns-1 > li {
      width: 100%; } }
  @media (min-width: 544px) {
    ul.products.columns-1 > li {
      width: 100%; } }

ul.products.columns-2 > li {
  width: 100%; }
  @media (min-width: 992px) {
    ul.products.columns-2 > li {
      width: 50%; } }
  @media (min-width: 768px) {
    ul.products.columns-2 > li {
      width: 50%; } }
  @media (min-width: 544px) {
    ul.products.columns-2 > li {
      width: 50%; } }

ul.products.columns-3 > li, ul.products > li {
  width: 49%;  display:inline-block;float:none;vertical-align:top;}
  @media (min-width: 992px) {
    ul.products.columns-3 > li, ul.products > li {
      width: 33%; } }
  @media (min-width: 768px) {
    ul.products.columns-3 > li, ul.products > li {
      width: 33%; } }
  @media (min-width: 544px) {
    ul.products.columns-3 > li, ul.products > li {
      width: 33%; } }

ul.products.columns-4 > li {
  width: 100%; }
  @media (min-width: 992px) {
    ul.products.columns-4 > li {
      width: 25%; } }
  @media (min-width: 768px) {
    ul.products.columns-4 > li {
      width: 25%; } }
  @media (min-width: 544px) {
    ul.products.columns-4 > li {
      width: 25%; } }

ul.products.columns-5 > li .product-inner {
  padding: 1.071em; }

@media (min-width: 768px) {
  ul.products.columns-5 > li {
    width: 25%;
    width: 20%; } }

ul.products.columns-6 > li {
  width: 100%; }
  @media (min-width: 992px) {
    ul.products.columns-6 > li {
      width: 16.6666666667%; } }
  @media (min-width: 768px) {
    ul.products.columns-6 > li {
      width: 16.6666666667%; } }
  @media (min-width: 544px) {
    ul.products.columns-6 > li {
      width: 16.6666666667%; } }

section.section-products-carousel header,
section.section-posts-carousel header {
  margin-bottom: 0.857em; }
  section.section-products-carousel header .owl-nav,
  section.section-posts-carousel header .owl-nav {
    float: right;
    line-height: 3.607em; }
  section.section-products-carousel header a,
  section.section-posts-carousel header a {
    color: #aeaeae;
    font-size: 1.429em; }
    section.section-products-carousel header a:focus, section.section-products-carousel header a:hover,
    section.section-posts-carousel header a:focus,
    section.section-posts-carousel header a:hover {
      color: #0d244d;
      text-decoration: none; }
    section.section-products-carousel header a + a,
    section.section-posts-carousel header a + a {
      margin-left: 0.400em; }
  section.section-products-carousel header .widget-title,
  section.section-posts-carousel header .widget-title {
    display: inline-block;
    margin-bottom: 0;
    border-bottom: none; }

.products-carousel .owl-stage-outer {
  width: 100.3%;
  padding: 0 0 25px 0;
  margin-bottom: 0; }

.products-carousel .owl-item .product {
  position: relative;
  min-height: 1px;
  margin: 0.857em 0;
  padding: 0; }
  .products-carousel .owl-item .product::after {
    content: '';
  
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    height: 80%;
    transform: translateY(-50%); }
  .products-carousel .owl-item .product:hover::after, .products-carousel .owl-item .product.hover::after {
    content: none; }

.products-carousel .owl-stage .owl-item:not(.active) + .owl-item.active .product,
.products-carousel .owl-stage .owl-item.active:first-child .product {
  margin-left: 3px; }
  .products-carousel .owl-stage .owl-item:not(.active) + .owl-item.active .product .product-inner,
  .products-carousel .owl-stage .owl-item.active:first-child .product .product-inner {
   }

.products-carousel .owl-stage .owl-item.last-active .product::after {
  content: none; }

.columns-6 .owl-item .product .product-inner,
.columns-5 .owl-item .product .product-inner,
.page-template-template-homepage-v2 .columns-4 .owl-item .product .product-inner {
  padding: 1.071em; }

.products-carousel-with-image {
  background-color: #f9f9f9;
  padding: 58px 0 0;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  margin-bottom: 85px; }
  .products-carousel-with-image .products-carousel .owl-item .product::after {
    content: none; }
  .products-carousel-with-image .products-carousel .owl-item .product-inner {
    background-color: #fff; }
  .products-carousel-with-image .products-carousel .owl-dots {
    display: none; }
  .products-carousel-with-image section.section-products-carousel header {
    margin-bottom: 1.357em; }
  .products-carousel-with-image section {
    margin-bottom: 2.857em; }

.vc-products-carousel-with-image .products-carousel .owl-item .product-inner {
  background-color: #fff; }

.products .product-card {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  .products .product-card .wp-post-image {
    position: static; }

@media (min-width: 768px) {
  .columns-2 .products .product-card {
    width: 50%; } }

@media (min-width: 768px) {
  .columns-3 .products .product-card {
    width: 33%; } }

.columns-3 .products .product-card .hover-area .action-buttons > div:first-child,
.columns-3 .products .product-card .hover-area .action-buttons > a:first-child {
  margin: 0;
  font-size: 12px; }

.columns-3 .products .product-card .hover-area .action-buttons > div:last-child,
.columns-3 .products .product-card .hover-area .action-buttons > a:last-child {
  margin: 0;
  font-size: 12px; }

.columns-3 .products .product-card .hover-area .action-buttons .add-to-compare-link::before {
  margin-right: 5px; }

.columns-3 .products .product-card .hover-area .action-buttons .add_to_wishlist::before {
  margin-right: 0; }

.products .product.product-card {
  margin-bottom: 0; }
  .products .product.product-card .product-inner {
    padding: 1.786em 1.429em; }
  .products .product.product-card .media-left {
    padding-right: 0;
    }
  .products .product.product-card h3 {
    margin-bottom: 1.6em; }
  .products .product.product-card .media-body {
    padding-left: 1.929em;
    overflow: visible;
    vertical-align: middle; }
    .products .product.product-card .media-body .hover-area {
      display: block;
      visibility: hidden;
      opacity: 0;
      padding-top: 0.214em;
     }
      .products .product.product-card .media-body .hover-area .action-buttons > div {
        margin-right: 15px; }
      .products .product.product-card .media-body .hover-area .action-buttons > a {
        margin-left: 15px; }
  .products .product.product-card:hover .media-body .hover-area {
    visibility: visible;
    opacity: 1; }
  .products .product.product-card .media-object {
    max-width: none; }

section.section-product-cards-carousel header {
  margin-bottom: 0; }
  section.section-product-cards-carousel header ul.nav , section.home-list-categories header ul.nav{
    float: right;
    line-height: 3.571em; }
    section.section-product-cards-carousel header ul.nav .nav-link, section.home-list-categories header ul.nav .nav-link {
      font-size: 1.071em;
      line-height: 1.2em;
      color: #7b8186; }
      section.section-product-cards-carousel header ul.nav .nav-link + .nav-link, section.home-list-categories header ul.nav .nav-link + .nav-link {
        margin-left: 1.429em; }
      section.section-product-cards-carousel header ul.nav .nav-link:focus, section.section-product-cards-carousel header ul.nav .nav-link:hover ,
	  section.home-list-categories header ul.nav .nav-link:focus, section.home-list-categories header ul.nav .nav-link:hover{
        color: #0d244d; }
    section.section-product-cards-carousel header ul.nav .active .nav-link,
    section.home-list-categories header ul.nav .active .nav-link
	{
      color: #0d244d;
      border-radius: 1em;
      padding: 0.301em 1.429em;
      border: 2px solid transparent; }
  section.section-product-cards-carousel header .owl-nav {
    float: right;
    line-height: 3.407em; }
    section.section-product-cards-carousel header .owl-nav a {
      color: #aeaeae;
      font-size: 1.429em; }
      section.section-product-cards-carousel header .owl-nav a:focus, section.section-product-cards-carousel header .owl-nav a:hover {
        color: #0d244d;
        text-decoration: none; }
      section.section-product-cards-carousel header .owl-nav a + a {
        margin-left: 0.400em; }

section.section-product-cards-carousel .owl-carousel .owl-stage-outer {
  padding-bottom: 0; }

.product-cards-carousel .owl-item ul.products {
  padding: 0 4px;
  margin-bottom: 4px; background:#fff; }

.products-2-1-2 {
  background-color: #f9f9f9;
  padding: 58px 0;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  margin-bottom: 85px; }
  @media (max-width: 1199px) {
    .products-2-1-2 .nav {
      display: flex;
      flex-direction: row;
      overflow: scroll;
      justify-content: unset !important;
      width: 100%;
      border: none !important;
      padding-bottom: 6px; }
      .products-2-1-2 .nav li {
        border-bottom: 1px solid #ddd;
        margin: 0 !important;
        flex-shrink: 0;
        width: 50%; } }
  .products-2-1-2 .nav-inline {
    font-size: 1.214em;
    line-height: 1.059em;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2.143em;
    text-align: justify;
    white-space: nowrap; }
    .products-2-1-2 .nav-inline .nav-item:first-child {
      margin-left: 1em; }
    .products-2-1-2 .nav-inline .nav-item + .nav-item {
      margin-left: 2.353em; }
  .products-2-1-2 .nav-link {
    color: #0d244d;
    display: block;
    text-align: center;
    padding-bottom: 1.176em;
    position: relative; }
    .products-2-1-2 .nav-link:focus, .products-2-1-2 .nav-link:hover {
      color: #0d244d; }
    .products-2-1-2 .nav-link.active {
      font-weight: bold;
      position: relative; }
      .products-2-1-2 .nav-link.active::before {
        content: ' ';
        height: 4px;
        width: 10px;
        display: block;
        position: absolute;
        bottom: -5px;
        left: 50%;
        border-radius: 0 0 10px 10px;
        transform: translateX(-50%); }
      .products-2-1-2 .nav-link.active::after {
        content: ' ';
        border-bottom: 2px solid transparent;
        display: block;
        position: absolute;
        bottom: -1px;
        width: 100%; }
    .products-2-1-2 .nav-link:hover::after {
      content: ' ';
      border-bottom: 2px solid transparent;
      display: block;
      position: absolute;
      bottom: -1px;
      width: 100%; }
    .products-2-1-2 .nav-link:hover::before {
      content: ' ';
      height: 4px;
      width: 10px;
      display: block;
      position: absolute;
      bottom: -5px;
      left: 50%;
      border-radius: 0 0 10px 10px;
      transform: translateX(-50%); }
  .products-2-1-2 .columns-2-1-2 {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
    .products-2-1-2 .columns-2-1-2::after {
      content: "";
      display: table;
      clear: both; }
    .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) {
      position: relative;
      float: left;
      min-height: 1px;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%; }
      @media (min-width: 992px) {
        .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) {
          padding-left: 7px;
          padding-right: 7px;
          width: 52.63%; } }
      .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > li.product .product-thumbnail, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .product-thumbnail, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .product-thumbnail, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .product-thumbnail, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .product-thumbnail, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:nth-child(2) > .product .product-thumbnail, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .product .product-thumbnail {
        margin-bottom: 2.143em; }
      .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > li.product .wp-post-image, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .wp-post-image, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .wp-post-image, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .wp-post-image, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:nth-child(2) > .product .wp-post-image, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .product .wp-post-image {
        max-height: 100%; }
      .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > li.product .price, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .price, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .price, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .price, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:nth-child(2) > .product .price, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .product .price {
        font-size: 1.786em; }
      .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > li.product .price-add-to-cart, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .price-add-to-cart, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product .price-add-to-cart, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .price-add-to-cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .onsale-product-content .price-add-to-cart, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:nth-child(2) > .product .price-add-to-cart, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:nth-child(2) > .product .price-add-to-cart {
        margin-bottom: 2.4em; }
    .products-2-1-2 .columns-2-1-2 > ul.products:first-child,
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child {
      position: relative;
      float: left;
      min-height: 1px;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 100%; }
      @media (min-width: 992px) {
        .products-2-1-2 .columns-2-1-2 > ul.products:first-child,
        .products-2-1-2 .columns-2-1-2 > ul.products:last-child {
          width: 23.685%; } }
      .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product,
      .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product,
      .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product, .section-onsale-product
      .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product,
      .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
      .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content,
      .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product, .products-carousel .owl-item
      .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product {
        margin-bottom: 7px; }
        .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product .product-inner, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product .product-inner, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product .product-inner, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content .product-inner, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product .product-inner, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product .product-inner,
        .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product .product-inner,
        .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product .product-inner, .section-onsale-product
        .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product .product-inner,
        .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
        .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content .product-inner,
        .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product .product-inner, .products-carousel .owl-item
        .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product .product-inner {
          padding-bottom: 0.1px; }
    .products-2-1-2 .columns-2-1-2 > ul.products:first-child {
      padding-right: 0; }
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child {
      padding-left: 0; }
  .products-2-1-2 ul.products > li.product, .products-2-1-2 .section-onsale-product ul.products > .onsale-product, .section-onsale-product .products-2-1-2 ul.products > .onsale-product, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 ul.products > .onsale-product-content, .products-2-1-2 .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item .products-2-1-2 ul.products > .product {
    margin-top: 0;
    width: 100%; }
    .products-2-1-2 ul.products > li.product .product-inner, .products-2-1-2 .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product .products-2-1-2 ul.products > .onsale-product .product-inner, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 ul.products > .onsale-product-content .product-inner, .products-2-1-2 .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item .products-2-1-2 ul.products > .product .product-inner {
      background-color: #fff;
      padding-bottom: 0.1px; }
    .products-2-1-2 ul.products > li.product .hover-area, .products-2-1-2 .section-onsale-product ul.products > .onsale-product .hover-area, .section-onsale-product .products-2-1-2 ul.products > .onsale-product .hover-area, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 ul.products > .onsale-product-content .hover-area, .products-2-1-2 .products-carousel .owl-item ul.products > .product .hover-area, .products-carousel .owl-item .products-2-1-2 ul.products > .product .hover-area {
      padding-bottom: 1.429em; }
    .products-2-1-2 ul.products > li.product::after, .products-2-1-2 .section-onsale-product ul.products > .onsale-product::after, .section-onsale-product .products-2-1-2 ul.products > .onsale-product::after, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 ul.products > .onsale-product-content::after, .products-2-1-2 .products-carousel .owl-item ul.products > .product::after, .products-carousel .owl-item .products-2-1-2 ul.products > .product::after {
      content: none; }
  .products-2-1-2 .product-main-2-1-2 .hover-area .action-buttons > div {
    margin-right: 15px; }
  .products-2-1-2 .product-main-2-1-2 .hover-area .action-buttons > a {
    margin-left: 15px; }

.products-6-1 {
  background-color: #f9f9f9;
  padding: 58px 0;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%; }
  .products-6-1 ul.nav {
    float: right;
    line-height: 3.571em; }
    .products-6-1 ul.nav .nav-link {
      font-size: 1.071em;
      line-height: 1.2em;
      color: #7b8186; }
      .products-6-1 ul.nav .nav-link + .nav-link {
        margin-left: 1.429em; }
      .products-6-1 ul.nav .nav-link:focus, .products-6-1 ul.nav .nav-link:hover {
        color: #0d244d; }
    .products-6-1 ul.nav .active .nav-link {
      color: #0d244d;
      border-radius: 1em;
      padding: 0.301em 1.429em;
      border: 2px solid transparent; }

.columns-6-1 {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .columns-6-1::after {
    content: "";
    display: table;
    clear: both; }
  .columns-6-1 > ul.products {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
    .columns-6-1 > ul.products > li.product, .section-onsale-product .columns-6-1 > ul.products > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content, .products-carousel .owl-item .columns-6-1 > ul.products > .product {
      margin-top: 0;
      margin-bottom: 5px; }
      .columns-6-1 > ul.products > li.product .product-inner, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .product-inner, .products-carousel .owl-item .columns-6-1 > ul.products > .product .product-inner {
        background-color: #fff;
        padding-bottom: 0.1px; }
      .columns-6-1 > ul.products > li.product .hover-area, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .hover-area, .products-carousel .owl-item .columns-6-1 > ul.products > .product .hover-area {
        padding-bottom: 1.429em; }
      .columns-6-1 > ul.products > li.product::after, .section-onsale-product .columns-6-1 > ul.products > .onsale-product::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content::after, .products-carousel .owl-item .columns-6-1 > ul.products > .product::after {
        content: none; }
      .columns-6-1 > ul.products > li.product .price, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .price, .products-carousel .owl-item .columns-6-1 > ul.products > .product .price {
        font-size: 1.786em; }
      .columns-6-1 > ul.products > li.product .price-add-to-cart, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .price-add-to-cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .price-add-to-cart, .products-carousel .owl-item .columns-6-1 > ul.products > .product .price-add-to-cart {
        margin-bottom: 1.429em; }
      .columns-6-1 > ul.products > li.product .thumbnails, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .thumbnails, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .thumbnails, .products-carousel .owl-item .columns-6-1 > ul.products > .product .thumbnails {
        clear: both;
        margin-left: -0.9375rem;
        margin-right: -0.9375rem;
        margin-bottom: 1.56em;
        margin-left: 0; }
        .columns-6-1 > ul.products > li.product .thumbnails::after, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .thumbnails::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .thumbnails::after, .products-carousel .owl-item .columns-6-1 > ul.products > .product .thumbnails::after {
          content: "";
          display: table;
          clear: both; }
        .columns-6-1 > ul.products > li.product .thumbnails > a, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .thumbnails > a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .thumbnails > a, .products-carousel .owl-item .columns-6-1 > ul.products > .product .thumbnails > a {
          display: block;
          position: relative;
          float: left;
          min-height: 1px;
          padding-left: 0.9375rem;
          padding-right: 0.9375rem;
          padding: 0.2em;
          margin-right: 10px;
          border-width: 1px;
          border-style: solid;
          border-color: #e9e9e9;
          border-bottom-width: 2px; }
          @media (min-width: 768px) {
            .columns-6-1 > ul.products > li.product .thumbnails > a, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .thumbnails > a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .thumbnails > a, .products-carousel .owl-item .columns-6-1 > ul.products > .product .thumbnails > a {
              width: 17.17%; } }
          .columns-6-1 > ul.products > li.product .thumbnails > a img, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .thumbnails > a img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .thumbnails > a img, .products-carousel .owl-item .columns-6-1 > ul.products > .product .thumbnails > a img {
            display: block;
            max-width: 100%;
            height: auto; }
        .columns-6-1 > ul.products > li.product .thumbnails > a:nth-child(n+5), .section-onsale-product .columns-6-1 > ul.products > .onsale-product .thumbnails > a:nth-child(n+5), .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .thumbnails > a:nth-child(n+5), .products-carousel .owl-item .columns-6-1 > ul.products > .product .thumbnails > a:nth-child(n+5) {
          display: none; }
    .columns-6-1 > ul.products.products-6 {
      width: 100%; }
      @media (min-width: 992px) {
        .columns-6-1 > ul.products.products-6 {
          width: 58.3333333333%;
          padding-right: 0; } }
      .columns-6-1 > ul.products.products-6 > li.product, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product {
        padding-right: 5px; }
        .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner {
          padding-right: 2.071em; }
        .columns-6-1 > ul.products.products-6 > li.product .price, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content .price, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product .price {
          font-size: 1.143em; }
    .columns-6-1 > ul.products.product-main-6-1 {
      width: 100%; }
      @media (min-width: 992px) {
        .columns-6-1 > ul.products.product-main-6-1 {
          width: 41.6666666667%;
          padding-left: 0; } }
      .columns-6-1 > ul.products.product-main-6-1.products > li.product, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1.products > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1.products > .onsale-product-content, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1.products > .product {
        margin-bottom: 0; }
      @media (min-width: 1170px) {
        .columns-6-1 > ul.products.product-main-6-1 .product-outer {
          height: 639px; } }
      @media (max-width: 699px) {
        .columns-6-1 > ul.products.product-main-6-1 .product-outer {
          height: auto !important; } }
      .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery {
        position: relative; }
        .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery .flex-direction-nav {
          padding: 0;
          list-style: none;
          opacity: 0;
          min-height: 1px; }
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery .flex-direction-nav li a {
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
            line-height: 1.6;
            color: #fff;
            background: #010101;
            padding: 4px 30px 7px 30px;
            border-radius: 24px;
            opacity: 0.6; }
            .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery .flex-direction-nav li a.flex-disabled {
              opacity: 0;
              z-index: -1; }
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery .flex-direction-nav li:hover a {
            opacity: 1; }
            .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery .flex-direction-nav li:hover a.flex-disabled {
              opacity: 0;
              z-index: -1; }
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery .flex-direction-nav > li a {
            left: 0;
            right: auto; }
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery .flex-direction-nav li + li a {
            right: 0;
            left: auto; }
      .columns-6-1 > ul.products.product-main-6-1:hover .flex-direction-nav {
        opacity: 1; }
      .columns-6-1 > ul.products.product-main-6-1 .woocommerce-product-gallery {
        position: relative; }
        @media (min-width: 1170px) {
          .columns-6-1 > ul.products.product-main-6-1 .woocommerce-product-gallery {
            height: 469px; } }
        .columns-6-1 > ul.products.product-main-6-1 .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
          display: none; }
        .columns-6-1 > ul.products.product-main-6-1 .woocommerce-product-gallery .flex-viewport {
          margin-bottom: 10px; }
          @media (min-width: 700px) {
            .columns-6-1 > ul.products.product-main-6-1 .woocommerce-product-gallery .flex-viewport {
              height: 380px !important; } }
      .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs,
      .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper {
        margin: 0;
        padding: 0;
        display: flex;
        height: 60px; }
        .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs::after,
        .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper::after {
          content: "";
          display: table;
          clear: both; }
        @media (max-width: 767px) {
          .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs,
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper {
            height: 36px; } }
        .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li,
        .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs .gt-wc-product-gallery__image,
        .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li,
        .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image {
          list-style: none;
          cursor: pointer;
          margin: 0 10px 0 0; }
          .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li img,
          .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs .gt-wc-product-gallery__image img,
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li img,
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img {
            border: 1px solid #eaeaea;
            display: block;
            max-width: 100%;
            height: auto; }
            @media (min-width: 768px) and (max-width: 1160px) {
              .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li img,
              .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs .gt-wc-product-gallery__image img,
              .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li img,
              .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img {
                height: 54px; } }
            @media (min-width: 1161px) {
              .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li img,
              .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs .gt-wc-product-gallery__image img,
              .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li img,
              .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img {
                height: 80px;
                max-width: 80px; } }
            @media (max-width: 767px) {
              .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li img,
              .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs .gt-wc-product-gallery__image img,
              .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li img,
              .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img {
                height: 36px; } }
            .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li img.flex-active,
            .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs .gt-wc-product-gallery__image img.flex-active,
            .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li img.flex-active,
            .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img.flex-active {
              border-bottom-width: 2px;
              border-bottom-style: solid; }
          .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li.flex-active-slide img,
          .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs .gt-wc-product-gallery__image.flex-active-slide img,
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li.flex-active-slide img,
          .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image.flex-active-slide img {
            border-bottom-width: 2px;
            border-bottom-style: solid; }
        .columns-6-1 > ul.products.product-main-6-1 .flex-control-thumbs li + li + li + li + li + li,
        .columns-6-1 > ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper li + li + li + li + li + li {
          display: none; }
      .columns-6-1 > ul.products.product-main-6-1 > li.product, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product {
        width: 100%; }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .price-add-to-cart, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .price-add-to-cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .price-add-to-cart, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .price-add-to-cart {
          margin-bottom: 1.643em;
          margin-top: 20px; }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .product-thumbnail, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .product-thumbnail, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .product-thumbnail, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .product-thumbnail {
          padding-bottom: 0.1px;
          height: inherit;
          margin-bottom: 1.571em; }
          .columns-6-1 > ul.products.product-main-6-1 > li.product .product-thumbnail img, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .product-thumbnail img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .product-thumbnail img, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .product-thumbnail img {
            height: 367px;
            width: auto;
            display: block;
            margin: auto; }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .wp-post-image, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .wp-post-image, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .wp-post-image {
          position: relative; }
        @media (min-width: 1170px) {
          .columns-6-1 > ul.products.product-main-6-1 > li.product .woocommerce-product-gallery.gt-carousel-loaded, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .woocommerce-product-gallery.gt-carousel-loaded, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .woocommerce-product-gallery.gt-carousel-loaded, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .woocommerce-product-gallery.gt-carousel-loaded {
            height: 345px; } }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .woocommerce-product-gallery.gt-carousel-loaded .woocommerce-product-gallery__trigger, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .woocommerce-product-gallery.gt-carousel-loaded .woocommerce-product-gallery__trigger, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .woocommerce-product-gallery.gt-carousel-loaded .woocommerce-product-gallery__trigger, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .woocommerce-product-gallery.gt-carousel-loaded .woocommerce-product-gallery__trigger {
          display: none; }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport {
          margin-bottom: 10px; }
          @media (min-width: 700px) {
            .columns-6-1 > ul.products.product-main-6-1 > li.product .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .woocommerce-product-gallery.gt-carousel-loaded .flex-viewport {
              height: 325px !important; } }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .woocommerce-product-gallery .woocommerce-product-gallery__image:first-child a img, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .woocommerce-product-gallery .woocommerce-product-gallery__image:first-child a img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .woocommerce-product-gallery .woocommerce-product-gallery__image:first-child a img, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .woocommerce-product-gallery .woocommerce-product-gallery__image:first-child a img,
        .columns-6-1 > ul.products.product-main-6-1 > li.product .woocommerce-product-gallery .gt-wc-product-gallery__image:first-child a img, .section-onsale-product
        .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .woocommerce-product-gallery .gt-wc-product-gallery__image:first-child a img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
        .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .woocommerce-product-gallery .gt-wc-product-gallery__image:first-child a img, .products-carousel .owl-item
        .columns-6-1 > ul.products.product-main-6-1 > .product .woocommerce-product-gallery .gt-wc-product-gallery__image:first-child a img,
        .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .woocommerce-product-gallery__image:first-child a img, .section-onsale-product
        .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .woocommerce-product-gallery__image:first-child a img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
        .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .woocommerce-product-gallery__image:first-child a img, .products-carousel .owl-item
        .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .woocommerce-product-gallery__image:first-child a img,
        .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .gt-wc-product-gallery__image:first-child a img, .section-onsale-product
        .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .gt-wc-product-gallery__image:first-child a img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
        .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .gt-wc-product-gallery__image:first-child a img, .products-carousel .owl-item
        .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .gt-wc-product-gallery__image:first-child a img {
          left: initial;
          top: initial;
          transform: initial; }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-carousel-loaded .woocommerce-product-gallery__image, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-carousel-loaded .woocommerce-product-gallery__image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-carousel-loaded .woocommerce-product-gallery__image, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-carousel-loaded .woocommerce-product-gallery__image {
          text-align: center; }
          .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-carousel-loaded .woocommerce-product-gallery__image img, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-carousel-loaded .woocommerce-product-gallery__image img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-carousel-loaded .woocommerce-product-gallery__image img, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-carousel-loaded .woocommerce-product-gallery__image img {
            max-width: 360px;
            margin: 0 auto; }
            @media (max-width: 767px) {
              .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-carousel-loaded .woocommerce-product-gallery__image img, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-carousel-loaded .woocommerce-product-gallery__image img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-carousel-loaded .woocommerce-product-gallery__image img, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-carousel-loaded .woocommerce-product-gallery__image img {
                max-width: 260px; } }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .gt-wc-product-gallery__wrapper, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper {
          height: auto; }
          .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper img, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .gt-wc-product-gallery__wrapper img, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper img {
            height: auto; }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .flex-control-nav, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .flex-control-nav, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .flex-control-nav, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .flex-control-nav {
          display: flex;
          justify-content: center;
          padding: 0;
          margin: 0;
          padding-top: 10px; }
          .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .flex-control-nav li, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .flex-control-nav li, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .flex-control-nav li, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .flex-control-nav li {
            list-style: none; }
            .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .flex-control-nav li a, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .flex-control-nav li a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .flex-control-nav li a, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .flex-control-nav li a {
              width: 8px;
              height: 8px;
              display: block;
              cursor: pointer;
              text-indent: -9999px;
              border-radius: 20px;
              background: #bcbcbc; }
              .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .flex-control-nav li a.flex-active, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .flex-control-nav li a.flex-active, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .flex-control-nav li a.flex-active, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .flex-control-nav li a.flex-active {
                width: 30px; }
            .columns-6-1 > ul.products.product-main-6-1 > li.product .gt-wc-product-gallery .flex-control-nav li + li, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .gt-wc-product-gallery .flex-control-nav li + li, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .gt-wc-product-gallery .flex-control-nav li + li, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .gt-wc-product-gallery .flex-control-nav li + li {
              margin-left: 1em; }
        .columns-6-1 > ul.products.product-main-6-1 > li.product .images, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .images, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .images, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .images {
          display: block; }
          .columns-6-1 > ul.products.product-main-6-1 > li.product .images .woocommerce-main-image, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .images .woocommerce-main-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .images .woocommerce-main-image, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .images .woocommerce-main-image {
            display: block;
            margin-bottom: 10px; }
          .columns-6-1 > ul.products.product-main-6-1 > li.product .images .wp-post-image, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .images .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .images .wp-post-image, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .images .wp-post-image {
            height: 386px;
            position: relative;
            transform: none;
            top: 0;
            left: 0; }

.home-list-categories ul.categories {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .home-list-categories ul.categories::after {
    content: "";
    display: table;
    clear: both; }
  .home-list-categories ul.categories > li.category {
    margin-bottom: 2.857em;
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
    @media (min-width: 768px) {
      .home-list-categories ul.categories > li.category {
        width: 25%; } }
    @media (max-width: 991px) {
      .home-list-categories ul.categories > li.category:nth-child(4n)::after {
        content: none; }
      .home-list-categories ul.categories > li.category:nth-child(4n+1) {
        clear: both; } }
    @media (min-width: 992px) {
      .home-list-categories ul.categories > li.category {
        width: 13.66%; }
        .home-list-categories ul.categories > li.category:nth-child(7n+1) {
          clear: both; 
		   }
        .home-list-categories ul.categories > li.category:nth-child(7n)::after {
          content: none; }
        .home-list-categories ul.categories > li.category:nth-child(7n+1) {
         } }
    .home-list-categories ul.categories > li.category::after {
      content: '';
      border-right: 1px solid #eaeaea;
      display: block;
      position: absolute;
      right: 0;
      height: calc( 100% - 24px);
      top: 0; }
    .home-list-categories ul.categories > li.category .media {
      margin-bottom: 0.5em; }
    .home-list-categories ul.categories > li.category .media-left img {
      width: 150px;
      height: auto;
      max-width: none; }
    .home-list-categories ul.categories > li.category .media-heading {
      font-size: 1.286em;
      line-height: 1.333em;
      margin-bottom: 1em; }
      .home-list-categories ul.categories > li.category .media-heading a {
        color: #0d244d; }
        .home-list-categories ul.categories > li.category .media-heading a:focus, .home-list-categories ul.categories > li.category .media-heading a:hover {
          color: #0d244d;
          text-decoration: none; }
    .home-list-categories ul.categories > li.category .sub-categories li {
      font-size: 0.929em;
      line-height: 1.615em; }
      .home-list-categories ul.categories > li.category .sub-categories li a {
        color: #9d9c9c; }
        .home-list-categories ul.categories > li.category .sub-categories li a:focus, .home-list-categories ul.categories > li.category .sub-categories li a:hover {
          color: #9d9c9c;
          text-decoration: none; }
        .home-list-categories ul.categories > li.category .sub-categories li a:hover {
          color: #3b3b3b; }
    .home-list-categories ul.categories > li.category .see-all {
      text-align: right;
      font-weight: bold;
      color: #9d9c9c;
      font-size: 1em;
      line-height: 1.714em;
      display: block; }
      .home-list-categories ul.categories > li.category .see-all:focus, .home-list-categories ul.categories > li.category .see-all:hover {
        color: #9d9c9c;
        text-decoration: none; }
      .home-list-categories ul.categories > li.category .see-all:hover {
        color: #3b3b3b; }

.sidebar .widget,
.sidebar-blog .widget {
  margin-bottom: 5.143em; }

.sidebar .widget-title,
.sidebar-blog .widget-title {
  font-size: 1.357em;
  line-height: 0.947em;
  margin-bottom: 1.842em;
  padding-bottom: 1.053em;
  position: relative;
  border-bottom: 1px solid #dadada; }
  .sidebar .widget-title:after,
  .sidebar-blog .widget-title:after {
    content: ' ';
    width: 3.684em;
    border-bottom: 2px solid transparent;
    display: block;
    position: absolute;
    bottom: -1px; }

.sidebar .widget-title + ul, .sidebar ul.menu,
.sidebar-blog .widget-title + ul,
.sidebar-blog ul.menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0; }
  .sidebar .widget-title + ul li > a:only-child, .sidebar .widget-title + ul .menu-item > a, .sidebar .widget-title + ul .page_item > a, .sidebar .widget-title + ul .cat-item > a, .sidebar ul.menu li > a:only-child, .sidebar ul.menu .menu-item > a, .sidebar ul.menu .page_item > a, .sidebar ul.menu .cat-item > a,
  .sidebar-blog .widget-title + ul li > a:only-child,
  .sidebar-blog .widget-title + ul .menu-item > a,
  .sidebar-blog .widget-title + ul .page_item > a,
  .sidebar-blog .widget-title + ul .cat-item > a,
  .sidebar-blog ul.menu li > a:only-child,
  .sidebar-blog ul.menu .menu-item > a,
  .sidebar-blog ul.menu .page_item > a,
  .sidebar-blog ul.menu .cat-item > a {
    color: #0d244d;
    padding: 0.5em 0;
    display: inline-block; }
    .sidebar .widget-title + ul li > a:only-child:focus, .sidebar .widget-title + ul li > a:only-child:hover, .sidebar .widget-title + ul .menu-item > a:focus, .sidebar .widget-title + ul .menu-item > a:hover, .sidebar .widget-title + ul .page_item > a:focus, .sidebar .widget-title + ul .page_item > a:hover, .sidebar .widget-title + ul .cat-item > a:focus, .sidebar .widget-title + ul .cat-item > a:hover, .sidebar ul.menu li > a:only-child:focus, .sidebar ul.menu li > a:only-child:hover, .sidebar ul.menu .menu-item > a:focus, .sidebar ul.menu .menu-item > a:hover, .sidebar ul.menu .page_item > a:focus, .sidebar ul.menu .page_item > a:hover, .sidebar ul.menu .cat-item > a:focus, .sidebar ul.menu .cat-item > a:hover,
    .sidebar-blog .widget-title + ul li > a:only-child:focus,
    .sidebar-blog .widget-title + ul li > a:only-child:hover,
    .sidebar-blog .widget-title + ul .menu-item > a:focus,
    .sidebar-blog .widget-title + ul .menu-item > a:hover,
    .sidebar-blog .widget-title + ul .page_item > a:focus,
    .sidebar-blog .widget-title + ul .page_item > a:hover,
    .sidebar-blog .widget-title + ul .cat-item > a:focus,
    .sidebar-blog .widget-title + ul .cat-item > a:hover,
    .sidebar-blog ul.menu li > a:only-child:focus,
    .sidebar-blog ul.menu li > a:only-child:hover,
    .sidebar-blog ul.menu .menu-item > a:focus,
    .sidebar-blog ul.menu .menu-item > a:hover,
    .sidebar-blog ul.menu .page_item > a:focus,
    .sidebar-blog ul.menu .page_item > a:hover,
    .sidebar-blog ul.menu .cat-item > a:focus,
    .sidebar-blog ul.menu .cat-item > a:hover {
      color: #0d244d;
      text-decoration: none; }

.sidebar .product_list_widget li > a, .sidebar .product_list_widget li > a .product-title {
  display: block;
  color: #0d244d;
  font-weight: normal; }

.sidebar .product_list_widget .gt-price {
  display: block;
  position: relative; }
  .sidebar .product_list_widget .gt-price::after {
    content: "";
    display: table;
    clear: both; }
  .sidebar .product_list_widget .gt-price .amount {
    font-weight: bold;
    font-size: 1.071em; }
  .sidebar .product_list_widget .gt-price del {
    float: left;
    display: block;
    width: 100%;
   
    line-height: 18px; }
    .sidebar .product_list_widget .gt-price del .amount {
      font-size: 0.733em; }
  .sidebar .product_list_widget .gt-price ins {
    float: left; }
  .sidebar .product_list_widget .gt-price ins .amount {
    color: #ee0000; }

.sidebar .product_list_widget .star-rating + .gt-price del {
  top: 0; }

.sidebar .product_list_widget .star-rating + .gt-price ins {
  margin-top: 18px; }

.widget_gt_products_filter .widget {
  margin-bottom: 0; }
  .widget_gt_products_filter .widget .widget-title {
    font-weight: bold;
    font-size: 1em;
    color: #575560;
    margin-bottom: 1.572em;
    border: none;
    padding: 0; }
    .widget_gt_products_filter .widget .widget-title::after {
      content: none; }
  .widget_gt_products_filter .widget + .widget {
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid #ddd; }

.widget_gt_products_filter ul {
  list-style: none; }

.widget_gt_products_filter .widget_layered_nav li > a::before, .widget_gt_products_filter .widget_layered_nav li > span:not(.count)::before, .widget_gt_products_filter .widget_product_categories li > a::before, .widget_gt_products_filter .widget_product_categories li > span:not(.count)::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f096";
  margin-right: 0.571em;
  font-size: 1.143em;
  line-height: 22px;
  vertical-align: middle;
  color: #dfdfdf; }

.widget_gt_products_filter .widget_layered_nav li > a:focus::before, .widget_gt_products_filter .widget_layered_nav li > a:hover::before, .widget_gt_products_filter .widget_layered_nav li > span:not(.count):focus::before, .widget_gt_products_filter .widget_layered_nav li > span:not(.count):hover::before, .widget_gt_products_filter .widget_product_categories li > a:focus::before, .widget_gt_products_filter .widget_product_categories li > a:hover::before, .widget_gt_products_filter .widget_product_categories li > span:not(.count):focus::before, .widget_gt_products_filter .widget_product_categories li > span:not(.count):hover::before {
  content: "\f0c8";
  font-size: 1.048em;
  margin-right: 0.621em; }

.widget_gt_products_filter .widget_layered_nav li.chosen > a::before,
.widget_gt_products_filter .widget_layered_nav li.current-cat > a::before, .widget_gt_products_filter .widget_product_categories li.chosen > a::before,
.widget_gt_products_filter .widget_product_categories li.current-cat > a::before {
  content: "\f0c8";
  font-size: 1.048em;
  margin-right: 0.621em; }

.maxlist-more {
  margin-top: 1.14em; }
  .maxlist-more a {
    color: #575560;
    font-size: 0.929em; }
    .maxlist-more a:focus, .maxlist-more a:hover {
      text-decoration: none;
      color: #575560; }

.sidebar-blog .widget_categories .widget-title + ul li,
.sidebar-blog .widget_categories .widget-title + ul .meu-item, .sidebar-blog .widget_categories ul.menu li,
.sidebar-blog .widget_categories ul.menu .meu-item {
  border-bottom: 1px solid #ececec; }
  .sidebar-blog .widget_categories .widget-title + ul li.current-cat a,
  .sidebar-blog .widget_categories .widget-title + ul .meu-item.current-cat a, .sidebar-blog .widget_categories ul.menu li.current-cat a,
  .sidebar-blog .widget_categories ul.menu .meu-item.current-cat a {
    font-weight: bold; }
  .sidebar-blog .widget_categories .widget-title + ul li a,
  .sidebar-blog .widget_categories .widget-title + ul .meu-item a, .sidebar-blog .widget_categories ul.menu li a,
  .sidebar-blog .widget_categories ul.menu .meu-item a {
    position: relative;
    color: #575560;
    position: relative;
    margin-left: 2.7em; }
    .sidebar-blog .widget_categories .widget-title + ul li a:before,
    .sidebar-blog .widget_categories .widget-title + ul .meu-item a:before, .sidebar-blog .widget_categories ul.menu li a:before,
    .sidebar-blog .widget_categories ul.menu .meu-item a:before {
      color: #575560;
      content: "";
      font-family: FontAwesome;
      font-size: 1.1em;
      line-height: 1.5em;
      margin-left: -1.4em;
      position: absolute; }
    .sidebar-blog .widget_categories .widget-title + ul li a:hover, .sidebar-blog .widget_categories .widget-title + ul li a:focus,
    .sidebar-blog .widget_categories .widget-title + ul .meu-item a:hover,
    .sidebar-blog .widget_categories .widget-title + ul .meu-item a:focus, .sidebar-blog .widget_categories ul.menu li a:hover, .sidebar-blog .widget_categories ul.menu li a:focus,
    .sidebar-blog .widget_categories ul.menu .meu-item a:hover,
    .sidebar-blog .widget_categories ul.menu .meu-item a:focus {
      font-weight: 700; }
  .sidebar-blog .widget_categories .widget-title + ul li ul.children,
  .sidebar-blog .widget_categories .widget-title + ul .meu-item ul.children, .sidebar-blog .widget_categories ul.menu li ul.children,
  .sidebar-blog .widget_categories ul.menu .meu-item ul.children {
    list-style: none;
    margin-top: 0.500em; }
  .sidebar-blog .widget_categories .widget-title + ul li:last-child,
  .sidebar-blog .widget_categories .widget-title + ul .meu-item:last-child, .sidebar-blog .widget_categories ul.menu li:last-child,
  .sidebar-blog .widget_categories ul.menu .meu-item:last-child {
    border-bottom: none; }

.gt_posts_carousel_widget .post-item .post-thumbnail {
  display: block;
  padding-bottom: 0.857em; }

.gt_posts_carousel_widget .post-item .post-content {
  color: #878787; }
  .gt_posts_carousel_widget .post-item .post-content .post-name {
    font-size: 1.071em;
    font-weight: bold;
    color: #0d244d;
    display: block;
    padding-bottom: 0.571em; }
  .gt_posts_carousel_widget .post-item .post-content .post-category a, .gt_posts_carousel_widget .post-item .post-content .post-date {
    color: #878787;
    font-size: 0.857em; }

.gt_posts_carousel_widget .gt-img-placeholder {
  position: relative; }
  .gt_posts_carousel_widget .gt-img-placeholder .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; }

section.section-posts-carousel header {
  margin-bottom: 1.429em; }
  section.section-posts-carousel header .owl-nav {
    line-height: 2em; }

section.section-posts-carousel .widget-title {
  display: inline-block;
  margin-bottom: 0;
  border-bottom: none; }

section.section-posts-carousel .comments-link a,
section.section-posts-carousel .likes a {
  position: relative;
  color: #878787;
  font-size: 0.857em;
  line-height: 1.500em; }
  section.section-posts-carousel .comments-link a::before,
  section.section-posts-carousel .likes a::before {
    color: #999999;
    font-family: "font-gt";
    margin-rightf: 3px;
    vertical-align: middle;
    font-size: 16px; }
  section.section-posts-carousel .comments-link a:hover, section.section-posts-carousel .comments-link a:focus,
  section.section-posts-carousel .likes a:hover,
  section.section-posts-carousel .likes a:focus {
    color: #000;
    text-decoration: none; }
    section.section-posts-carousel .comments-link a:hover:before, section.section-posts-carousel .comments-link a:focus:before,
    section.section-posts-carousel .likes a:hover:before,
    section.section-posts-carousel .likes a:focus:before {
      color: #000; }

section.section-posts-carousel .comments-link a:before {
  content: "\63"; }

section.section-posts-carousel .likes a:before {
  content: "\6a"; }

.widget_gt_features_block_widget .features-list {
  padding: 30px;
  background-color: #fff; }
  .widget_gt_features_block_widget .features-list .feature + .feature {
    border-left: none; }
  .widget_gt_features_block_widget .features-list .feature {
    border-bottom: 1px solid #ddd;
    padding-top: 1.786em;
    padding-bottom: 1.786em; }
    .widget_gt_features_block_widget .features-list .feature:first-child {
      padding-top: 0; }
    .widget_gt_features_block_widget .features-list .feature:last-child {
      border-bottom: none;
      padding-bottom: 0; }
  .widget_gt_features_block_widget .features-list .media {
    margin: 0;
    width: inherit; }
    .widget_gt_features_block_widget .features-list .media i {
      font-size: 42px; }
      .widget_gt_features_block_widget .features-list .media i.ec-customers {
        font-size: 48px; }
    .widget_gt_features_block_widget .features-list .media .media-left {
      padding-left: 0; }

.brands-carousel {
  margin-bottom: 10px; }
  .brands-carousel .item {
    text-align: center;
   
    position: relative; }
    .brands-carousel .item figure {
      display: block;
     margin: 0;
      /* position: absolute;
      top: 50%;
      transform: translateY(-50%);*/
      width: 100%;
      text-align: center; }
      .brands-carousel .item figure .text-overlay {
       }
        .brands-carousel .item figure .text-overlay a {
          opacity: 0; }
      .brands-carousel .item figure:hover img {
        opacity: 1; }
      .brands-carousel .item figure img {
      
        max-height: 300px;
        width: auto;
        margin: 0 auto; }

.owl-brands {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  padding: 1.286em 0; }
  .owl-brands .owl-nav {
    -webkit-tap-highlight-color: transparent;
    position: relative; }
    .owl-brands .owl-nav [class*='owl-'] {
      color: #D6D6D6;
      font-size: 14px;
      display: inline-block;
      cursor: pointer;
      position: absolute;
      top: -30px;
      line-height: 14px; }
      .owl-brands .owl-nav [class*='owl-']:hover {
        color: #869791;
        text-decoration: none; }
    .owl-brands .owl-nav .owl-prev {
      left: 0; }
    .owl-brands .owl-nav .owl-next {
      right: 0; }
    .owl-brands .owl-nav .disabled {
      opacity: 0.5;
      cursor: default; }

#content + .brands-carousel {
  margin-top: -5.143em; }

.widget img {
  display: block;
  max-width: 100%;
  height: auto; }

.widget select {
  display: inline-block;
  max-width: 100%;
  padding: .375rem 1.75rem .375rem .75rem;
  padding-right: .75rem \9;
  color: #55595c;
  vertical-align: middle;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
  background-image: none \9;
  background-size: 8px 10px;
  border: 1px solid #ccc;
  -moz-appearance: none;
  -webkit-appearance: none;
  max-width: 100%; }
  .widget select:focus {
    border-color: #51a7e8;
    outline: none; }
  .widget select::-ms-expand {
    opacity: 0; }

#wp-calendar {
  width: 100%; }
  #wp-calendar caption {
    text-align: right;
    color: #333;
    font-size: 0.857em;
    margin-bottom: 1.250em;
    caption-side: top; }
  #wp-calendar thead {
    font-size: 0.714em; }
    #wp-calendar thead th {
      padding-bottom: 1em;
      text-align: center; }
  #wp-calendar tbody {
    color: #aaa; }
    #wp-calendar tbody td {
      background: #f5f5f5;
      border: 1px solid #fff;
      text-align: center;
      padding: 8px; }
      #wp-calendar tbody td:hover {
        background: #fff; }
      #wp-calendar tbody td a {
        font-weight: bold;
        color: #0d244d; }
        #wp-calendar tbody td a:focus, #wp-calendar tbody td a:hover {
          text-decoration: none; }
    #wp-calendar tbody .pad {
      background: none; }
  #wp-calendar tfoot #next {
    font-size: 0.714em;
    text-transform: uppercase;
    text-align: right; }
  #wp-calendar tfoot #prev {
    font-size: 0.714em;
    text-transform: uppercase;
    padding-top: 1em; }

.widget_recent_comments .recentcomments + .recentcomments {
  margin-top: 0.5em;
  padding-top: 0.5em; }

.widget_recent_comments a {
  font-weight: bold; }

.widget_rss .widget-title .rss-widget-icon {
  display: none; }

.widget_rss .widget-title .rsswidget {
  display: block;
  color: #0d244d; }
  .widget_rss .widget-title .rsswidget:focus, .widget_rss .widget-title .rsswidget:hover {
    color: #0d244d;
    text-decoration: none; }

.widget_rss li .rsswidget {
  font-size: 110%;
  font-weight: bold;
  display: block; }

.widget_rss li .rss-date {
  font-size: 80%; }

.widget_rss li .rssSummary {
  margin: 0.429em 0; }

.widget_rss li + li {
  margin-top: 1em; }
  .widget_rss li + li:before {
    border-top: 1px solid #ddd;
    content: '';
    display: block;
    padding-top: 1em; }

.widget_search form.search-form label,
.widget_search .woocommerce-product-search label,
.sidebar .widget_product_search form.search-form label,
.sidebar .widget_product_search .woocommerce-product-search label {
  display: block; }

.widget_search form.search-form .search-field,
.widget_search .woocommerce-product-search .search-field,
.sidebar .widget_product_search form.search-form .search-field,
.sidebar .widget_product_search .woocommerce-product-search .search-field {
  border: 1px solid #dddddd;
  border-radius: 50px;
  line-height: 1.286em;
  padding: 0.929em 1.929em;
  width: 100%;
  color: #818181; }

.widget_search .search-submit,
.widget_search input[type=submit],
.widget_search button[type=submit],
.sidebar .widget_product_search .search-submit,
.sidebar .widget_product_search input[type=submit],
.sidebar .widget_product_search button[type=submit] {
  display: none; }

.widget_tag_cloud .tagcloud a {
  background: transparent;
  border-color: #e4e5e7;
  border-style: solid;
  border-width: 1px;
  color: #565656;
  display: inline-block;
  font-size: 1.000em !important;
  line-height: 1;
  margin: 0 0.457em 0.731em 0;
  padding: 0.823em 0.788em; }
  .widget_tag_cloud .tagcloud a:hover, .widget_tag_cloud .tagcloud a:focus {
    text-decoration: none;
    color: #fff; }

.widget_nav_menu .sub-menu .sub-menu .sub-menu {
  padding: 0; }

.product_list_widget {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0; }
  .product_list_widget > li {
    margin-bottom: 2.143em; }
    .product_list_widget > li::after {
      content: "";
      display: table;
      clear: both; }
    .product_list_widget > li > a:hover, .product_list_widget > li > a:focus {
      color: black;
      text-decoration: none; }
    .product_list_widget > li:last-child {
      margin-bottom: 0; }
  .product_list_widget .product-title {
    color: #0062bd;
    font-weight: bold;
    font-size: 1em;
    display: block;
    line-height: 1.2em; }
  .product_list_widget a {
    color: #0062bd;
    font-weight: bold; }
  .product_list_widget .wp-post-image {
    width: 75px;
    
    margin-right: 20px;
    float: left; }
  .product_list_widget .gt-price {
    margin-top: 2px;
    display: block;
    margin-left: 95px; }
  .product_list_widget .star-rating + .gt-price {
    margin-top: 0; }
  .product_list_widget .amount {
    display: inline-block;
    font-size: 1.071em; }
  .product_list_widget del .amount, .product_list_widget del {
    color: #8f8f8f; }
  .product_list_widget del .amount {
    text-decoration: line-through;
    font-size: 0.928em; }
  .product_list_widget ins {
    text-decoration: none; }
  .product_list_widget ins .amount {
    font-size: 1.071em; }
  .product_list_widget .star-rating {
    margin: 8px 0; }
    .product_list_widget .star-rating + .amount,
    .product_list_widget .star-rating + del > .amount,
    .product_list_widget .star-rating + del + ins > .amount {
      margin-top: 0; }

.product_list_widget.cart_list {
  margin-bottom: 1rem; }

.product_list_widget .mini_cart_item .remove {
  float: right;
  color: #ee0000; }

.product_list_widget .mini_cart_item a:nth-child(2) {
  line-height: 1.286em;
  font-size: 1em; }

.product_list_widget .mini_cart_item .quantity {
  display: block; }
  .product_list_widget .mini_cart_item .quantity .amount {
    margin-top: 0; }

.widget_product_categories ul li > a, .widget_product_categories ul li > span, .widget_layered_nav ul li > a, .widget_layered_nav ul li > span {
  color: #0d244d;
  padding: 0.571em 0 0.643em 0;
  display: inline-block; }
  .widget_product_categories ul li > a:focus, .widget_product_categories ul li > a:hover, .widget_product_categories ul li > span:focus, .widget_product_categories ul li > span:hover, .widget_layered_nav ul li > a:focus, .widget_layered_nav ul li > a:hover, .widget_layered_nav ul li > span:focus, .widget_layered_nav ul li > span:hover {
    color: #0d244d;
    text-decoration: none; }

.widget_product_categories ul li .count, .widget_layered_nav ul li .count {
  font-size: 0.857em;
  color: #acacac; }

.widget_layered_nav .woocommerce-widget-layered-nav-dropdown__submit {
  margin-top: 15px; }

.widget_layered_nav .select2-selection--multiple .select2-selection__rendered li {
  line-height: 1;
  font-size: 12px; }

.widget_layered_nav .select2-container .select2-selection, .widget_layered_nav .woocommerce-widget-layered-nav-dropdown .select2-container .select2-selection {
  padding: 8px; }

.widget_layered_nav .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 4px; }

.widget_gt_products_filter .widget_layered_nav .select2-selection--multiple li > a::before,
.widget_gt_products_filter .widget_layered_nav .select2-selection--multiple li > span:not(.count)::before,
.widget_gt_products_filter .widget_product_categories .select2-selection--multiple li > a::before,
.widget_gt_products_filter .widget_product_categories .select2-selection--multiple li > span:not(.count)::before {
  display: none; }

.widget_product_categories ul {
  list-style: none; }

.widget_product_categories .product-categories, .widget_product_categories .widget-title + ul {
  padding: 0 !important;
  border: 2px solid #ececec;
  border-radius: 6px; }

.widget_product_categories ul li {
  border-top: 1px solid #ddd; }
  .widget_product_categories ul li:first-child {
    border: none; }
  .widget_product_categories ul li .child-indicator {
    padding-right: 0.429em; }
    .widget_product_categories ul li .child-indicator i {
      font-size: 0.857em;
      color: #aeaeae;
      width: 0.571em; }
  .widget_product_categories ul li .children {
    padding: 0; }
    .widget_product_categories ul li .children .child-indicator {
      padding-left: 2.214em; }
    .widget_product_categories ul li .children .no-child {
      padding-left: 3.143em; }
  .widget_product_categories ul li .child-indicator {
    padding-left: 1.214em; }
  .widget_product_categories ul li .no-child {
    padding-left: 2.143em; }

.widget_product_categories .product_cat > span {
  padding: 1em 2em;
  border-bottom: 1px solid #ececec;
  display: block;
  cursor: pointer; }

.widget_product_categories .product_cat > ul {
  padding: 0.929em; }

.widget_product_categories .category-single {
  padding: 0 !important; }
  .widget_product_categories .category-single > li, .widget_product_categories .category-single .show-all-cat > li {
    border: none; }
  .widget_product_categories .category-single .show-all-cat {
    padding: 0; }
    .widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown {
      padding: 1em 2em;
      border-bottom: 1px solid #ececec;
      display: block;
      cursor: pointer; }
      .widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown .child-indicator {
        padding-left: 0.643em; }
        .widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown .child-indicator i {
          font-size: 1.2em;
          color: #0d244d;
          font-weight: bold;
          vertical-align: middle; }
    .widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown + ul {
      padding: 0.929em; }
      .widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown + ul li:first-child {
        border: none; }
  .widget_product_categories .category-single > li > ul:last-child {
    padding: 0.929em; }
    .widget_product_categories .category-single > li > ul:last-child > li > a .child-indicator {
      display: none; }
    .widget_product_categories .category-single > li > ul:last-child > li > a .no-child {
      padding-left: 0; }
    .widget_product_categories .category-single > li > ul:last-child li.current-cat-parent > .children li > a .child-indicator {
      padding-left: 0; }
    .widget_product_categories .category-single > li > ul:last-child li.current-cat-parent > .children li > a .no-child {
      padding-left: 1.214em; }
    .widget_product_categories .category-single > li > ul:last-child li.current-cat > a {
      font-weight: bold; }
    .widget_product_categories .category-single > li > ul:last-child li.current-cat > .children li > a .child-indicator {
      padding-left: 0; }
    .widget_product_categories .category-single > li > ul:last-child li.current-cat > .children li > a .no-child {
      padding-left: 1.214em; }
    .widget_product_categories .category-single > li > ul:last-child li > a {
      padding-left: 1.071em;
      padding-bottom: 0.643em; }
    .widget_product_categories .category-single > li > ul:last-child li > .children > li .child-indicator {
      padding-left: 1.214em; }
    .widget_product_categories .category-single > li > ul:last-child li > .children > li .no-child {
      padding-left: 2.143em; }
    .widget_product_categories .category-single > li > ul:last-child li > .children > li:first-child > a {
      padding-top: 1em; }
    .widget_product_categories .category-single > li > ul:last-child li .children li {
      padding: 0; }
      .widget_product_categories .category-single > li > ul:last-child li .children li .children {
        transition: opacity .1s ease;
        padding-bottom: 0.571em; }
      .widget_product_categories .category-single > li > ul:last-child li .children li:first-child {
        border-top: 1px solid #ddd; }
      .widget_product_categories .category-single > li > ul:last-child li .children li .children li {
        border: none; }
        .widget_product_categories .category-single > li > ul:last-child li .children li .children li a {
          padding-left: 3.214em;
          line-height: 1.1em;
          padding-bottom: 0.893em; }
        .widget_product_categories .category-single > li > ul:last-child li .children li .children li .no-child, .widget_product_categories .category-single > li > ul:last-child li .children li .children li .child-indicator {
          padding-left: 0; }

.widget_price_filter .price_slider {
  margin: 30px 0; }

.widget_price_filter .price_slider_amount {
  text-align: left;
  position: relative;
  width: 100%;
  color: #686868; }
  .widget_price_filter .price_slider_amount .button {
    display: inline-block;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
    line-height: 1;
    font-size: 1em;
    font-weight: bold;
    padding: 0.75em 1.646em;
    border-radius: 0.571em;
    margin-top: 35px; }
    .widget_price_filter .price_slider_amount .button:focus, .widget_price_filter .price_slider_amount .button.focus, .widget_price_filter .price_slider_amount .button:active:focus, .widget_price_filter .price_slider_amount .button:active.focus, .widget_price_filter .price_slider_amount .button.active:focus, .widget_price_filter .price_slider_amount .button.active.focus {
      outline: thin dotted;
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
    .widget_price_filter .price_slider_amount .button:focus, .widget_price_filter .price_slider_amount .button:hover {
      text-decoration: none; }
    .widget_price_filter .price_slider_amount .button.focus {
      text-decoration: none; }
    .widget_price_filter .price_slider_amount .button:active, .widget_price_filter .price_slider_amount .button.active {
      background-image: none;
      outline: 0; }
    .widget_price_filter .price_slider_amount .button.disabled, .widget_price_filter .price_slider_amount .button:disabled {
      cursor: not-allowed;
      opacity: .65; }
  .widget_price_filter .price_slider_amount .price_label {
    position: absolute;
    top: -8px;
    width: inherit;
    font-size: 1em;
    line-height: 1em; }

.widget_price_filter .ui-slider {
  position: relative;
  text-align: left; }

.widget_price_filter .ui-slider .ui-slider-handle {
  border-radius: 50%;
  box-sizing: border-box;
  cursor: ew-resize;
  margin-top: -8px;
  opacity: 1;
  outline: medium none;
  position: absolute;
  z-index: 2;
  height: 1.143em;
  width: 1.143em; }
  .widget_price_filter .ui-slider .ui-slider-handle:last-child {
    border-width: 3px;
    border-style: solid;
    background-color: #fff;
    margin-left: -1em; }
  .widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
    box-shadow: 0 0 0 0.236em rgba(0, 0, 0, 0.1); }

.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-color: #dcdcdc; }

.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: #cacaca; }

.widget_price_filter .ui-slider-horizontal {
  height: 2px; }

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: -2px;
  height: 6px;
  margin-left: 2px; }

.widget_layered_nav_filters li.chosen a {
  display: block !important; }
  .widget_layered_nav_filters li.chosen a::before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f057";
    margin-right: 0.571em; }
  .widget_layered_nav_filters li.chosen a:focus::before, .widget_layered_nav_filters li.chosen a:hover::before {
    color: #ee0000; }

.section-products-carousel .product-carousel-alt {
  text-align: center; }
  .section-products-carousel .product-carousel-alt h3,
  .section-products-carousel .product-carousel-alt .woocommerce-loop-product__title {
    font-size: 1.071em;
    margin-bottom: 1.667em;
    padding: 0 2.857em; }
  .section-products-carousel .product-carousel-alt > a {
    color: #0d244d; }
  .section-products-carousel .product-carousel-alt .loop-product-categories {
    padding: 1.214em 0 0.500em 0;
    display: block; }
    .section-products-carousel .product-carousel-alt .loop-product-categories a {
      color: #878787;
      font-size: 0.857em; }
  .section-products-carousel .product-carousel-alt .price {
    font-size: 1.500em; }
    .section-products-carousel .product-carousel-alt .price del {
      font-size: 0.762em;
      padding-left: 0.325em; }
    .section-products-carousel .product-carousel-alt .price ins, .section-products-carousel .product-carousel-alt .price del {
      text-decoration: none; }
    .section-products-carousel .product-carousel-alt .price ins {
      color: #ee0000; }
    .section-products-carousel .product-carousel-alt .price del {
      text-decoration: line-through; }

.widget_gt_products_carousel_widget .section-products-carousel header {
  margin-bottom: 1.429em; }
  .widget_gt_products_carousel_widget .section-products-carousel header h2 {
    font-size: 1.357em;
    line-height: 0.947em;
    padding-bottom: 1.053em; }
  .widget_gt_products_carousel_widget .section-products-carousel header .owl-nav {
    line-height: 2em; }

.widget_gt_products_carousel_widget .section-products-carousel .products-carousel .owl-item .product {
  margin-left: 3px;
  margin-right: 3px; }

.widget_gt_products_carousel_widget .section-products-carousel .products-carousel .owl-nav, .widget_gt_products_carousel_widget .section-products-carousel .products-carousel .owl-dots {
  display: none; }

.wc-layered-nav-rating .star-rating {
  display: inline-block; }

/**
 * Footer
 */
.footer-widgets {
  margin-bottom: 6.429em; }
  .footer-widgets .widget-title {
    font-size: 1.429em;
    padding: 15px 0;
    border-bottom: 1px solid #dadada;
    margin-bottom: 40px;
    position: relative; }
    .footer-widgets .widget-title:after {
      content: ' ';
      width: 83px;
      border-bottom: 2px solid transparent;
      display: block;
      position: absolute;
      bottom: -1px; }

.footer-newsletter {
  padding: 2em 0; }
  .footer-newsletter .newsletter-title {
    display: inline-block;
    font-size: 1.571em;
    margin-right: 25px;
    line-height: 2.429em;
    margin-bottom: 0; }
    .footer-newsletter .newsletter-title::before {
      content: "\76";
      font-family: "font-gt";
      margin-right: 15px;
      font-size: 1.619em;
      vertical-align: middle; }
  .footer-newsletter .newsletter-marketing-text {
    margin-left: 25px;
    font-size: 1.071em; }
  .footer-newsletter form {
    margin-top: 2px; }
  .footer-newsletter input[type="text"],
  .footer-newsletter input[type="email"] {
    padding: 1.04em 2em;
    background-color: #fff;
    border: 0; }

.footer-bottom-widgets {
  background-color: #f8f8f8;
  padding: 4.143em 0 5.714em 0; }
  .footer-bottom-widgets .widget-title {
    font-size: 1em;
    line-height: 1.125em;
    margin-bottom: 2.5em;
    font-weight: bold; }
  .footer-bottom-widgets ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; }
    .footer-bottom-widgets ul > li > a {
      font-size: 1em;
      color: #0d244d; }
      .footer-bottom-widgets ul > li > a:hover, .footer-bottom-widgets ul > li > a:focus {
        color: #0d244d; }
    .footer-bottom-widgets ul > li + li {
      margin-top: 1em; }
  .footer-bottom-widgets ul.children {
    margin-top: 1em; }
  .footer-bottom-widgets .columns {
    display: inline-block;
    vertical-align: top; 
		width:20%;
	}
    .footer-bottom-widgets .columns + .columns {
      }
  .footer-bottom-widgets .widget_product_categories .product-categories, .footer-bottom-widgets .widget_product_categories .widget-title + ul {
    border: none;
    border-radius: 0;
    margin-left: -2.173em; }
  .footer-bottom-widgets .widget_product_categories ul li {
    border-top: none; }
    .footer-bottom-widgets .widget_product_categories ul li > a {
      padding: 0;
      display: block; }

.footer-contact > div:last-child {
  margin-bottom: 0; }

.footer-logo {
  margin-bottom: 2.571em; }

.footer-call-us {
  margin-bottom: 3em; }
  .footer-call-us .call-us-icon {
    padding-right: 20px; }
    .footer-call-us .call-us-icon .fa {
      font-size: 3em; }
    .footer-call-us .call-us-icon .ec {
      font-size: 4.643em; }
  .footer-call-us .call-us-text {
    font-weight: 100;
    font-size: 0.929em;
    display: block;
    line-height: 1.429em; }
  .footer-call-us .call-us-number {
    font-size: 1.571em;
    display: block;
    line-height: 1.429em; }

.footer-address {
  margin-bottom: 3.143em; }
  .footer-address .footer-address-title {
    display: block; }
  .footer-address address {
    margin-bottom: 0; }

.footer-social-icons {
  margin-bottom: 3em; }
  .footer-social-icons .social-icons {
    margin-bottom: 0; }
    .footer-social-icons .social-icons > li {
      display: inline-block; }
      .footer-social-icons .social-icons > li + li {
        margin-left: 1.857em; }
    .footer-social-icons .social-icons a {
      color: #7c7c7c;
      font-size: 1.571em; }
      .footer-social-icons .social-icons a:hover, .footer-social-icons .social-icons a:focus {
        text-decoration: none;
        color: #494949; }

.copyright-bar {
  background-color: #eaeaea;
  padding: 0.78em 0; }
  .copyright-bar a {
    font-weight: bold;
    color: #0d244d; }
    .copyright-bar a:hover, .copyright-bar a:focus {
      color: #0d244d; }
  .copyright-bar .copyright {
    line-height: 3em; }

.footer-payment-logo .cash-card {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.footer-payment-logo .card-inline .card-item {
  float: left; }

.footer-payment-logo .card-inline .card-item + .card-item {
  margin-left: 1.143em; }

.footer-payment-logo .card-item > img {
  height: auto;
  max-width: 52px; }

/**
 * Handheld footer bar
 */
.gt-handheld-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  
  z-index: 9999; }
  .gt-handheld-footer-bar::after {
    content: "";
    display: table;
    clear: both; }
  .gt-handheld-footer-bar ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .gt-handheld-footer-bar ul li {
      text-align: center; }
      .gt-handheld-footer-bar ul li > a .count {
        text-indent: 0;
        display: block;
        width: 16px;
        height: 16px;
        line-height: 1.5;
        box-sizing: content-box;
        font-size: 11px;
        position: absolute;
        border-radius: 100%;
        font-weight: bold; }
      .gt-handheld-footer-bar ul li.search > a:before {
        content: "\6d";
        font-family: font-gt; }
      .gt-handheld-footer-bar ul li.search .site-search {
        position: absolute;
        bottom: -2em;
        left: 0;
        right: 0;
        transition: all, ease, 0.2s;
        padding: 1em;
        z-index: 1;
        display: block;
        font-size: .875em;
        clear: both; }
        .gt-handheld-footer-bar ul li.search .site-search .woocommerce-product-search button {
          display: none; }
      .gt-handheld-footer-bar ul li.search.active .site-search,
      .gt-handheld-footer-bar ul li.search a:active .site-search {
        bottom: 100%; }
      .gt-handheld-footer-bar ul li.search .site-search,
      .gt-handheld-footer-bar ul li.search .widget,
      .gt-handheld-footer-bar ul li.search form {
        margin-bottom: 0; }
  .gt-handheld-footer-bar ul.menu {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    width: 100%; }
    .gt-handheld-footer-bar ul.menu li + li {
      border-left: 1px solid rgba(255, 255, 255, 0.2); }
    .gt-handheld-footer-bar ul.menu li {
      min-width: 20%;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%;
      background-color: #0d244d; }
      .gt-handheld-footer-bar ul.menu li > a {
        position: relative; }
        .gt-handheld-footer-bar ul.menu li > a .count {
          bottom: -2px;
          right: -6px; }
      .gt-handheld-footer-bar ul.menu li i {
        font-size: 22px; }
      .gt-handheld-footer-bar ul.menu li.search > a {
        text-indent: -99999px;
        width: 22px; }
      .gt-handheld-footer-bar ul.menu li.search > a:before {
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        font-weight: 400;
        font-size: 22px;
        text-indent: 0;
        display: block;
        cursor: pointer;
        content: "\6d";
        font-family: font-gt; }
      .gt-handheld-footer-bar ul.menu li.search .site-search {
        position: fixed;
        bottom: -80px;
        left: 0;
        right: 0;
        transition: all, ease, 0.2s;
        padding: 1em;
        z-index: -1;
        display: block; }
      .gt-handheld-footer-bar ul.menu li.search.active .site-search,
      .gt-handheld-footer-bar ul.menu li.search a:active .site-search {
        bottom: 60px; }
  .gt-handheld-footer-bar ul:not(.menu) li {
    display: inline-block;
    float: left; }
    .gt-handheld-footer-bar ul:not(.menu) li:last-child > a {
      border-right: 0; }
    .gt-handheld-footer-bar ul:not(.menu) li > a {
      height: 4.235801032em;
      display: block;
      position: relative;
      text-indent: -9999px;
      z-index: 999;
       }
      .gt-handheld-footer-bar ul:not(.menu) li > a:active, .gt-handheld-footer-bar ul:not(.menu) li > a:focus {
        outline: none; }
      .gt-handheld-footer-bar ul:not(.menu) li > a.has-icon {
        text-indent: 0; }
        .gt-handheld-footer-bar ul:not(.menu) li > a.has-icon i:before {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          text-align: center;
          line-height: 2.618046972;
          font-weight: 400;
          font-size: 1.618em;
          text-indent: 0;
          display: block;
          cursor: pointer; }
      .gt-handheld-footer-bar ul:not(.menu) li > a .count {
        left: 50%;
        bottom: 16px; 
		color:#fff;
		}
      .gt-handheld-footer-bar ul:not(.menu) li > a:before {
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        line-height: 2.618046972;
        font-weight: 400;
        font-size: 22px;
        text-indent: 0;
        display: block;
        cursor: pointer; }
    .gt-handheld-footer-bar ul:not(.menu) li.search > a:before {
      content: "\6d";
      font-family: font-gt; }
    .gt-handheld-footer-bar ul:not(.menu) li.my-account > a:before {
      content: "\72";
      font-family: font-gt; }
    .gt-handheld-footer-bar ul:not(.menu) li.cart {
      margin-bottom: 0; }
      .gt-handheld-footer-bar ul:not(.menu) li.cart > a:before {
        content: "\6e";
        font-family: font-gt; }
  .gt-handheld-footer-bar ul:not(.menu).columns-1 li {
    width: 100%;
    display: block;
    float: none; }
  .gt-handheld-footer-bar ul:not(.menu).columns-2 li {
    width: 50%; }
  .gt-handheld-footer-bar ul:not(.menu).columns-3 li {
    width: 33.33333%; }
  .gt-handheld-footer-bar ul:not(.menu).columns-4 li {
    width: 25%; }
  .gt-handheld-footer-bar ul:not(.menu).columns-5 li {
    width: 20%; }

.gt-handheld-footer-bar,
.gt-handheld-footer-bar ul li > a,
.gt-handheld-footer-bar ul li.search .site-search {
  background-color: #d4cdcd;
  color: #d4cdcd; }

.gt-handheld-footer-bar .site-search .widget_product_search form:before,
.gt-handheld-footer-bar .site-search .widget_search form:before {
  top: 2.586em;
  left: 2.586em;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f002";
  color: #43454b;
  position: absolute; }

.gt-handheld-footer-bar .widget_product_search form input[type=submit],
.gt-handheld-footer-bar .widget_product_search form button[type=submit],
.gt-handheld-footer-bar .widget_search form input[type=submit],
.gt-handheld-footer-bar .widget_search form button[type=submit] {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  top: 0;
  left: 0; }

.gt-handheld-footer-bar .site-search .widget_product_search input[type=search],
.gt-handheld-footer-bar .site-search .widget_product_search input[type=text],
.gt-handheld-footer-bar .site-search .widget_search input[type=search],
.gt-handheld-footer-bar .site-search .widget_search input[type=text] {
  padding: 1.41575em 1.618em 1.41575em 3.706325903em;
  line-height: 1;
  width: 100%;
  border-radius: 0;
  background-color: #f2f2f2;
  color: #43454b;
  outline: 0;
  border: 0;
  -webkit-appearance: none;
  border-radius: 2px;
  box-sizing: border-box;
  font-weight: 400;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.125); }

.comments-title,
.comment-reply-title,
.pings-title {
  font-size: 1.786em;
  line-height: 1.6em;
  color: #0d244d;
  position: relative;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.6em; }
  .comments-title:after,
  .comment-reply-title:after,
  .pings-title:after {
    border-bottom: 2px solid transparent;
    bottom: -1px;
    content: " ";
    display: block;
    position: absolute;
    width: 3.684em; }

.comments-area {
  margin: 1.786em 0; }

.comment-list {
  padding-left: 0; }
  .comment-list .comment {
    list-style-type: none; }
  .comment-list .bypostauthor > .media .comment-body cite:after {
    font-family: "FontAwesome";
    font-weight: 400;
    margin-left: .53em;
    content: "\f097"; }

.comment-list,
.pings-list {
  margin-bottom: 3.571em; }
  .comment-list .comment,
  .comment-list .pingback,
  .pings-list .comment,
  .pings-list .pingback {
    padding: 2.714em 0;
    border-bottom: 1px solid #dddddd; }
    .comment-list .comment:last-child,
    .comment-list .pingback:last-child,
    .pings-list .comment:last-child,
    .pings-list .pingback:last-child {
      border: none; }
    .comment-list .comment .gravatar-wrapper,
    .comment-list .pingback .gravatar-wrapper,
    .pings-list .comment .gravatar-wrapper,
    .pings-list .pingback .gravatar-wrapper {
      padding-right: 1.429em; }
      .comment-list .comment .gravatar-wrapper img,
      .comment-list .pingback .gravatar-wrapper img,
      .pings-list .comment .gravatar-wrapper img,
      .pings-list .pingback .gravatar-wrapper img {
        border-radius: 50%;
        max-width: none; }
    .comment-list .comment .children,
    .comment-list .pingback .children,
    .pings-list .comment .children,
    .pings-list .pingback .children {
      list-style: none;
      margin-top: 2.500em;
      border-top: 1px solid #dddddd; }
      .comment-list .comment .children > li:last-child,
      .comment-list .pingback .children > li:last-child,
      .pings-list .comment .children > li:last-child,
      .pings-list .pingback .children > li:last-child {
        padding-bottom: 0; }
  .comment-list .comment-body .comment-content,
  .pings-list .comment-body .comment-content {
    margin-bottom: 2.500em;
    color: #686c6f; }
  .comment-list .comment-body .author,
  .pings-list .comment-body .author {
    margin-right: 0.714em;
    display: inline-block;
    font-weight: 700; }
    .comment-list .comment-body .author cite,
    .pings-list .comment-body .author cite {
      font-style: normal; }
    .comment-list .comment-body .author a,
    .pings-list .comment-body .author a {
      color: #686c6f; }
      .comment-list .comment-body .author a:hover, .comment-list .comment-body .author a:focus,
      .pings-list .comment-body .author a:hover,
      .pings-list .comment-body .author a:focus {
        text-decoration: none; }
  .comment-list .comment-body .comment-awaiting-moderation,
  .pings-list .comment-body .comment-awaiting-moderation {
    display: none; }
  .comment-list .comment-body .date,
  .pings-list .comment-body .date {
    margin-right: 0.714em;
    display: inline-block;
    font-size: 0.929em; }
    .comment-list .comment-body .date a, .comment-list .comment-body .date a:hover, .comment-list .comment-body .date a:focus,
    .pings-list .comment-body .date a,
    .pings-list .comment-body .date a:hover,
    .pings-list .comment-body .date a:focus {
      color: #aeaeae;
      text-decoration: none; }
  .comment-list .comment-body .reply,
  .pings-list .comment-body .reply {
    float: right;
    display: inline-block; }
    .comment-list .comment-body .reply a:hover, .comment-list .comment-body .reply a:focus,
    .pings-list .comment-body .reply a:hover,
    .pings-list .comment-body .reply a:focus {
      text-decoration: none; }
  .comment-list #respond,
  .pings-list #respond {
    background: #f5f5f5;
    padding: 1.618em;
    margin-top: 1.429em; }
    .comment-list #respond .comment-reply-title,
    .pings-list #respond .comment-reply-title {
      font-size: 1.429em; }
      .comment-list #respond .comment-reply-title small,
      .pings-list #respond .comment-reply-title small {
        float: right;
        font-size: 0.7em; }
        .comment-list #respond .comment-reply-title small a:hover, .comment-list #respond .comment-reply-title small a:focus,
        .pings-list #respond .comment-reply-title small a:hover,
        .pings-list #respond .comment-reply-title small a:focus {
          text-decoration: none; }

.single-post .comment-form > p, .page .comment-form > p {
  margin-bottom: 1.714em; }
  .single-post .comment-form > p label, .page .comment-form > p label {
    display: block; }
  .single-post .comment-form > p input[type="text"], .single-post .comment-form > p textarea, .single-post .comment-form > p input[type="email"], .single-post .comment-form > p input[type="url"], .page .comment-form > p input[type="text"], .page .comment-form > p textarea, .page .comment-form > p input[type="email"], .page .comment-form > p input[type="url"] {
    width: 100%; }

.single-post .comment-form-rating, .page .comment-form-rating {
  clear: both; }
  .single-post .comment-form-rating label, .page .comment-form-rating label {
    display: block; }

.single-post .comment-form-url, .page .comment-form-url {
  clear: both; }

.single-post .comment-form-author,
.single-post .comment-form-email, .page .comment-form-author,
.page .comment-form-email {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  @media (min-width: 768px) {
    .single-post .comment-form-author,
    .single-post .comment-form-email, .page .comment-form-author,
    .page .comment-form-email {
      width: 50%; } }

.single-post .comment-form-author, .page .comment-form-author {
  padding-left: 0; }

.single-post .comment-form-email, .page .comment-form-email {
  padding-right: 0; }

.single-post .comment-form-email, .page .comment-form-email {
  margin-right: 0; }

.single-post .form-submit, .page .form-submit {
  clear: both; }

.comment-navigation {
  margin-bottom: 3.571em; }
  .comment-navigation::after {
    content: "";
    display: table;
    clear: both; }
  .comment-navigation .nav-previous, .comment-navigation .nav-next {
    width: 48%; }
    .comment-navigation .nav-previous a, .comment-navigation .nav-next a {
      color: #575560; }
  .comment-navigation .nav-previous {
    float: left; }
  .comment-navigation .nav-next {
    float: right;
    text-align: right; }

.hentry .wp-post-image {
  display: block;
  max-width: 100%;
  height: auto; }

.hentry .byline,
.hentry .updated:not(.published) {
  display: none; }

embed,
iframe,
object,
video {
  max-width: 100%;
  border: none; }

article.post .entry-content p {
  margin-bottom: 2.143em; }

article.post .entry-content p,
article.post .entry-content ol,
article.post .entry-content ul {
  line-height: 1.714em; }

article.post .entry-content p.highlight,
article.post .entry-content ul.highlight,
article.post .entry-content ol.highlight {
  font-size: 1.143em;
  font-weight: 700; }

article.post .entry-content blockquote {
  border-left: 0 none;
  font-size: inherit;
  margin: 0 0 1.429em 2.714em;
  padding: 0; }
  article.post .entry-content blockquote:before {
    color: #a7a7a7;
    content: "";
    float: left;
    font-family: FontAwesome;
    font-size: 1.786em;
    margin-left: -1.5em; }
  article.post .entry-content blockquote p {
    font-style: italic;
    font-size: 1.071em; }

article.post .entry-content img {
  display: block;
  max-width: 100%;
  height: auto; }

article.post .entry-content figure img,
article.post .entry-content .wp-caption img {
  margin-bottom: 10px; }

article.post .entry-content .gallery figure.gallery-item {
  display: inline-block; }

.single-post article.post {
  margin-bottom: 0; }
  .single-post article.post .entry-header {
    position: relative; }
    .single-post article.post .entry-header h1.entry-title .comments-link {
      float: right; }
      .single-post article.post .entry-header h1.entry-title .comments-link a {
        font-size: 0.480em;
        display: inline-block;
        vertical-align: middle; }

.post-author-info {
  background: #f5f5f5;
  padding: 1.357em 1.143em;
  margin-bottom: 5.714em;
  margin-top: 2.857em; }
  .post-author-info .media .media-left {
    padding-right: 1.786em; }
  .post-author-info .media img {
    max-width: none; }
  .post-author-info .media .media-body h4.media-heading {
    font-size: 1.357em;
    line-height: 1.474em;
    margin-bottom: 1.071em;
    margin-top: 0.526em; }
    .post-author-info .media .media-body h4.media-heading a {
      color: #0d244d; }
  .post-author-info .media .media-body p {
    color: #747474;
    line-height: 1.714em; }
    .post-author-info .media .media-body p:last-child {
      margin-bottom: 0; }

.post-navigation {
  margin-bottom: 5.714em; }
  .post-navigation .nav-links::after {
    content: "";
    display: table;
    clear: both; }
  .post-navigation .nav-links .nav-previous {
    float: left; }
  .post-navigation .nav-links .nav-next {
    float: right;
    text-align: right; }
  .post-navigation .nav-links .nav-previous,
  .post-navigation .nav-links .nav-next {
    width: 48%; }
    .post-navigation .nav-links .nav-previous a,
    .post-navigation .nav-links .nav-next a {
      color: #575560; }
      .post-navigation .nav-links .nav-previous a:hover, .post-navigation .nav-links .nav-previous a:focus,
      .post-navigation .nav-links .nav-next a:hover,
      .post-navigation .nav-links .nav-next a:focus {
        text-decoration: none;
        color: #0d244d; }

/*grid*/
@media (min-width: 768px) {
  .blog-grid:not(.single-post) article.post {
    margin-bottom: 5em;
    width: 47.8260869565%;
    float: left;
    margin-right: 4.347826087%;
    clear: both; }
    .blog-grid:not(.single-post) article.post:nth-child(odd) {
      float: left; }
    .blog-grid:not(.single-post) article.post:nth-child(even) {
      clear: none;
      margin-right: 0;
      float: right; }
    .blog-grid:not(.single-post) article.post .media-attachment {
      margin-bottom: 2.000em; }
    .blog-grid:not(.single-post) article.post .entry-header h1.entry-title {
      padding-bottom: 0.200em;
      margin-bottom: 0.200em; } }

/*list*/
.blog-list:not(.single-post) article.post {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  margin-bottom: 6.214em; }
  .blog-list:not(.single-post) article.post::after {
    content: "";
    display: table;
    clear: both; }
  .blog-list:not(.single-post) article.post .media-attachment {
    margin-bottom: 0;
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .blog-list:not(.single-post) article.post .media-attachment {
        width: 33%; } }
  .blog-list:not(.single-post) article.post .content-body {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .blog-list:not(.single-post) article.post .content-body {
        width: 66.6666666667%; } }
  .blog-list:not(.single-post) article.post .entry-header h1.entry-title {
    padding-bottom: 0.240em;
    margin-bottom: 0.240em; }

/*menu*/
.blog-navigation {
  padding: 0;
  margin-bottom: 2.500em;
  border-bottom: 1px solid #eeeeee;
  padding: 0 0 1.429em;
  border-radius: 0; }
  .blog-navigation .navbar-toggle {
    display: none; }
  .blog-navigation .collapse {
    display: block; }
  .blog-navigation ul.blog-nav-menu {
    margin-bottom: 0;
    position: relative;
    text-align: center;
    padding-left: 0; }
    .blog-navigation ul.blog-nav-menu > li {
      display: inline-block; }
      .blog-navigation ul.blog-nav-menu > li > a {
        letter-spacing: 0.05em;
        color: #0d244d;
        font-weight: 400; }
        .blog-navigation ul.blog-nav-menu > li > a:focus, .blog-navigation ul.blog-nav-menu > li > a:hover {
          color: #000;
          text-decoration: underline; }
      .blog-navigation ul.blog-nav-menu > li:after {
        content: "/";
        display: inline-block;
        margin: 0 10px;
        color: #b9b9b9; }
      .blog-navigation ul.blog-nav-menu > li:last-child:after {
        display: none; }
      .blog-navigation ul.blog-nav-menu > li.current-menu-item > a {
        font-weight: bold;
        text-decoration: underline; }

#ship-to-different-address {
  font-size: 1em;
  border-bottom: none; }
  #ship-to-different-address::after {
    content: none; }
  #ship-to-different-address label {
    display: inline-block; }
  #ship-to-different-address .woocommerce-form__input-checkbox {
    position: relative;
    margin-left: 0; }
  #ship-to-different-address .input-checkbox {
    float: left;
    margin-right: 0.714em;
    margin-top: 3px; }

.form-row.notes {
  padding-left: 0;
  padding-right: 0; }

.woocommerce-checkout h3 {
  font-size: 1.786em;
  line-height: 1.6em;
  display: block;
  padding-bottom: 0.400em;
  position: relative;
  margin-bottom: 1.360em;
  border-bottom: 1px solid #dadada; }
  .woocommerce-checkout h3::after {
    content: ' ';
    border-bottom: 2px solid transparent;
    display: block;
    width: 20%;
    position: absolute;
    bottom: -1px; }

.checkout_coupon .form-row-first {
  padding-right: 0; }
  .checkout_coupon .form-row-first .input-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 1.071em; }

.checkout_coupon .form-row-last {
  padding-left: 0; }
  .checkout_coupon .form-row-last .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

@media (min-width: 1200px) {
  .flex-header .row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .flex-header .row .navbar-search,
    .flex-header .row .primary-nav {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .flex-header .row .navbar-mini-cart {
      order: 5; }
    .flex-header .row .navbar-wishlist {
      order: 4; }
    .flex-header .row .header-logo + .primary-nav {
      padding: 0 .9375rem; }
    .flex-header .row .primary-nav .nav-inline .menu-item .dropdown-menu {
      top: 36px; }
  .flex-header .row + .row {
    align-items: inherit; }
  .flex-header + .navbar-primary .departments-menu,
  .flex-header + .sticky-wrapper .navbar-primary .departments-menu {
    width: 24%;
    margin-right: 15px; }
  .flex-header + .navbar-primary .navbar-nav + .navbar-nav.navbar-compare,
  .flex-header + .sticky-wrapper .navbar-primary .navbar-nav + .navbar-nav.navbar-compare {
    margin-left: 2.714em; }
  .flex-header + .navbar-primary .departments-menu > .nav-item,
  .flex-header + .sticky-wrapper .navbar-primary .departments-menu > .nav-item {
    width: 100%;
    margin-right: 0; }
  .flex-header + .navbar-primary .container,
  .flex-header + .sticky-wrapper .navbar-primary .container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap; }
    .flex-header + .navbar-primary .container .navbar-search,
    .flex-header + .sticky-wrapper .navbar-primary .container .navbar-search {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .flex-header + .navbar-primary .container .navbar-mini-cart,
    .flex-header + .sticky-wrapper .navbar-primary .container .navbar-mini-cart {
      order: 5; }
    .flex-header + .navbar-primary .container .navbar-wishlist,
    .flex-header + .sticky-wrapper .navbar-primary .container .navbar-wishlist {
      order: 4; } }

.woocommerce-checkout-review-order-table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.236rem;
  margin-bottom: 0; }
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .woocommerce-checkout-review-order-table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .woocommerce-checkout-review-order-table tbody + tbody {
    border-top: 2px solid #eceeef; }
  .woocommerce-checkout-review-order-table .table {
    background-color: #fff; }

#payment {
  border-top: 3px solid #ddd; }
  #payment::after {
    content: "";
    display: table;
    clear: both; }
  #payment .create-account {
    clear: both; }
  #payment .payment_methods {
    margin: 0 !important;
    border-bottom: 1px dotted #ddd;
    padding: 0 !important; }
    #payment .payment_methods li {
      list-style: none !important;
      padding: 1.387em !important;
      border-bottom: 1px dotted #ddd;
      margin-left: 0; }
      #payment .payment_methods li img {
        float: right;
        border: 0;
        padding: 0;
        max-height: 1.618em; }
      #payment .payment_methods li:last-child {
        padding-bottom: 0;
        border-bottom: 0; }
      #payment .payment_methods li label {
        width: 92%;
        padding-top: 0 !important;
        margin-left: .618em;
        font-weight: bold;
        margin-bottom: 0; }
      #payment .payment_methods li p {
        margin: 0; }
      #payment .payment_methods li .payment_box {
        padding: 1.387em;
        margin: 1.387em -1.387em -1.387em -1.387em;
        background: rgba(0, 0, 0, 0.035);
        border-top: 1px dotted #ddd; }
        #payment .payment_methods li .payment_box::after {
          content: "";
          display: table;
          clear: both; }
        #payment .payment_methods li .payment_box fieldset {
          border: 0;
          margin: 0;
          padding: 1em 0 0 0;
          font-size: .857em; }
          #payment .payment_methods li .payment_box fieldset label {
            width: auto;
            margin-left: 0;
            margin-bottom: .857em; }
          #payment .payment_methods li .payment_box fieldset .form-row {
            margin-bottom: 1em; }
          #payment .payment_methods li .payment_box fieldset .form-row-first select {
            width: 48%; }
            #payment .payment_methods li .payment_box fieldset .form-row-first select:nth-child(2n) {
              float: right; }
          #payment .payment_methods li .payment_box fieldset #cvv {
            width: 22% !important; }
          #payment .payment_methods li .payment_box fieldset .help {
            width: 75%;
            float: right; }
          #payment .payment_methods li .payment_box fieldset .input-text, #payment .payment_methods li .payment_box fieldset input[type=email], #payment .payment_methods li .payment_box fieldset input[type=password], #payment .payment_methods li .payment_box fieldset input[type=search], #payment .payment_methods li .payment_box fieldset input[type=text], #payment .payment_methods li .payment_box fieldset input[type=url], #payment .payment_methods li .payment_box fieldset textarea {
            background-color: #fff; }
        #payment .payment_methods li .payment_box .wc-credit-card-form-card-number {
          background-repeat: no-repeat;
          background-position: right 0.618em center;
          background-size: 31px 20px;
          background-image: url(/wp-content/themes/gt/assets/images/credit-cards/unknown.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.visa {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/visa.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.mastercard {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/mastercard.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.laser {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/laser.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.dinersclub {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/diners.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.maestro {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/maestro.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.jcb {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/jcb.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.amex {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/amex.svg); }
          #payment .payment_methods li .payment_box .wc-credit-card-form-card-number.discover {
            background-image: url(/wp-content/themes/gt/assets/images/credit-cards/discover.svg); }
  #payment .terms {
    width: 100%;
    clear: both;
    float: none;
    margin-bottom: 0;
    margin-bottom: 1em; }
    #payment .terms .woocommerce-form__label-for-checkbox,
    #payment .terms input + label {
      display: inline-block; }
    #payment .terms input + label,
    #payment .terms .woocommerce-form__input-checkbox + span {
      margin-left: .618em; }
    #payment .terms input {
      display: inline-block;
      width: auto;
      position: relative;
      float: left;
      margin: .327em .53em 0 0; }
  #payment .place-order {
    padding: 1.387em;
    margin-bottom: 0;
    float: none;
    width: 100%; }
    #payment .place-order .button {
      font-size: 1.387em;
      width: 100%;
      font-weight: 700;
      white-space: pre-wrap; }
    #payment .place-order button[type=submit]:hover {
      background-color: #000;
      border-color: #000; }

.woocommerce-checkout .payment-fixed {
  position: fixed;
  top: 0;
  z-index: 9; }

.admin-bar .woocommerce-checkout .payment-fixed {
  top: 32px; }

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: left;
  font-weight: 600;
  padding: .53em 0;
  text-align: right;
  font-size: .857em; }
  .woocommerce-password-strength:after {
    content: "\f119";
    font-family: 'FontAwesome';
    display: inline-block;
    font-weight: 400;
    margin-left: .53em; }
  .woocommerce-password-strength.strong {
    color: #5cb85c; }
    .woocommerce-password-strength.strong:after {
      content: "\f118"; }
  .woocommerce-password-strength.short {
    color: #d9534f; }
  .woocommerce-password-strength.bad {
    color: #d9534f; }
  .woocommerce-password-strength.good {
    color: #5bc0de; }
    .woocommerce-password-strength.good:after {
      content: "\f11a"; }

.woocommerce-info + .login,
.woocommerce-info + .checkout_coupon {
  margin-bottom: 2.618em; }

.create-account .checkbox {
  display: inline-block;
  margin-left: 0.25em; }

#shipping_method {
  list-style: none;
  padding: 0; }

form.woocommerce-checkout {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  form.woocommerce-checkout::after {
    content: "";
    display: table;
    clear: both; }
  form.woocommerce-checkout .col2-set {
    margin: 0;
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 992px) {
      form.woocommerce-checkout .col2-set {
        width: 58.3333333333%; } }
    form.woocommerce-checkout .col2-set .col-1, form.woocommerce-checkout .col2-set .col-2 {
      width: 100%;
      padding: 0; }
    form.woocommerce-checkout .col2-set .woocommerce-billing-fields__field-wrapper::after, form.woocommerce-checkout .col2-set .woocommerce-billing-fields__field-wrapper::before,
    form.woocommerce-checkout .col2-set .woocommerce-account-fields::after,
    form.woocommerce-checkout .col2-set .woocommerce-account-fields::before {
      content: "";
      display: table;
      clear: both; }
    form.woocommerce-checkout .col2-set .woocommerce-account-fields .create-account .checkbox {
      margin-left: 0; }
    form.woocommerce-checkout .col2-set .woocommerce-account-fields .checkbox input[type=checkbox] {
      position: relative;
      margin-top: 0;
      margin-left: 0;
      margin-right: 4px; }
  form.woocommerce-checkout #order_review_heading {
    display: none; }
  form.woocommerce-checkout .order-review-wrapper {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%;
    background-color: #f5f5f5;
    padding: 25px;
    padding-bottom: 15px;
    border-radius: 10px; }
    @media (min-width: 992px) {
      form.woocommerce-checkout .order-review-wrapper {
        width: calc( 41.6666666667% - 30px);
        margin-left: 15px; } }

@media (min-width: 768px) {
  .order-review-wrapper {
    transition: box-shadow ease .4s, top ease .4s; } }

.sticky-wrapper .order-review-wrapper.stuck {
  position: fixed;
  top: 20px;
  z-index: 1000;
  box-shadow: 0 6px 2em rgba(0, 0, 0, 0.2); }

.admin-bar .sticky-wrapper .order-review-wrapper.stuck {
  top: 52px; }

.has-sticky-navbar .sticky-wrapper .order-review-wrapper.stuck {
  top: 91px; }

.admin-bar.has-sticky-navbar .sticky-wrapper .order-review-wrapper.stuck {
  top: 123px; }

.customer-login-form {
  position: relative; }
  .customer-login-form h2 {
    font-size: 1.786em;
    line-height: 1.6em;
    display: block;
    padding-bottom: 0.400em;
    position: relative;
    margin-bottom: 1.360em;
    border-bottom: 1px solid #dadada; }
    .customer-login-form h2::after {
      content: ' ';
      border-bottom: 2px solid transparent;
      display: block;
      width: 20%;
      position: absolute;
      bottom: -1px; }
  .customer-login-form .button {
    font-weight: bold; }
  .customer-login-form form.register > p.form-row:nth-last-child(2) {
    margin-bottom: 3.571em; }

.no-registration-form {
  width: 41.6666666667%;
  margin: 0 auto; }

#customer_login {
  padding: 2.5em 2.143em;
  position: relative; }
  #customer_login::after {
    content: "";
    display: table;
    clear: both; }
  #customer_login::before {
    border-right: 1px solid #ddd;
    height: 100%;
    position: absolute;
    content: ' ';
    right: 50%;
    top: 0; }
  #customer_login .col-1 {
    padding-right: 6.071em; }
  #customer_login .col-2 {
    padding-left: 5.857em; }
  #customer_login .before-login-text,
  #customer_login .before-register-text {
    margin-bottom: 2.143em; }
  #customer_login .register-benefits {
    clear: both; }
    #customer_login .register-benefits h3 {
      font-size: 1.286em;
      line-height: 1em;
      margin-bottom: 1.444em; }
    #customer_login .register-benefits ul {
      padding-left: 0;
      margin-bottom: 0;
      list-style: none; }
      #customer_login .register-benefits ul > li {
        line-height: 2.143em; }
        #customer_login .register-benefits ul > li::before {
          content: "\f00c";
          color: #5bb300;
          display: inline-block;
          font: normal normal normal 14px/1 FontAwesome;
          font-size: inherit;
          text-rendering: auto;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          font-size: 1.143em;
          display: inline-block;
          margin-right: 1em; }

.or-text {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ddd;
  font-style: italic;
  background-color: #fff;
  z-index: 1; }

.address header.title, .addresses header.title, .track-order header.title {
  border-bottom: 1px solid #dadada;
  margin-bottom: 1.360em; }
  .address header.title::after, .addresses header.title::after, .track-order header.title::after {
    content: "";
    display: table;
    clear: both; }
  .address header.title h3, .addresses header.title h3, .track-order header.title h3 {
    font-size: 1.786em;
    line-height: 1.6em;
    display: block;
    position: relative;
    float: left;
    padding-bottom: 0.400em;
    margin-bottom: 0;
    width: 90%; }
    .address header.title h3::after, .addresses header.title h3::after, .track-order header.title h3::after {
      content: ' ';
      border-bottom: 2px solid transparent;
      display: block;
      width: 20%;
      position: absolute;
      bottom: -1px; }
  .address header.title .edit, .addresses header.title .edit, .track-order header.title .edit {
    float: right;
    line-height: 3.571em; }

.address address, .addresses address, .track-order address {
  line-height: 2em; }

.woocommerce-account .woocommerce h2 {
  font-size: 1.786em;
  line-height: 1.6em;
  display: block;
  position: relative;
  padding-bottom: 0.400em;
  border-bottom: 1px solid #dadada;
  margin-bottom: 1.360em; }
  .woocommerce-account .woocommerce h2::after {
    content: ' ';
    border-bottom: 2px solid transparent;
    display: block;
    width: 20%;
    position: absolute;
    bottom: -1px; }

.woocommerce-edit-address form h3 {
  line-height: 1.6em;
  display: block;
  position: relative;
  padding-bottom: 0.400em;
  border-bottom: 1px solid #dadada;
  margin-bottom: 1.360em; }
  .woocommerce-edit-address form h3::after {
    content: ' ';
    border-bottom: 2px solid transparent;
    display: block;
    width: 20%;
    position: absolute;
    bottom: -1px; }

.edit-account legend {
  line-height: 1.6em;
  display: block;
  position: relative;
  padding-bottom: 0.400em;
  border-bottom: 1px solid #dadada;
  margin-bottom: 1.360em; }
  .edit-account legend::after {
    content: ' ';
    border-bottom: 2px solid transparent;
    display: block;
    width: 20%;
    position: absolute;
    bottom: -1px; }

.my_account_orders {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.236rem; }
  .my_account_orders th,
  .my_account_orders td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .my_account_orders thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .my_account_orders tbody + tbody {
    border-top: 2px solid #eceeef; }
  .my_account_orders .table {
    background-color: #fff; }
  .my_account_orders .order-actions .button.view {
    padding: 0.5875em 2.625em;
    font-size: 0.875em; }

.notes {
  padding-left: 0;
  list-style: none; }

.note {
  margin-bottom: 2em; }
  .note .meta {
    color: #999;
    font-size: 11px;
    line-height: 1.5; }
  .note .description {
    padding: 10px;
    background-color: #efefef;
    font-size: 13px;
    position: relative; }
    .note .description::after {
      content: "";
      display: block;
      position: absolute;
      top: -10px;
      left: 20px;
      width: 0;
      height: 0;
      border-width: 0 0 10px 10px;
      border-style: solid;
      border-color: #efefef transparent; }
    .note .description p:last-child {
      margin: 0;
      padding: 0; }

.order-again {
  margin-bottom: 2.5em; }
  .order-again .button {
    padding: 0.6875rem 2.625rem; }

.order-info mark {
  padding: inherit;
  background-color: transparent;
  font-weight: bold; }

.customer_details,
.order_details {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.236rem; }
  .customer_details th,
  .customer_details td,
  .order_details th,
  .order_details td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .customer_details thead th,
  .order_details thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .customer_details tbody + tbody,
  .order_details tbody + tbody {
    border-top: 2px solid #eceeef; }
  .customer_details .table,
  .order_details .table {
    background-color: #fff; }

.order_details.bacs_details {
  list-style: none;
  padding: 0; }

.customer_details {
  border: 1px solid #eceeef; }
  .customer_details th,
  .customer_details td {
    border: 1px solid #eceeef; }
  .customer_details th {
    background-color: #f9f9f9; }
  .customer_details thead th,
  .customer_details thead td {
    border-bottom-width: 2px; }

.order-info,
.commentlist.notes,
.order_details,
.customer_details,
.addresses {
  margin-bottom: 2.5em; }

label[for="rememberme"] {
  margin-left: 0.75em; }

.woocommerce-account .woocommerce {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .woocommerce-account .woocommerce::after {
    content: "";
    display: table;
    clear: both; }

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%; }
  @media (min-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation {
      width: 25%; } }

.woocommerce-account .woocommerce-MyAccount-content {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%; }
  @media (min-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-content {
      width: 75%; } }

.woocommerce-MyAccount-navigation ul {
  margin-left: 0;
  border-top: 1px solid #eceeef;
  padding-left: 0; }
  .woocommerce-MyAccount-navigation ul li {
    list-style: none;
    border-bottom: 1px solid #eceeef;
    position: relative; }
    .woocommerce-MyAccount-navigation ul li.is-active a {
      font-weight: bold; }
    .woocommerce-MyAccount-navigation ul li.is-active a:before {
      opacity: 1; }
    .woocommerce-MyAccount-navigation ul li a {
      padding: .857em 0;
      display: block;
      color: #0d244d; }
      .woocommerce-MyAccount-navigation ul li a:before {
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f0f6";
        line-height: 1.618;
        margin-left: .53em;
        width: 1.387em;
        text-align: right;
        float: right;
        opacity: .25; }
      .woocommerce-MyAccount-navigation ul li a:hover {
        font-weight: bold; }
        .woocommerce-MyAccount-navigation ul li a:hover:before {
          opacity: 1; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
      content: "\f0e4"; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
      content: "\f291"; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
      content: "\f1c6"; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
      content: "\f015"; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before {
      content: "\f09d"; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
      content: "\f007"; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
      content: "\f08b"; }
    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions a:before {
      content: "\f021"; }

.my_account_orders .button,
.woocommerce-MyAccount-downloads .button {
  padding: .618em .857em;
  font-size: .857em;
  margin-right: .236em; }

.my_account_orders .button.view:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f06e";
  margin-left: .53em; }

p.order-again .button:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f021";
  margin-left: .53em; }

.woocommerce-MyAccount-downloads th, .woocommerce-MyAccount-downloads td {
  vertical-align: middle; }

.woocommerce-MyAccount-downloads .button:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0ed";
  margin-left: .53em; }

.woocommerce-MyAccount-content h2 {
  font-size: 2em;
  font-weight: 600; }

.woocommerce-MyAccount-content #payment .payment_methods {
  margin-bottom: 1.618em !important; }
  .woocommerce-MyAccount-content #payment .payment_methods li .payment_box {
    background-color: rgba(0, 0, 0, 0.05); }

.cart-empty {
  font-size: 3.5em;
  font-weight: 300;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 0.75em;
  margin-top: 2em; }

.return-to-shop {
  text-align: center;
  margin-bottom: 7em; }

.shipping-calculator-form select {
  display: inline-block;
  max-width: 100%;
  padding: .375rem 1.75rem .375rem .75rem;
  padding-right: .75rem \9;
  color: #55595c;
  vertical-align: middle;
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
  background-image: none \9;
  background-size: 8px 10px;
  border: 1px solid #ccc;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-color: #ddd;
  border-radius: 1.571em;
  width: 100%;
  padding: 0.857em 1.214em;
  color: #818181;
  line-height: 1.286em; }
  .shipping-calculator-form select:focus {
    border-color: #51a7e8;
    outline: none; }
  .shipping-calculator-form select::-ms-expand {
    opacity: 0; }

.woocommerce-shipping-calculator {
  margin-top: 0.357em; }

.shipping-calculator-button {
  font-size: 0.857em;
  font-weight: bold;
  border-bottom: 1px solid #3e3e3e; }

.woocommerce-order-received h2 {
  font-size: 1.786em;
  line-height: 1.6em;
  display: block;
  position: relative;
  padding-bottom: 0.400em;
  border-bottom: 1px solid #dadada;
  margin-bottom: 1.360em; }
  .woocommerce-order-received h2::after {
    content: ' ';
    border-bottom: 2px solid transparent;
    display: block;
    width: 20%;
    position: absolute;
    bottom: -1px; }

.track_order > p:first-child {
  text-align: center;
  margin: 0 auto 4.714em;
  width: 90%; }

.track-order h2 {
  font-size: 1.786em;
  line-height: 1.6em;
  display: block;
  padding-bottom: 0.400em;
  position: relative;
  margin-bottom: 1.360em;
  border-bottom: 1px solid #dadada; }
  .track-order h2::after {
    content: ' ';
    border-bottom: 2px solid transparent;
    display: block;
    width: 20%;
    position: absolute;
    bottom: -1px; }

.track-order > p {
  text-align: center; }

.single-product-wrapper {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }
  .single-product-wrapper::after {
    content: "";
    display: table;
    clear: both; }
  .single-product-wrapper .product-images-wrapper {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .single-product-wrapper .product-images-wrapper {
        width: 50%; } }
  .single-product-wrapper .summary.entry-summary {
    position: relative;
    float: left;
    min-height: 1px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    width: 100%; }
    @media (min-width: 768px) {
      .single-product-wrapper .summary.entry-summary {
        width: 58.3333333333%; } }

.extended .single-product-wrapper .summary.entry-summary {
  width: 100%; }
  @media (min-width: 768px) {
    .extended .single-product-wrapper .summary.entry-summary {
      width: 33%; } }

.extended .single-product-wrapper > .product-actions-wrapper {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%; }
  @media (min-width: 768px) {
    .extended .single-product-wrapper > .product-actions-wrapper {
      width: 50%; } }

div.quantity > label {
  display: none; }

.extended .single-product-wrapper div.brand {
  margin-bottom: 2em; }

.extended .single-product-wrapper > .product-actions-wrapper .product-actions {
  border: 1px solid #fcfcfc;
  border-radius: 1.214em;
  background:#fff;
  padding: 20px; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions div.availability {
    display: block;
    padding-bottom: 0.714em;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.429em; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions .price .gt-price {
    display: block; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions .price del {
   
    display: block; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions div.quantity label {
    display: block;
    font-weight: normal;
    margin-bottom: 0.714em; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions div.quantity .qty {
    padding: 0.536em 1.214em; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations {
    margin-bottom: 0;
    position: relative; }
    .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations tr:last-child td, .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations tr:last-child th {
      border: none; }
    .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations td, .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations th {
      border: none;
      display: block;
      padding: 0; }
    .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations td.label {
      padding-bottom: 0.714em; }
      .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations td.label label {
        font-weight: normal; }
    .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations td.value {
      margin-bottom: 1em; }
      .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations td.value select, .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations td.value input[type="text"] {
        width: 100%; }
    .extended .single-product-wrapper > .product-actions-wrapper .product-actions table.variations .reset_variations {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 80%; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions div.quantity {
    margin-bottom: 0.714em; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions .single_add_to_cart_button.button {
    display: block;
    width: 100%;
    padding: 1.108em 2.134em;
    margin-bottom: 0.429em;
    margin-top: 1.429em;
    border-radius: 1.8em; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions .action-buttons {
    display: block;
    text-align: center;
    margin-bottom: 0; }
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions .woocommerce-variation {
    margin-top: 1.786em; }

.single-product .single-product-wrapper {
  margin-bottom: 6.429em; }
  .single-product .single-product-wrapper .loop-product-categories {
    display: block;
    font-size: 0.857em;
    line-height: 1.44em;
    color: #878787;
    overflow: hidden;
    margin-bottom: 1; }
    .single-product .single-product-wrapper .loop-product-categories a {
      color: #878787; }
      .single-product .single-product-wrapper .loop-product-categories a:focus, .single-product .single-product-wrapper .loop-product-categories a:hover {
        text-decoration: none;
        color: #333; }
  .single-product .single-product-wrapper .action-buttons {
    margin-bottom: 1.615em; }

.single-product .woocommerce-product-gallery,
.single-product .gt-wc-product-gallery {
  position: relative; 
 
  }
  .single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger,
  .single-product .gt-wc-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0.6180339845em;
    right: 0.6180339845em;
    display: block;
    height: 2em;
    width: 2em;
    border-radius: 3px;
    z-index: 99;
    text-align: center; }
  .single-product .woocommerce-product-gallery img,
  .single-product .gt-wc-product-gallery img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto; 
	border: 3px solid #efefef;
    webkit-box-shadow: 0px 1px 4px 4px rgb(0 0 0 / 5%);
    box-shadow: 0px 1px 4px 4px rgb(0 0 0 / 5%);
	
	}
  .single-product .woocommerce-product-gallery .flex-viewport,
  .single-product .gt-wc-product-gallery .flex-viewport {
    margin-bottom: 0.857em;

 float:right;
  width:95%;	}
    .single-product .woocommerce-product-gallery .flex-viewport figure,
    .single-product .gt-wc-product-gallery .flex-viewport figure {
      margin-bottom: 0; }
  .single-product .woocommerce-product-gallery .flex-control-thumbs,
  .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper,
  .single-product .gt-wc-product-gallery .flex-control-thumbs,
  .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper {
    margin: 0 -5px;
    padding: 0;
    display: flex;
    flex-flow: row wrap;

	float:left;


	}
    .single-product .woocommerce-product-gallery .flex-control-thumbs::after,
    .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper::after,
    .single-product .gt-wc-product-gallery .flex-control-thumbs::after,
    .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper::after {
      content: "";
      display: table;
      clear: both; }
    .single-product .woocommerce-product-gallery .flex-control-thumbs li, .single-product .woocommerce-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image,
    .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper li,
    .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image,
    .single-product .gt-wc-product-gallery .flex-control-thumbs li,
    .single-product .gt-wc-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image,
    .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper li,
    .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image {
      list-style: none;
      cursor: pointer;
      padding: 5px; }
      .single-product .woocommerce-product-gallery .flex-control-thumbs li img, .single-product .woocommerce-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image img,
      .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper li img,
      .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img,
      .single-product .gt-wc-product-gallery .flex-control-thumbs li img,
      .single-product .gt-wc-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image img,
      .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper li img,
      .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img {
        border: 1px solid #eaeaea;
        display: block;
        max-width: 100%;
        height: auto;
        margin: auto; }
        .single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active, .single-product .woocommerce-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image img.flex-active,
        .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper li img.flex-active,
        .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img.flex-active,
        .single-product .gt-wc-product-gallery .flex-control-thumbs li img.flex-active,
        .single-product .gt-wc-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image img.flex-active,
        .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper li img.flex-active,
        .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image img.flex-active {
          border-bottom-width: 2px;
          border-bottom-style: solid; }
      .single-product .woocommerce-product-gallery .flex-control-thumbs li.flex-active-slide img, .single-product .woocommerce-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image.flex-active-slide img,
      .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper li.flex-active-slide img,
      .single-product .woocommerce-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image.flex-active-slide img,
      .single-product .gt-wc-product-gallery .flex-control-thumbs li.flex-active-slide img,
      .single-product .gt-wc-product-gallery .flex-control-thumbs .gt-wc-product-gallery__image.flex-active-slide img,
      .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper li.flex-active-slide img,
      .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image.flex-active-slide img {
        border-bottom-width: 2px;
        border-bottom-style: solid; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li,
  .single-product .gt-wc-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
    width: 50%; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li,
  .single-product .gt-wc-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
    width: 33%; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li,
  .single-product .gt-wc-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
    width: 25%; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li,
  .single-product .gt-wc-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
    width: 20%; }

.single-product .product-images-wrapper {
  position: relative;
	background:#fff;
  }
  .single-product .product-images-wrapper .onsale {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; }
  .single-product .product-images-wrapper .gt-wc-product-gallery {
    position: relative; 
	
	}
    .single-product .product-images-wrapper .gt-wc-product-gallery .flex-control-nav {
      display: flex;
      justify-content: center;
      padding: 0;
      margin: 0;
      padding-top: 10px; }
      .single-product .product-images-wrapper .gt-wc-product-gallery .flex-control-nav li {
        list-style: none; }
        .single-product .product-images-wrapper .gt-wc-product-gallery .flex-control-nav li a {
          width: 8px;
          height: 8px;
          display: block;
          cursor: pointer;
          text-indent: -9999px;
          border-radius: 20px;
          background: #bcbcbc; }
          .single-product .product-images-wrapper .gt-wc-product-gallery .flex-control-nav li a.flex-active {
            width: 30px; }
        .single-product .product-images-wrapper .gt-wc-product-gallery .flex-control-nav li + li {
          margin-left: 1em; }
  .single-product .product-images-wrapper .flex-direction-nav {
    padding: 0;
    list-style: none;
    opacity: 0; }
    .single-product .product-images-wrapper .flex-direction-nav li a {
      position: absolute;
      top: 50%;
      transform: translate(0, -50%);
      line-height: 1.6;
      color: #fff;
      background: #010101;
      padding: 4px 30px 7px 30px;
      border-radius: 24px;
      opacity: 0.6; }
      .single-product .product-images-wrapper .flex-direction-nav li a.flex-disabled {
        opacity: 0;
        z-index: -1; }
    .single-product .product-images-wrapper .flex-direction-nav li:hover a {
      opacity: 1; }
      .single-product .product-images-wrapper .flex-direction-nav li:hover a.flex-disabled {
        opacity: 0;
        z-index: -1; }
    .single-product .product-images-wrapper .flex-direction-nav > li a {
      left: 0;
      right: auto; }
    .single-product .product-images-wrapper .flex-direction-nav li + li a {
      right: 0;
      left: auto; }
  .single-product .product-images-wrapper:hover .flex-direction-nav {
    opacity: 1; }
  .single-product .product-images-wrapper div.images > a {
    display: block;
    margin-bottom: 0.857em; }
    .single-product .product-images-wrapper div.images > a > img {
      display: block;
      max-width: 100%;
      height: auto; }
  .single-product .product-images-wrapper div.images > .thumbnails-single {
    margin-bottom: 0.857em; }

.single-product div.thumbnails-all a {
  display: inline-block;
  border: 1px solid #eaeaea; }
  .single-product div.thumbnails-all a img {
    display: block;
    max-width: 100%;
    height: auto; }

.single-product div.thumbnails-all .synced a {
  border-bottom-width: 2px;
  border-bottom-style: solid; }

.single-product .product_title {
  font-size: 1.786em;
  line-height: 1.280em;
  margin-bottom: 0.480em; }

.single-product .woocommerce-product-rating {
  margin-bottom: 1em; }
  .single-product .woocommerce-product-rating .star-rating {
    display: inline-block; }
  .single-product .woocommerce-product-rating .woocommerce-review-link {
    font-size: 0.929em;
    line-height: 1.308em;
    color: #878787; }
    .single-product .woocommerce-product-rating .woocommerce-review-link:focus, .single-product .woocommerce-product-rating .woocommerce-review-link:hover {
      text-decoration: none;
      color: #000; }

.single-product .brand {
  display: table-cell;
  margin-right: 1.5em; }
  .single-product .brand img {
    max-height: 2.8em;
    width: auto; }

.single-product .availability {
  display: table-cell;
  vertical-align: middle;
  color: #8f8e94; }
  .single-product .availability span {
    font-weight: bold; }
  .single-product .availability p.stock {
    display: inline; }

.single-product .action-buttons {
  font-size: 0.929em;
  line-height: 1.385em;
  display: inline-block; }
  .single-product .action-buttons .clear {
    display: none; }
  .single-product .action-buttons div, .single-product .action-buttons a, .single-product .action-buttons span, .single-product .action-buttons p {
    margin: 0;
    padding: 0;
    color: #949494; }
  .single-product .action-buttons > div, .single-product .action-buttons > a {
    display: inline-block;
    margin: 0 5px;
    padding-top: 0.923em; }
  .single-product .action-buttons a:hover {
    color: #3b3b3b; }

.single-product .entry-summary > div[itemprop="description"],
.single-product .woocommerce-product-details__short-description {
  line-height: 1.5em;
  color: #7d7d7d;
  margin-bottom: 2.5em; }

.single-product p.stock {
  display: none; }

.single-product .price {
  color: #0d244d;
  font-size: 24px;
  line-height: 1.286em;
  font-weight: normal;
  margin-bottom: 0.571em; }
  .single-product .price ins, .single-product .price del {
    text-decoration: none; }
  .single-product .price del {
    color: #848484;
    font-size: 0.6em;
    line-height: 1.5em;
    margin-left: 0.174em; }
  .single-product .price del .amount {
    text-decoration: line-through; }

.single-product .cart .quantity {
  display: inline-block;
  width: 10em; }

.single-product .wc-tabs {
  text-align: center; }

.single-product .wc-tab {
  border-radius: 1em;
  border: 1px solid #ddd;
  padding: 2.5em; }

.single-product table.shop_attributes {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.236rem; }
  .single-product table.shop_attributes th,
  .single-product table.shop_attributes td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .single-product table.shop_attributes thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .single-product table.shop_attributes tbody + tbody {
    border-top: 2px solid #eceeef; }
  .single-product table.shop_attributes .table {
    background-color: #fff; }
  .single-product table.shop_attributes td p {
    margin-bottom: 0; }
  .single-product table.shop_attributes tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9; }

.single-product table.variations {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.236rem;
  margin-bottom: 1.786em; }
  .single-product table.variations th,
  .single-product table.variations td {
    padding: 0.75rem;
    line-height: 1.5;
    vertical-align: top;
    border-top: 1px solid #eceeef; }
  .single-product table.variations thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eceeef; }
  .single-product table.variations tbody + tbody {
    border-top: 2px solid #eceeef; }
  .single-product table.variations .table {
    background-color: #fff; }
  .single-product table.variations tr:last-child td, .single-product table.variations tr:last-child th {
    border-bottom: 1px solid #eceeef; }
  .single-product table.variations td, .single-product table.variations th {
    vertical-align: middle; }
  .single-product table.variations td.label {
    display: table-cell;
    color: inherit;
    font-size: 100%;
    font-weight: normal;
    border-radius: 0;
    text-align: inherit;
    white-space: inherit; }
    .single-product table.variations td.label label {
      margin-bottom: 0; }
  .single-product table.variations td.value select {
    display: inline-block;
    max-width: 100%;
    padding: .375rem 1.75rem .375rem .75rem;
    padding-right: .75rem \9;
    color: #55595c;
    vertical-align: middle;
    background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
    background-image: none \9;
    background-size: 8px 10px;
    border: 1px solid #ccc;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 1.071em;
    color: #7e7e7e;
    border-color: #e3e3e3; }
    .single-product table.variations td.value select:focus {
      border-color: #51a7e8;
      outline: none; }
    .single-product table.variations td.value select::-ms-expand {
      opacity: 0; }
  .single-product table.variations td.value .reset_variations {
    margin-left: 0.75em;
    color: #0d244d;
    font-size: 90%; }
    .single-product table.variations td.value .reset_variations:focus, .single-product table.variations td.value .reset_variations:hover {
      color: #0d244d;
      text-decoration: none; }

.single-product .woocommerce-variation {
  margin-bottom: 1.786em; }

.single-product .woocommerce-tabs {
  margin-bottom: 4.857em; }
  .single-product .woocommerce-tabs ~ div.products,
  .single-product .woocommerce-tabs + section.related {
    margin-bottom: 4.857em; }
    .single-product .woocommerce-tabs ~ div.products > h2,
    .single-product .woocommerce-tabs  > h2 {
      font-size: 1.786em;
      line-height: 1.6em;
    
      position: relative;
   }
      .single-product .woocommerce-tabs ~ div.products > h2::after,
      .single-product .woocommerce-tabs  > h2::after {
        content: ' ';
        border-bottom: 2px solid transparent;
        display: block;
        width: 20%;
        position: absolute;
        bottom: -1px; }
    .single-product .woocommerce-tabs ~ div.products ul.products,
    .single-product .woocommerce-tabs + section.related ul.products {
      margin-bottom: 0; }

.single-product .upsells ul.products > li.product .product-inner, .single-product .upsells .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product .single-product .upsells ul.products > .onsale-product .product-inner, .single-product .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product .upsells ul.products > .onsale-product-content .product-inner, .single-product .upsells .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item .single-product .upsells ul.products > .product .product-inner,
.single-product .related ul.products > li.product .product-inner,
.single-product .related .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product
.single-product .related ul.products > .onsale-product .product-inner,
.single-product .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
.single-product .related ul.products > .onsale-product-content .product-inner,
.single-product .related .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item
.single-product .related ul.products > .product .product-inner {
  padding: 1.071em; }

@media (min-width: 768px) {
  .single-product .upsells ul.products > li.product, .single-product .upsells .section-onsale-product ul.products > .onsale-product, .section-onsale-product .single-product .upsells ul.products > .onsale-product, .single-product .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product .upsells ul.products > .onsale-product-content, .single-product .upsells .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item .single-product .upsells ul.products > .product,
  .single-product .related ul.products > li.product,
  .single-product .related .section-onsale-product ul.products > .onsale-product, .section-onsale-product
  .single-product .related ul.products > .onsale-product,
  .single-product .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .single-product .related ul.products > .onsale-product-content,
  .single-product .related .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item
  .single-product .related ul.products > .product {
    width: 25%; } }

.single_add_to_cart_button.button {
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  padding: 1.036em 3.434em; }
  .single_add_to_cart_button.button::before {
    display: inline-block;
    font: normal normal normal 14px/1 font-gt;
    font-size: 1.357em;
    vertical-align: middle;
    content: "\61";
    margin-right: 0.5em; }
  .single_add_to_cart_button.button:focus::before, .single_add_to_cart_button.button:hover::before {
    background-color: transparent; }

#tab-description {
  color: #686c6f; 

  }
  #tab-description h1, #tab-description h2, #tab-description h3, #tab-description h4, #tab-description h5, #tab-description h6 {
    font-size: 1.643em;
    line-height: 1.043em;
    color: #0d244d;
    margin-bottom: 1em; }
  #tab-description p {
    margin-bottom: 2.857em; }
  #tab-description *:last-child {
    margin-bottom: 0; }
  #tab-description .gt-description .layout {
    margin-bottom: 140px; }
    #tab-description .gt-description .layout tr td {
      width: 50%; }
      #tab-description .gt-description .layout tr td:last-child img {
        position: relative;
        left: 100px;
        width: 100%; }
    #tab-description .gt-description .layout:last-child tr td:first-child img {
      position: relative;
      right: 100px;
      width: 100%; }

#primary #tab-description .gt-description .layout {
  margin-bottom: 80px; }
  #primary #tab-description .gt-description .layout tr td:last-child img {
    left: 35px; }
  #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
    right: 37px; }

.extended.full-width #primary #tab-description .gt-description .layout {
  margin-bottom: 80px; }
  .extended.full-width #primary #tab-description .gt-description .layout tr td:last-child img {
    left: 100px; }
  .extended.full-width #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
    right: 100px; }

.full-width #primary #tab-description .gt-description .layout tr td:last-child img {
  left: 70px; }

.full-width #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
  right: 71px; }

.single-product.full-width .single-product-wrapper {
  margin-bottom: 11.429em; }

.single-product.full-width .product-images-wrapper div.images > a {
  margin-bottom: 1.214em;
	
  }

.single-product.full-width .product-images-wrapper div.images > .thumbnails-single {
  margin-bottom: 1.214em; }

.single-product.full-width .loop-product-categories {
  margin-bottom: 1em; }

.single-product.full-width .entry-summary > div[itemprop="description"],
.single-product.full-width .woocommerce-product-details__short-description {
  margin:10px 0; }

.single-product.full-width .price {
  margin-bottom: 0.714em; }

.single-product.full-width .wc-tab {
  padding: 5em; 
    background:#fff;
  }

.single-product.full-width .woocommerce-tabs {
  margin-bottom: 7.714em; }
  .single-product.full-width .woocommerce-tabs ~ div.products {
    margin-bottom: 7.714em; }

.single-product.full-width .upsells ul.products > li.product .product-inner, .single-product.full-width .upsells .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product .single-product.full-width .upsells ul.products > .onsale-product .product-inner, .single-product.full-width .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product.full-width .upsells ul.products > .onsale-product-content .product-inner, .single-product.full-width .upsells .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item .single-product.full-width .upsells ul.products > .product .product-inner,
.single-product.full-width .related ul.products > li.product .product-inner,
.single-product.full-width .related .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product
.single-product.full-width .related ul.products > .onsale-product .product-inner,
.single-product.full-width .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
.single-product.full-width .related ul.products > .onsale-product-content .product-inner,
.single-product.full-width .related .products-carousel .owl-item ul.products > .product .product-inner, .products-carousel .owl-item
.single-product.full-width .related ul.products > .product .product-inner {
  padding: 1.071em; }

@media (min-width: 768px) {
  .single-product.full-width .upsells ul.products > li.product, .single-product.full-width .upsells .section-onsale-product ul.products > .onsale-product, .section-onsale-product .single-product.full-width .upsells ul.products > .onsale-product, .single-product.full-width .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product.full-width .upsells ul.products > .onsale-product-content, .single-product.full-width .upsells .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item .single-product.full-width .upsells ul.products > .product,
  .single-product.full-width .related ul.products > li.product,
  .single-product.full-width .related .section-onsale-product ul.products > .onsale-product, .section-onsale-product
  .single-product.full-width .related ul.products > .onsale-product,
  .single-product.full-width .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .single-product.full-width .related ul.products > .onsale-product-content,
  .single-product.full-width .related .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item
  .single-product.full-width .related ul.products > .product {
    width: 33%; } }

@media (min-width: 992px) {
  .single-product.full-width .upsells ul.products > li.product, .single-product.full-width .upsells .section-onsale-product ul.products > .onsale-product, .section-onsale-product .single-product.full-width .upsells ul.products > .onsale-product, .single-product.full-width .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product.full-width .upsells ul.products > .onsale-product-content, .single-product.full-width .upsells .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item .single-product.full-width .upsells ul.products > .product,
  .single-product.full-width .related ul.products > li.product,
  .single-product.full-width .related .section-onsale-product ul.products > .onsale-product, .section-onsale-product
  .single-product.full-width .related ul.products > .onsale-product,
  .single-product.full-width .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .single-product.full-width .related ul.products > .onsale-product-content,
  .single-product.full-width .related .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item
  .single-product.full-width .related ul.products > .product {
    width: 20%; } }

.accessories .col-left {
  padding-left: 0; }

.accessories .col-right {
  padding-right: 0; }

.accessories .products li.product, .accessories .products .section-onsale-product .onsale-product, .section-onsale-product .accessories .products .onsale-product, .accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content, .accessories .products .products-carousel .owl-item .product, .products-carousel .owl-item .accessories .products .product {
  margin-top: 0; }
  .accessories .products li.product::before, .accessories .products .section-onsale-product .onsale-product::before, .section-onsale-product .accessories .products .onsale-product::before, .accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content::before, .accessories .products .products-carousel .owl-item .product::before, .products-carousel .owl-item .accessories .products .product::before {
    content: '+';
    position: absolute;
    font-size: 1.714em;
    line-height: 1.458em;
    height: 1.458em;
    width: 1.458em;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    left: -0.729em;
    display: inline-block;
    text-align: center;
    transform: translateY(-50%);
    z-index: 1000; }
  .accessories .products li.product:hover .product-inner, .accessories .products .section-onsale-product .onsale-product:hover .product-inner, .section-onsale-product .accessories .products .onsale-product:hover .product-inner, .accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:hover .product-inner, .accessories .products .products-carousel .owl-item .product:hover .product-inner, .products-carousel .owl-item .accessories .products .product:hover .product-inner {
    background-color: transparent; }
  .accessories .products li.product:first-child::before, .accessories .products .section-onsale-product .onsale-product:first-child::before, .section-onsale-product .accessories .products .onsale-product:first-child::before, .accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child::before, .accessories .products .products-carousel .owl-item .product:first-child::before, .products-carousel .owl-item .accessories .products .product:first-child::before {
    content: none; }
  .accessories .products li.product:first-child a, .accessories .products .section-onsale-product .onsale-product:first-child a, .section-onsale-product .accessories .products .onsale-product:first-child a, .accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child a, .accessories .products .products-carousel .owl-item .product:first-child a, .products-carousel .owl-item .accessories .products .product:first-child a {
    color: #64686c; }
  .accessories .products li.product:first-child h3, .accessories .products .section-onsale-product .onsale-product:first-child h3, .section-onsale-product .accessories .products .onsale-product:first-child h3, .accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child h3, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child h3, .accessories .products .products-carousel .owl-item .product:first-child h3, .products-carousel .owl-item .accessories .products .product:first-child h3 {
    font-weight: normal; }
  .accessories .products li.product:first-child .price, .accessories .products .section-onsale-product .onsale-product:first-child .price, .section-onsale-product .accessories .products .onsale-product:first-child .price, .accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child .price, .accessories .products .products-carousel .owl-item .product:first-child .price, .products-carousel .owl-item .accessories .products .product:first-child .price {
    color: #9fa0a0; }

.accessories .products li:hover .hover-area {
  display: none; }

.accessories .products .price-add-to-cart {
  margin-bottom: 0; }
  .accessories .products .price-add-to-cart .price {
    margin-bottom: 0; }
  .accessories .products .price-add-to-cart .button {
    display: none; }

.accessories .total-price {
  font-size: 1em;
  color: #848484;
  margin-bottom: 1em; }
  .accessories .total-price .total-price-html {
    display: block;
    font-size: 1.857em;
    color: #ee0000; }

.accessories .accessory-checkbox {
  font-size: 1em;
  line-height: 1.286em;
  color: #0062bd;
  margin-bottom: 0.857em; }
  .accessories .accessory-checkbox .product-title {
    border-bottom: 1px solid #0062bd; }
  .accessories .accessory-checkbox:first-child {
    color: #686c6f; }
    .accessories .accessory-checkbox:first-child .product-title {
      border-bottom: 0; }
  .accessories .accessory-checkbox .accessory-price {
    font-size: 1.143em;
    line-height: 1.125em;
    color: #ee0000; }

.accessories .add-all-to-cart.btn, .accessories .add-all-to-cart.hero-action-btn {
  padding: 0.572em 2.029em;
  color: #fff; }

.full-width.single-product .accessories .products {
  margin-top: -1.429em;
  margin-left: -1.429em; }

.gt-description {
  margin-bottom: 8.571em; }
  .gt-description > *:last-child {
    margin-bottom: 0; }

.product_meta > span {
  font-weight: bold;
  color: #686c6f; }
  .product_meta > span span, .product_meta > span a {
    font-weight: normal; }
  .product_meta > span + span::before {
    content: '/';
    color: #c5c5c5;
    margin: 0 1.571em; }

.gt-tabs {
  background-color: #f9f9f9;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  padding: 2.857em 0;
  margin-bottom: 5em; }
  .gt-tabs ~ div.products > h2,
  .gt-tabs + section.related > h2 {
    font-size: 1.786em;
    line-height: 1.6em;
    display: block;
    position: relative;
    padding-bottom: 0.400em;
    border-bottom: 1px solid #dadada;
    margin-bottom: 1.360em; }
    .gt-tabs ~ div.products > h2::after,
    .gt-tabs + section.related > h2::after {
      content: ' ';
      border-bottom: 2px solid transparent;
      display: block;
      width: 20%;
      position: absolute;
      bottom: -1px; }
  .gt-tabs ~ div.products ul.products,
  .gt-tabs + section.related ul.products {
    margin-bottom: 0; }
  .gt-tabs .gt-tab {
    margin-bottom: 3.357em; }
    .gt-tabs .gt-tab:last-child {
      margin-bottom: 0; }
    .gt-tabs .gt-tab .tab-content {
      background-color: #fff;
      padding: 2.571em 8.3333%; }
  .gt-tabs .ec-tabs {
    text-align: center;
    margin-bottom: 4.571em;
    border-bottom: 1px solid #ddd;
    margin-left: -2em;
    margin-right: -2em; }

.onsale {
  display: inline-block;
  margin-top: 16px;
  padding: 2px 10px;
  margin-left: 15px;
  background: #ee0000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold; }

.normal.single-product .quantity.buttons_added .minus, .normal.single-product .quantity.buttons_added .plus {
  bottom: 0.857em;
  right: 0.857em; }

.normal.single-product .quantity.buttons_added .plus {
  right: 2.286em; }

#tab-specification h1, #tab-specification h2, #tab-specification h3, #tab-specification h4, #tab-specification h5, #tab-specification h6 {
  font-size: 1.286em;
  line-height: 1.043em;
  color: #0d244d;
  margin-bottom: 1em; }

#tab-specification table.shop_attributes tbody tr:nth-of-type(2n+1) {
  background-color: transparent; }

#tab-specification table, #tab-specification table.shop_attributes {
  margin-bottom: 5em; }
  #tab-specification table:last-child, #tab-specification table.shop_attributes:last-child {
    margin-bottom: 0; }
  #tab-specification table tr th, #tab-specification table tr td, #tab-specification table.shop_attributes tr th, #tab-specification table.shop_attributes tr td {
    padding: 7px 30px;
    font-size: 14px; }
  #tab-specification table tr th, #tab-specification table.shop_attributes tr th {
    font-weight: bold; }
  #tab-specification table tr th, #tab-specification table tr td:first-child, #tab-specification table.shop_attributes tr th, #tab-specification table.shop_attributes tr td:first-child {
    width: 30%; }
  #tab-specification table tr:first-child th, #tab-specification table tr:first-child td, #tab-specification table.shop_attributes tr:first-child th, #tab-specification table.shop_attributes tr:first-child td {
    padding-top: 0;
    border-top: none; }

.single-product-wrapper table.group_table tr {
  border-top: 1px solid #eceeef; }
  .single-product-wrapper table.group_table tr:last-child {
    border-bottom: 1px solid #eceeef; }

.single-product-wrapper table.group_table td {
  border: none;
  display: table-cell;
  vertical-align: middle; }

.single-product-wrapper table.group_table .price {
  text-align: right;
  font-size: 1.5em; }

.single-product-wrapper table.group_table .label {
  display: table-cell;
  vertical-align: middle;
  white-space: normal; }
  .single-product-wrapper table.group_table .label label {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 0; }

.single-product-wrapper table.group_table .quantity {
  width: 100px; }

.text-boxes h3.highlight, .text-boxes h2,
.wpb-accordion h3.highlight,
.wpb-accordion h2 {
  font-size: 1.286em;
  line-height: 1.000em;
  color: #434343;
  margin-bottom: 1.667em;
  font-weight: 600; }

.text-boxes h2,
.wpb-accordion h2 {
  margin-bottom: 1.222em; }

.wpb-accordion .vc_tta-container {
  padding-left: 50px; }

.wpb-accordion .vc_tta.vc_general .vc_tta-panel {
  margin-bottom: 20px; }
  .wpb-accordion .vc_tta.vc_general .vc_tta-panel:last-child {
    margin-bottom: 0; }

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading,
.wpb-accordion .vc_tta.vc_general .vc_tta-panel-body {
  border: none; }

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title {
  font-size: 1.286em;
  line-height: 1.556em;
  letter-spacing: 0.01em; }
  .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a {
    padding: 0.333em 0;
    text-align: left; }
    .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a span {
      color: #797979;
      margin-left: 3.333em; }
    .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a i {
      color: #b5b5b5 !important;
      background: transparent;
      border-radius: 3px;
      display: block;
      height: 2.056em;
      width: 2.056em;
      left: 0;
      border: 1px solid #b5b5b5; }
      .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a i:before {
        left: 50%;
        right: 0;
        transform: translate(-50%, -50%);
        width: 0.556em;
        border-color: #b5b5b5; }
      .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title > a i:after {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        height: 0.556em;
        border-color: #b5b5b5; }

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:hover, .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:focus {
  background: #fff !important; }
  .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:hover .vc_tta-panel-title > a span, .wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:focus .vc_tta-panel-title > a span {
    color: #000; }

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-body {
  padding: 1em 2em 1em 4.214em; }

.wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
  font-weight: 700; }
  .wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title > a span {
    color: #0d244d; }
  .wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title > a i:before {
    border-color: #0d244d; }

.about-features {
   }
  .about-features h2 {
    font-size: 1.286em;
    line-height: 1.000em;
    font-weight: 600;
    margin-bottom: 1.556em; }

.team-member-wrapper {
  padding: 6.429em 0; }
  .team-member-wrapper a.team-member {
    color: #0d244d;
    display: block; }
  .team-member-wrapper .team-member img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    display: block; }
  .team-member-wrapper .team-member .profile {
    text-align: center; }
    .team-member-wrapper .team-member .profile h3 {
      font-size: 1.286em;
      line-height: 1.556em;
      font-weight: 600;
      padding-top: 0.833em;
      padding-bottom: 0;
      margin-bottom: 0; }
      .team-member-wrapper .team-member .profile h3 small {
        display: block;
        font-size: 14px;
        line-height: 1.7em;
        color: #989898; }

.faq-page-title {
  padding-bottom: 0.880em;
  border-bottom: 1px solid #dadada;
  margin-bottom: 1.600em;
  margin-top: 1.000em; }

h3.faq-title {
  font-size: 1.143em;
  line-height: 2.500em;
  font-weight: 700;
  color: #434343;
  margin-bottom: 1.250em; }

.text-content p {
  color: #434343; }

.faq-accordion.vc_tta.vc_general .vc_tta-panel-heading,
.faq-accordion.vc_tta.vc_general .vc_tta-panel-body {
  border: none !important; }

.faq-accordion.vc_tta.vc_general .vc_tta-panel:first-child .vc_tta-panel-title {
  border-top: none; }

.faq-accordion.vc_tta.vc_general .vc_tta-panel-heading, .faq-accordion.vc_tta.vc_general .vc_tta-panel-heading:hover, .faq-accordion.vc_tta.vc_general .vc_tta-panel-heading:focus {
  background: #fff !important; }

.faq-accordion.vc_tta.vc_general .vc_tta-panel-title {
  font-size: 1.786em;
  border-top: 1px solid #ddd; }
  .faq-accordion.vc_tta.vc_general .vc_tta-panel-title > a {
    color: #434343 !important;
    padding: 1.12em 0.8em 1.12em 0; }
    .faq-accordion.vc_tta.vc_general .vc_tta-panel-title > a i.vc_tta-controls-icon {
      width: 15px;
      height: 15px; }

.faq-accordion.vc_tta.vc_general .vc_tta-panel-body {
  color: #747474;
  background: transparent !important;
  padding: 1em 1.429em 4.286em 0; }

.entry-content .vc_toggle {
  margin: 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0; }
  .entry-content .vc_toggle .vc_toggle_title {
    padding: 25px 0 !important; }
    .entry-content .vc_toggle .vc_toggle_title h4 {
      font-size: 1.786em;
      color: #434343 !important;
      margin: 0; }
      .entry-content .vc_toggle .vc_toggle_title h4:after {
        font-family: 'FontAwesome';
        float: right;
        content: "\f107";
        font-size: 28px; }
    .entry-content .vc_toggle .vc_toggle_title .vc_toggle_icon {
      display: none; }
  .entry-content .vc_toggle .vc_toggle_content {
    color: #747474;
    padding: 1em 1.429em 3.143em 0 !important;
    margin-top: 0;
    margin-bottom: 0; }
  .entry-content .vc_toggle.vc_toggle_active .vc_toggle_title h4:after {
    font-family: 'FontAwesome';
    content: "\f106"; }
  .entry-content .vc_toggle:last-child {
    border-bottom: none; }

.table-compare {
  border: 1px solid #d7d7d7;
  margin-bottom: 3.75em; }
  .table-compare .product-title {
    font-size: 1.071em;
    line-height: 1.286em;
    font-weight: bold;
    color: #0062bd; }
  .table-compare tbody tr th {
    text-transform: uppercase;
    background-color: #f1f1f1;
    vertical-align: middle;
    text-align: center; }
  .table-compare tbody tr th, .table-compare tbody tr td {
    border: 1px solid #d7d7d7; }
  .table-compare tbody tr td {
    vertical-align: middle;
    text-align: center;
    padding: 1em; }
    .table-compare tbody tr td .in-stock, .table-compare tbody tr td .out-of-stock {
      font-size: 0.6875rem;
      padding: 4px 0.625rem;
      letter-spacing: 0.6px;
      text-transform: uppercase; }
    .table-compare tbody tr td .in-stock {
      border: 1px solid #1abc9c;
      color: #1abc9c; }
    .table-compare tbody tr td .out-of-stock {
      border: 1px solid #e74c3c;
      color: #e74c3c; }
    .table-compare tbody tr td .product-image, .table-compare tbody tr td .star-rating {
      display: inline-block; }
  .table-compare tbody tr:first-child td {
    vertical-align: top;
    width: 22%; }
  .table-compare tbody .button {
    padding: 0.6em 2em; }
  .table-compare tbody .price {
    font-size: 1.3em; }
    .table-compare tbody .price ins {
      text-decoration: none; }
    .table-compare tbody .price del {
      color: #5d7184;
      font-size: 0.875rem; }

.contact-page-title {
  font-size: 1.786em;
  color: #0d244d;
  padding-bottom: 0.600em;
  position: relative;
  border-bottom: 1px solid #dadada;
  margin-bottom: 1.200em; }
  .contact-page-title:after {
    content: ' ';
    width: 4.560em;
    border-bottom: 2px solid transparent;
    display: block;
    position: absolute;
    bottom: -1px; }

.store-info h3 {
  font-size: 1.000em;
  font-weight: 700;
  color: #0d244d;
  padding-top: 2.143em;
  padding-bottom: 0.714em; }

.store-info a {
  text-decoration: underline; }

.store-info iframe {
  filter: grayscale(100%); }
  .store-info iframe:hover {
    filter: grayscale(0%); }

.contact-form.vc_column_container .vc_column-inner {
  padding-right: 70px; }

.contact-form .form-group {
  margin-bottom: 1.714em; }

.store-info.vc_column_container .vc_column-inner {
  padding-left: 0;
  padding-right: 0; }

.store-info.store-info-v2.vc_column_container .vc_column-inner {
  padding-left: 15px;
  padding-right: 0; }

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0 !important; }

.info-404 .search-field {
  width: 40%; }

.gt-store-directory .widget_product_categories .product-categories, .gt-store-directory .widget_product_categories > ul {
  border: 0;
  /* (indentation/2) */ }
  .gt-store-directory .widget_product_categories .product-categories::after, .gt-store-directory .widget_product_categories > ul::after {
    content: "";
    display: table;
    clear: both; }
  .gt-store-directory .widget_product_categories .product-categories > li > a, .gt-store-directory .widget_product_categories > ul > li > a {
    font-weight: 700; }
  .gt-store-directory .widget_product_categories .product-categories > li .children, .gt-store-directory .widget_product_categories > ul > li .children {
    display: block !important; }
    .gt-store-directory .widget_product_categories .product-categories > li .children .no-child, .gt-store-directory .widget_product_categories > ul > li .children .no-child {
      display: none; }
  .gt-store-directory .widget_product_categories .product-categories:not(.product-categories), .gt-store-directory .widget_product_categories > ul:not(.product-categories) {
    float: left;
    width: 25%;
    margin: 0; }
  .gt-store-directory .widget_product_categories .product-categories .child-indicator, .gt-store-directory .widget_product_categories .product-categories .no-child, .gt-store-directory .widget_product_categories > ul .child-indicator, .gt-store-directory .widget_product_categories > ul .no-child {
    display: none; }
  .gt-store-directory .widget_product_categories .product-categories li, .gt-store-directory .widget_product_categories > ul li {
    border: none; }
  .gt-store-directory .widget_product_categories .product-categories,
  .gt-store-directory .widget_product_categories .product-categories ul, .gt-store-directory .widget_product_categories > ul,
  .gt-store-directory .widget_product_categories > ul ul {
    margin: 0 0 0 1em;
    /* indentation */
    padding: 0;
    list-style: none;
    color: #369;
    position: relative; }
  .gt-store-directory .widget_product_categories .product-categories ul, .gt-store-directory .widget_product_categories > ul ul {
    margin-left: .5em; }
  .gt-store-directory .widget_product_categories .product-categories:before,
  .gt-store-directory .widget_product_categories .product-categories ul:before, .gt-store-directory .widget_product_categories > ul:before,
  .gt-store-directory .widget_product_categories > ul ul:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 1px solid #ddd; }
  .gt-store-directory .widget_product_categories .product-categories li, .gt-store-directory .widget_product_categories > ul li {
    margin: 0;
    padding: 0 1.5em;
    /* indentation + .5em */
    line-height: 2em;
    /* default list item's `line-height` */
    position: relative; }
  .gt-store-directory .widget_product_categories .product-categories li:before, .gt-store-directory .widget_product_categories > ul li:before {
    content: "";
    display: block;
    width: 10px;
    /* same with indentation */
    height: 0;
    border-top: 1px solid #ddd;
    margin-top: -1px;
    /* border top width */
    position: absolute;
    top: 1.571em;
    /* (line-height/2) */
    left: 0; }
  .gt-store-directory .widget_product_categories .product-categories li:last-child:before, .gt-store-directory .widget_product_categories > ul li:last-child:before {
    background: white;
    /* same with body background */
    height: auto;
    top: 1em;
    /* (line-height/2) */
    bottom: 0; }

/*===================================================================================*/
/*  YITH Wishlist
/*===================================================================================*/
.wishlist-title {
  text-align: center;
  padding: 40px 0; }
  .wishlist-title h2 {
    font-size: 40px;
    line-height: 50px;
    color: #434343; }

.yith-wcwl-add-button img,
.yith-wcwl-wishlistexistsbrowse .feedback,
#yith-wcwl-popup-message {
  display: none !important; }

.yith-wcwl-wishlistaddedbrowse .feedback {
  cursor: pointer; }
  .yith-wcwl-wishlistaddedbrowse .feedback:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 5px;
    content: ""; }

.yith-wcwl-wishlistaddedbrowse > a {
  display: none; }

/*.add_to_wishlist::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  content: ""; }*/

.yith-wcwl-wishlistexistsbrowse > a::before {
  color: #F22613;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  content: ""; }

.yith-wcwl-share .yith-wcwl-share-title {
  margin: 0; }

.yith-wcwl-share > ul {
  padding-left: 0 !important; }

.shop_table.wishlist_table > tbody > tr > th,
.shop_table.wishlist_table > tbody > tr > td,
.shop_table.wishlist_table > tfoot > tr > th,
.shop_table.wishlist_table > tfoot > tr > td {
  vertical-align: middle; }

.shop_table.wishlist_table .mc-price-wrapper > ins {
  float: left;
  margin-right: 10px; }

.shop_table.wishlist_table .mc-price-wrapper > del, .shop_table.wishlist_table .mc-price-wrapper > del .amount {
  font-size: 90%; }

.yith-wcwl-share {
  margin-top: 10px; }
  .yith-wcwl-share h4 {
    line-height: 27px;
    padding-bottom: 11px;
    font-weight: bold;
    font-size: 18px; }
  .yith-wcwl-share ul > li > a {
    line-height: 1;
    font-family: FontAwesome;
    font-style: normal; }
  .yith-wcwl-share ul > li {
    padding-right: 10px; }
  .yith-wcwl-share .facebook:before {
    content: "";
    color: #3b5998; }
  .yith-wcwl-share .twitter:before {
    content: "";
    color: #00aced; }
  .yith-wcwl-share .pinterest:before {
    content: "";
    color: #cb2027; }
  .yith-wcwl-share .googleplus:before {
    content: "";
    color: #dd4b39; }
  .yith-wcwl-share .email:before {
    content: "";
    color: #0d244d; }

.btn-add-to-wishlist i {
  margin: 0 5px 0 0;
  color: #c6c6c6;
  transition: 0.3s, ease; }

.yith-wcwl-add-button > a i,
.wishlist_table .add_to_cart.button i {
  margin-right: 5px !important; text-indent:0; color:#e6e6e6; font-size:18px; }

 .yith-wcwl-add-button > a i:hover,
.wishlist_table .add_to_cart.button i:hover {
  color:#ff0000; font-weight:600; } 
  

.add-to-compare-link {
  padding: 0;
  border-radius: 0;
  font-weight: normal; }
  .add-to-compare-link::before {
    font: normal normal normal 14px/1 font-gt;
    margin-right: 6px;
    content: "\64";
    vertical-align: middle; }
  .add-to-compare-link.added::before {
    content: "";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 5px; }

.btn-add-to-compare i {
  margin: 0 5px 0 0;
  color: #c6c6c6;
  transition: 0.3s, ease; }

.yith-woocommerce-ajax-product-filter small.count {
  margin-left: 5px; }
  .yith-woocommerce-ajax-product-filter small.count:before {
    content: '('; }
  .yith-woocommerce-ajax-product-filter small.count:after {
    content: ')'; }

.yith-woocommerce-ajax-product-filter ul.yith-wcan-color li > a {
  padding: 0 !important; }
  .yith-woocommerce-ajax-product-filter ul.yith-wcan-color li > a::before {
    content: none; }

.yith-woocommerce-ajax-product-filter ul:not(.yith-wcan-color) li > span {
  color: #0d244d;
  padding: .571em 0 .643em;
  display: inline-block; }
  .yith-woocommerce-ajax-product-filter ul:not(.yith-wcan-color) li > span::before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f096";
    margin-right: .571em;
    font-size: 1.143em;
    line-height: 22px;
    vertical-align: middle;
    color: #dfdfdf; }

.mc4wp-response {
  color: #fff;
  padding: 10px; }

.tm-extra-product-options .tm-epo-field-label {
  padding-bottom: 15px;
  font-weight: 500;
  text-transform: capitalize; }

.tm-extra-product-options .cpf-type-header > h1,
.tm-extra-product-options .cpf-type-header > h2,
.tm-extra-product-options .cpf-type-header > h3,
.tm-extra-product-options .cpf-type-header > h4,
.tm-extra-product-options .cpf-type-header > h5,
.tm-extra-product-options .cpf-type-header > h6,
.tm-extra-product-options .cpf-type-header > label,
.tm-extra-product-options .cpf-type-date > h1,
.tm-extra-product-options .cpf-type-date > h2,
.tm-extra-product-options .cpf-type-date > h3,
.tm-extra-product-options .cpf-type-date > h4,
.tm-extra-product-options .cpf-type-date > h5,
.tm-extra-product-options .cpf-type-date > h6,
.tm-extra-product-options .cpf-type-date > label,
.tm-extra-product-options .cpf-type-time > h1,
.tm-extra-product-options .cpf-type-time > h2,
.tm-extra-product-options .cpf-type-time > h3,
.tm-extra-product-options .cpf-type-time > h4,
.tm-extra-product-options .cpf-type-time > h5,
.tm-extra-product-options .cpf-type-time > h6,
.tm-extra-product-options .cpf-type-time > label,
.tm-extra-product-options .cpf-type-range > h1,
.tm-extra-product-options .cpf-type-range > h2,
.tm-extra-product-options .cpf-type-range > h3,
.tm-extra-product-options .cpf-type-range > h4,
.tm-extra-product-options .cpf-type-range > h5,
.tm-extra-product-options .cpf-type-range > h6,
.tm-extra-product-options .cpf-type-range > label,
.tm-extra-product-options .cpf-type-textfield > h1,
.tm-extra-product-options .cpf-type-textfield > h2,
.tm-extra-product-options .cpf-type-textfield > h3,
.tm-extra-product-options .cpf-type-textfield > h4,
.tm-extra-product-options .cpf-type-textfield > h5,
.tm-extra-product-options .cpf-type-textfield > h6,
.tm-extra-product-options .cpf-type-textfield > label,
.tm-extra-product-options .cpf-type-textarea > h1,
.tm-extra-product-options .cpf-type-textarea > h2,
.tm-extra-product-options .cpf-type-textarea > h3,
.tm-extra-product-options .cpf-type-textarea > h4,
.tm-extra-product-options .cpf-type-textarea > h5,
.tm-extra-product-options .cpf-type-textarea > h6,
.tm-extra-product-options .cpf-type-textarea > label,
.tm-extra-product-options .cpf-type-upload > h1,
.tm-extra-product-options .cpf-type-upload > h2,
.tm-extra-product-options .cpf-type-upload > h3,
.tm-extra-product-options .cpf-type-upload > h4,
.tm-extra-product-options .cpf-type-upload > h5,
.tm-extra-product-options .cpf-type-upload > h6,
.tm-extra-product-options .cpf-type-upload > label,
.tm-extra-product-options .cpf-type-select > h1,
.tm-extra-product-options .cpf-type-select > h2,
.tm-extra-product-options .cpf-type-select > h3,
.tm-extra-product-options .cpf-type-select > h4,
.tm-extra-product-options .cpf-type-select > h5,
.tm-extra-product-options .cpf-type-select > h6,
.tm-extra-product-options .cpf-type-select > label,
.tm-extra-product-options .cpf-type-radio > h1,
.tm-extra-product-options .cpf-type-radio > h2,
.tm-extra-product-options .cpf-type-radio > h3,
.tm-extra-product-options .cpf-type-radio > h4,
.tm-extra-product-options .cpf-type-radio > h5,
.tm-extra-product-options .cpf-type-radio > h6,
.tm-extra-product-options .cpf-type-radio > label,
.tm-extra-product-options .cpf-type-checkbox > h1,
.tm-extra-product-options .cpf-type-checkbox > h2,
.tm-extra-product-options .cpf-type-checkbox > h3,
.tm-extra-product-options .cpf-type-checkbox > h4,
.tm-extra-product-options .cpf-type-checkbox > h5,
.tm-extra-product-options .cpf-type-checkbox > h6,
.tm-extra-product-options .cpf-type-checkbox > label,
.tm-extra-product-options .cpf-type-color > h1,
.tm-extra-product-options .cpf-type-color > h2,
.tm-extra-product-options .cpf-type-color > h3,
.tm-extra-product-options .cpf-type-color > h4,
.tm-extra-product-options .cpf-type-color > h5,
.tm-extra-product-options .cpf-type-color > h6,
.tm-extra-product-options .cpf-type-color > label {
  padding-bottom: 15px;
  font-weight: 500;
  text-transform: capitalize; }

.tm-extra-product-options .cpf-type-radio ul li label,
.tm-extra-product-options .cpf-type-checkbox ul li label {
  font-weight: 400;
  margin-bottom: 0;
  width: 100%; }
  .tm-extra-product-options .cpf-type-radio ul li label input.tm-epo-field.tmcp-checkbox,
  .tm-extra-product-options .cpf-type-checkbox ul li label input.tm-epo-field.tmcp-checkbox {
    vertical-align: bottom; }
  .tm-extra-product-options .cpf-type-radio ul li label .tc-label,
  .tm-extra-product-options .cpf-type-checkbox ul li label .tc-label {
    text-transform: capitalize; }

.tm-extra-product-options .cpf-type-radio ul li .price.tc-price span.amount,
.tm-extra-product-options .cpf-type-checkbox ul li .price.tc-price span.amount {
  padding-left: 13px !important;
  color: #7e7e7e; }

.tm-extra-product-options .cpf-type-color .sp-replacer {
  padding: 12px 12px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid #ddd; }
  .tm-extra-product-options .cpf-type-color .sp-replacer:hover {
    border-color: #ddd; }

.tm-extra-product-options .tm-quantity input {
  padding: .5em 1em;
  border-radius: 1em;
  border: 1px solid #ddd; }
  .tm-extra-product-options .tm-quantity input:focus {
    outline: none; }

.tm-extra-product-options .cpf-type-range .tm-range-picker {
  background-color: #dcdcdc;
  height: 7px;
  box-shadow: none;
  border-radius: 0;
  margin-left: 5px; }
  .tm-extra-product-options .cpf-type-range .tm-range-picker .noUi-origin {
    background-color: #dcdcdc;
    height: 6px; }
    .tm-extra-product-options .cpf-type-range .tm-range-picker .noUi-origin .noUi-handle {
      border-width: 3px;
      background-color: #fff;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      top: -7px;
      left: -6px; }
      .tm-extra-product-options .cpf-type-range .tm-range-picker .noUi-origin .noUi-handle:before, .tm-extra-product-options .cpf-type-range .tm-range-picker .noUi-origin .noUi-handle:after {
        display: none; }
  .tm-extra-product-options .cpf-type-range .tm-range-picker .noUi-pips-horizontal {
    padding: 15px 0; }

.tm-extra-product-options .cpf-type-select select,
.tm-extra-product-options .cpf-type-date select {
  text-transform: capitalize;
  padding: .375rem 1.75rem .375rem .75rem;
  border: 1px solid #ddd;
  border-radius: 1.071em;
  color: #7e7e7e;
  background-color: #fff;
  font-weight: 400;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 2;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) right 0.75rem center/8px 10px no-repeat #fff; }
  .tm-extra-product-options .cpf-type-select select:focus,
  .tm-extra-product-options .cpf-type-date select:focus {
    outline-color: #fff; }

.tm-extra-product-options .cpf-type-date .tm-extra-product-options-date .ui-tm-datepicker-trigger {
  padding: 0 1.2em !important;
  border-color: #ddd; }
  .tm-extra-product-options .cpf-type-date .tm-extra-product-options-date .ui-tm-datepicker-trigger:active {
    border-left: 1px solid #ddd; }

.tm-extra-product-options .tmcp-field-wrap .price.tc-price del {
  font-size: 12px !important; }

.tm-extra-product-options .tmcp-field-wrap .price.tc-price ins {
  font-size: 14px; }

.tm-extra-product-options .tmcp-field-wrap .price.tc-price > span.amount {
  font-size: 14px !important; }

.tm-extra-product-options .nopadding .tm-cell.cpf-section {
  padding: 5px; }

.tm-extra-product-options .cpf-type-textarea .tm-extra-product-options-container ul li.tmcp-field-wrap > label {
  display: none !important; }

.tm-extra-product-options .tm-epo-required {
  font-size: 16px;
  vertical-align: top;
  padding-right: 2px; }

.tm-extra-product-options li.tm-extra-product-options-field .section_popup {
  margin-bottom: 10px; }
  .tm-extra-product-options li.tm-extra-product-options-field .section_popup a {
    padding: 5px 20px;
    border-radius: 3px;
    color: #0d244d;
    font-size: 17px;
    background-color: #ddd;
    text-transform: capitalize; }
    .tm-extra-product-options li.tm-extra-product-options-field .section_popup a:hover {
      color: #000;
      background-color: #efecec; }
    .tm-extra-product-options li.tm-extra-product-options-field .section_popup a:before {
      content: '\f040';
      font-family: FontAwesome;
      font-weight: 300;
      padding-right: 4px; }

.tm-extra-product-options li.tm-extra-product-options-field .tm-section-pop-up .header h3 {
  text-transform: capitalize;
  letter-spacing: inherit; }

.tm-extra-product-options li.tm-extra-product-options-field .tm-section-pop-up .footer .tm-button.button {
  line-height: 32px !important; }

.tm-extra-product-options li.tm-extra-product-options-field .tm-owl-slider-section .owl-carousel .owl-nav .owl-prev {
  margin-right: 10px; }

.tm-extra-product-options li.tm-extra-product-options-field .tm-owl-slider-section .owl-carousel .owl-nav .button {
  padding: 8px 30px; }

.tm-extra-product-options li.tm-extra-product-options-field .cpf-section .tm-collapse > h1.tm-toggle,
.tm-extra-product-options li.tm-extra-product-options-field .cpf-section .tm-collapse > h2.tm-toggle,
.tm-extra-product-options li.tm-extra-product-options-field .cpf-section .tm-collapse > h3.tm-toggle,
.tm-extra-product-options li.tm-extra-product-options-field .cpf-section .tm-collapse > h4.tm-toggle,
.tm-extra-product-options li.tm-extra-product-options-field .cpf-section .tm-collapse > h5.tm-toggle,
.tm-extra-product-options li.tm-extra-product-options-field .cpf-section .tm-collapse > h6.tm-toggle,
.tm-extra-product-options li.tm-extra-product-options-field .cpf-section .tm-collapse > label.tm-toggle {
  padding-bottom: 0; }

.extended .tm-extra-product-options .tm-extra-product-options-field .col-1,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-2,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-3,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-4,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-5,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-6,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-7,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-8,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-9,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-10,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-11,
.extended .tm-extra-product-options .tm-extra-product-options-field .col-12 {
  width: 100%; }

li.cpf_hide_element.tm-extra-product-options-field .tm-epo-field-label {
  padding-bottom: 0;
  font-weight: 500;
  font-size: 20px; }

li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-checkbox li,
li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-radio li {
  padding-top: .5em; }
  li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-checkbox li label,
  li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-radio li label {
    width: 100%;
    margin-bottom: 0; }
  li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-checkbox li .price.tc-price span.amount,
  li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-radio li .price.tc-price span.amount {
    padding-left: 13px !important;
    color: #7e7e7e; }

li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-select select {
  padding: .375rem 1.75rem .375rem .75rem;
  border: 1px solid #ddd;
  border-radius: 1.071em;
  color: #7e7e7e;
  background-color: #fff;
  font-weight: 400;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 2;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) right 0.75rem center/8px 10px no-repeat #fff; }
  li.cpf_hide_element.tm-extra-product-options-field .tm-extra-product-options-container .tm-extra-product-options-select select:focus {
    outline-color: #fff; }

.single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals dd,
  .single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals dt {
    width: 50%;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #ddd;
    padding: 10px 0; }
  .single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals dt {
    font-size: 1em; }
  .single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals dd {
    text-align: right;
    font-weight: 700;
    font-size: 1em; }
    .single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals dd span.price.amount.options,
    .single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals dd span.price.amount.final {
      margin: 0;
      font-size: 1.2em; }
  .single-product:not(.extended) .tm-totals-form-main dl.tm-extra-product-options-totals .tm-options-totals {
    margin-bottom: 30px; }

.single-product.extended dd.tm-options-totals {
  border-bottom: 1px solid #ddd;
  padding-bottom: 11px;
  margin-bottom: 10px; }

form table.cart a.tm-cart-edit-options {
  padding: 2px 10px;
  border-radius: 3px;
  color: #0d244d;
  font-size: 12px;
  background-color: #d3d3d3; }
  form table.cart a.tm-cart-edit-options:hover {
    color: #000;
    background-color: #efecec; }
  form table.cart a.tm-cart-edit-options:before {
    content: '\f040';
    font-family: FontAwesome;
    font-weight: 300;
    padding-right: 4px; }

form table.cart dd.variation-optionscheckbox .cpf-data-on-cart {
  border: none; }

form table.woocommerce-checkout-review-order-table dd.variation-optionscheckbox .cpf-data-on-cart,
ul .dropdown-menu-mini-cart dd.variation-optionscheckbox .cpf-data-on-cart {
  border: none; }

ul .dropdown-menu-mini-cart a.tm-cart-edit-options {
  padding: 2px 10px;
  border-radius: 3px;
  color: #0d244d;
  font-size: 12px;
  background-color: #ddd;
  display: flex;
  width: 37%;
  margin-top: 5px; }
  ul .dropdown-menu-mini-cart a.tm-cart-edit-options:hover {
    color: #000;
    background-color: #efecec; }
  ul .dropdown-menu-mini-cart a.tm-cart-edit-options:before {
    content: '\f040';
    font-family: FontAwesome;
    font-weight: 300;
    padding-right: 4px; }

.sp-container {
  border-color: #ddd;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2); }

.product-thumbnail .container-image-and-badge {
  position: static; }

/*===================================================================================*/
/*	RESPONSIVE XS SCREEN
/*===================================================================================*/
@media (max-width: 767px) {
  /*upto 544*/
  #content {
    margin-bottom: 5.714em; }
  /*........Header........*/
  .secondary-nav .menu-item {
    display: block; }
    .secondary-nav .menu-item a {
      display: block; }
    .secondary-nav .menu-item + .menu-item {
      margin-left: 0; }
    .secondary-nav .menu-item.pull-right {
      float: left; }
  .header-support-info {
    float: none;
    text-align: center; }
    .header-support-info .media-body, .header-support-info .media-left, .header-support-info .media-right {
      display: inline-block; }
    .header-support-info .media-body {
      width: auto; }
    .header-support-info .media-left {
      padding-right: 10px;
      padding-left: 0; }
  .tp-bullets.custom {
    display: none !important; }
  .slider-sm-btn {
    padding: 7px 27px !important;
    font-size: 14px !important; }
  #tab-description .gt-description .layout tr td {
    display: inline-block;
    width: 100%; }
  #primary #tab-description .gt-description .layout tr td:last-child img {
    left: 24px;
    width: 100%; }
  #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
    right: 25px;
    width: 100%; }
  #primary #tab-description .gt-description .layout:last-child tr td:first-child {
    margin-bottom: 60px; }
  .navbar-primary .navbar-nav > .menu-item {
    float: none; }
    .navbar-primary .navbar-nav > .menu-item > a {
      border-right: none; }
  .navbar-primary button.navbar-toggler:focus, .navbar-primary button.navbar-toggler:hover {
    background: transparent;
    border: 1px solid transparent;
    padding: 0.5rem 0.75rem;
    line-height: 1; }
  .page-template-template-homepage-v2 .departments-menu > .dropdown > .dropdown-menu {
    display: none; }
  .page-template-template-homepage-v2 .departments-menu > .dropdown.open > .dropdown-menu {
    display: block; }
  .site-header .handheld-header .header-logo {
    text-align: left;
    width: 80%; }
  .site-header .handheld-header .header-logo, .site-header .handheld-header .handheld-navigation-wrapper {
    display: inline-block; }
  .site-header .handheld-header .handheld-navigation-wrapper {
    width: 16%; }
  .header-v1 + .navbar-primary,
  .header-v1 + .sticky-wrapper > .navbar-primary,
  .header-v3 + .navbar-primary,
  .header-v3 + .sticky-wrapper > .navbar-primary {
    padding: 0.358em 1rem; }
  .primary-nav .navbar-toggler {
    position: absolute;
    right: 1.071em;
    top: 0.400em;
    border: 1px solid #ddd;
    padding: 0.4rem 0.75rem 0.6rem; }
  .primary-nav .nav-inline > .menu-item {
    display: block; }
    .primary-nav .nav-inline > .menu-item.dropdown + .menu-item {
      margin-left: 0; }
    .primary-nav .nav-inline > .menu-item + .menu-item {
      margin-left: 0; }
    .primary-nav .nav-inline > .menu-item > a {
      display: block;
      padding: 0.6em 0.800em; }
  .primary-nav .nav-inline .yamm-fw .dropdown-menu {
    width: 100%; }
  .departments-menu .menu-item-has-children a[data-toggle="dropdown"]:after, .departments-menu .menu-item-has-children a[data-toggle="dropdown-hover"]:after,
  .vertical-menu .menu-item-has-children a[data-toggle="dropdown"]:after,
  .vertical-menu .menu-item-has-children a[data-toggle="dropdown-hover"]:after {
    transform: rotate(90deg); }
  .departments-menu .menu-item-has-children > .dropdown-menu > li.menu-item:not(.menu-item-object-static_block) {
    width: 100%; }
  /*........Header Menu Dropdown........*/
  .navbar-primary #header-v3 .navbar-nav .menu-item.open .dropdown-menu {
    position: static;
    top: auto;
    width: auto;
    float: none; }
  .vertical-menu .yamm-fw .dropdown-menu > li,
  .departments-menu .yamm-fw .dropdown-menu > li {
    width: 100% !important; }
  .vertical-menu .yamm-tfw .dropdown-menu > li,
  .departments-menu .yamm-tfw .dropdown-menu > li {
    width: 100% !important; }
  .vertical-menu .yamm-hw .dropdown-menu > li,
  .departments-menu .yamm-hw .dropdown-menu > li {
    width: 100% !important; }
  .vertical-menu .menu-item-has-children > .dropdown-menu,
  .departments-menu-dropdown .menu-item-has-children > .dropdown-menu {
    display: none;
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    margin: 1.429em 0;
    min-height: inherit;
    margin-top: 0; }
    .vertical-menu .menu-item-has-children > .dropdown-menu > li,
    .departments-menu-dropdown .menu-item-has-children > .dropdown-menu > li {
      min-height: inherit; }
    .vertical-menu .menu-item-has-children > .dropdown-menu:hover,
    .departments-menu-dropdown .menu-item-has-children > .dropdown-menu:hover {
      opacity: 0;
      visibility: hidden; }
    .vertical-menu .menu-item-has-children > .dropdown-menu .vc_column_container:first-child,
    .departments-menu-dropdown .menu-item-has-children > .dropdown-menu .vc_column_container:first-child {
      margin-bottom: 1.429em; }
    .vertical-menu .menu-item-has-children > .dropdown-menu .vc_column_container:last-child,
    .departments-menu-dropdown .menu-item-has-children > .dropdown-menu .vc_column_container:last-child {
      margin-bottom: 0; }
  .vertical-menu .menu-item-has-children.open > .dropdown-menu,
  .departments-menu-dropdown .menu-item-has-children.open > .dropdown-menu {
    display: block;
    position: static;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible; }
    .vertical-menu .menu-item-has-children.open > .dropdown-menu:hover,
    .departments-menu-dropdown .menu-item-has-children.open > .dropdown-menu:hover {
      opacity: 1;
      visibility: visible; }
  .vertical-menu .menu-item-has-children.open > .dropdown-backdrop,
  .departments-menu-dropdown .menu-item-has-children.open > .dropdown-backdrop {
    position: static; }
  .vertical-menu.yamm .dropdown.yamm-fw .dropdown-menu {
    left: 0; }
  .vertical-menu .dropdown:not(.list-group-item) > .dropdown-menu > li {
    width: 100%; }
  .vertical-menu .list-group-item > .dropdown.yamm-tfw .dropdown-menu > li,
  .vertical-menu .dropdown.yamm-tfw .dropdown-menu > li {
    width: 100%;
    position: relative; }
  .vertical-menu .yamm-content {
    padding: 1.143em; }
  .bg-yamm-extend-outside {
    right: 0; }
  .vertical-menu > .menu-item,
  .vertical-menu .dropdown-menu > .menu-item {
    padding: 0; }
  .yamm .yamm-content .bg-yamm-content {
    position: static;
    margin-bottom: 1.429em; }
  /*........Footer........*/
  .footer-widgets .row > div {
    margin-bottom: 5.000em; }
    .footer-widgets .row > div:last-child {
      margin-bottom: 0; }
  .footer-newsletter .newsletter-title {
    display: block;
    margin-right: 0; }
  .footer-newsletter .newsletter-marketing-text {
    margin-left: 0;
    display: block;
    text-align: center; }
  .footer-newsletter form {
    margin-top: 0.714em; }
  .footer-social-icons .social-icons > li + li {
    margin-left: 1.786em; }
  .footer-bottom-widgets .columns {
    margin-bottom: 3em;
    display: block; }
    .footer-bottom-widgets .columns + .columns {
      margin-left: 0; }
  /*........Shop Page........*/
  .woocommerce-page .page-header .woocommerce-result-count {
    position: relative; }
  .woocommerce-page .page-title {
    margin-bottom: 0.800em; }
  .shop-control-bar {
    text-align: center;
    padding: 1.071em 1.429em;
    margin-bottom: 2.143em; }
    .shop-control-bar .shop-view-switcher,
    .shop-control-bar .woocommerce-ordering,
    .shop-control-bar .form-gt-wc-ppp,
    .shop-control-bar .gt-advanced-pagination {
      float: none !important; }
    .shop-control-bar .shop-view-switcher {
      display: inline-block; }
    .shop-control-bar .woocommerce-ordering,
    .shop-control-bar .form-gt-wc-ppp {
      margin-left: 0;
      margin-bottom: 1.071em; }
  .section-product-cards-carousel .product-cards-carousel {
    overflow: hidden; }
    .section-product-cards-carousel .product-cards-carousel ul.products > li.product .product-inner .media-body, .section-product-cards-carousel .product-cards-carousel .section-onsale-product ul.products > .onsale-product .product-inner .media-body, .section-onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product .product-inner .media-body, .section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner .media-body, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product-content .product-inner .media-body, .section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item ul.products > .product .product-inner .media-body, .products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel ul.products > .product .product-inner .media-body, .section-product-cards-carousel .product-cards-carousel ul.products > li.product .product-inner .media-left, .section-product-cards-carousel .product-cards-carousel .section-onsale-product ul.products > .onsale-product .product-inner .media-left, .section-onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product .product-inner .media-left, .section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner .media-left, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product-content .product-inner .media-left, .section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item ul.products > .product .product-inner .media-left, .products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel ul.products > .product .product-inner .media-left, .section-product-cards-carousel .product-cards-carousel ul.products > li.product .product-inner .media-right, .section-product-cards-carousel .product-cards-carousel .section-onsale-product ul.products > .onsale-product .product-inner .media-right, .section-onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product .product-inner .media-right, .section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner .media-right, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product-content .product-inner .media-right, .section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item ul.products > .product .product-inner .media-right, .products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel ul.products > .product .product-inner .media-right {
      display: inline-block;
      width: 100%; }
    .section-product-cards-carousel .product-cards-carousel ul.products > li.product .product-inner .media-body, .section-product-cards-carousel .product-cards-carousel .section-onsale-product ul.products > .onsale-product .product-inner .media-body, .section-onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product .product-inner .media-body, .section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner .media-body, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product-content .product-inner .media-body, .section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item ul.products > .product .product-inner .media-body, .products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel ul.products > .product .product-inner .media-body {
      padding: 0; }
    .section-product-cards-carousel .product-cards-carousel ul.products > li.product .product-inner .media-left, .section-product-cards-carousel .product-cards-carousel .section-onsale-product ul.products > .onsale-product .product-inner .media-left, .section-onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product .product-inner .media-left, .section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner .media-left, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel ul.products > .onsale-product-content .product-inner .media-left, .section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item ul.products > .product .product-inner .media-left, .products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel ul.products > .product .product-inner .media-left {
      padding-bottom: 10px; }
  section.section-product-cards-carousel header ul.nav {
    border-top: none !important; }
  .columns-6-1 > ul.products.product-main-6-1 > li.product .product-thumbnail img, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .product-thumbnail img, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .product-thumbnail img, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .product-thumbnail img {
    height: auto; }
  .columns-6-1 > ul.products.product-main-6-1 > li.product .images .woocommerce-main-image .wp-post-image, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .images .woocommerce-main-image .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .images .woocommerce-main-image .wp-post-image, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .images .woocommerce-main-image .wp-post-image {
    height: auto; }
  .columns-6-1 > ul.products.product-main-6-1 > li.product .images .thumbnails > a, .section-onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product .images .thumbnails > a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.product-main-6-1 > .onsale-product-content .images .thumbnails > a, .products-carousel .owl-item .columns-6-1 > ul.products.product-main-6-1 > .product .images .thumbnails > a {
    width: 35px;
    height: 35px; }
  .columns-6-1 > ul.products.products-6 > li.product .price, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content .price, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product .price {
    font-size: 1.786em; }
  ul.products li.product:after, ul.products .section-onsale-product .onsale-product:after, .section-onsale-product ul.products .onsale-product:after, ul.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products .onsale-product-content:after, ul.products .products-carousel .owl-item .product:after, .products-carousel .owl-item ul.products .product:after,
  ul.products .section-onsale-product .onsale-product:after,
  .section-onsale-product ul.products .onsale-product:after,
  ul.products .products-carousel .owl-item .product:after,
  .products-carousel .owl-item .product:after {
    display: none; }
  .shop-control-bar-bottom {
    text-align: center; }
    .shop-control-bar-bottom .form-gt-wc-ppp,
    .shop-control-bar-bottom .woocommerce-result-count,
    .shop-control-bar-bottom .woocommerce-pagination {
      float: none; }
    .shop-control-bar-bottom .woocommerce-result-count {
      margin: 0.500em 0;
      margin-left: 0;
      float: none !important; }
    .shop-control-bar-bottom .woocommerce-pagination {
      text-align: center; }
      .shop-control-bar-bottom .woocommerce-pagination ul.page-numbers {
        display: inline-block; }
  .woocommerce-page .page-header .woocommerce-result-count {
    position: relative;
    top: auto;
    transform: none;
    display: inline-block; }
  .product-loop-categories {
    margin: 0; }
    .product-loop-categories .product-category {
      float: none;
      padding: 0 0 30px;
      border: 1px solid  #ddd;
      margin-bottom: 2.857em; }
      .product-loop-categories .product-category:after {
        border-right: none; }
      .product-loop-categories .product-category:hover {
        box-shadow: none; }
      .product-loop-categories .product-category:first-child {
        margin-top: 0; }
  /*........Single Product Page........*/
  .single-product .product-images-wrapper,
  .single-product .summary.entry-summary {
    margin-bottom: 2.143em; }
  .single-product.full-width .wc-tab {
    padding: 2em; }
  .wc-tabs > li,
  .ec-tabs > li {
    display: block;
    margin-bottom: 1.429em; }
    .wc-tabs > li:last-child,
    .ec-tabs > li:last-child {
      margin-bottom: 1.429em; }
    .wc-tabs > li + li,
    .ec-tabs > li + li {
      margin-left: 0; }
    .wc-tabs > li a,
    .ec-tabs > li a {
      display: inline-block; }
  .accessories .col-left {
    padding-left: 15px; }
    .accessories .col-left ul.products {
      margin-right: 0 !important; }
  .accessories .col-right {
    margin-top: 50px;
    text-align: center; }
  .accessories .add-all-to-cart.btn, .accessories .add-all-to-cart.hero-action-btn,
  .accessories .add-all-to-cart.hero-action-btn {
    padding: 0.572em 1.029em; }
  .full-width.single-product .accessories .products {
    margin-left: 0; }
  #reviews .commentlist > li img {
    margin-bottom: 1.429em; }
  .advanced-review .rating-histogram {
    margin-bottom: 2.857em; }
    .advanced-review .rating-histogram .rating-percentage-bar {
      margin-top: 0.357em; }
  .extended.full-width #primary #tab-description .gt-description .layout tr td:last-child img {
    left: 0; }
  .extended.full-width #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
    right: 0; }
  .full-width #primary #tab-description .gt-description .layout tr td:last-child img {
    left: 0; }
  .full-width #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
    right: 0; }
  /*........Cart Page........*/
  table.shop_table.shop_table_responsive thead {
    display: none; }
  table.shop_table.shop_table_responsive tr td {
    text-align: right;
    display: block; }
    table.shop_table.shop_table_responsive tr td:before {
      content: attr(data-title) ": ";
      float: left;
      font-weight: 700; }
    table.shop_table.shop_table_responsive tr td.product-thumbnail {
     float:right; }
    table.shop_table.shop_table_responsive tr td.product-thumbnail, table.shop_table.shop_table_responsive tr td.actions, table.shop_table.shop_table_responsive tr td.order-actions {
      text-align: left; }
      table.shop_table.shop_table_responsive tr td.product-thumbnail:before, table.shop_table.shop_table_responsive tr td.actions:before, table.shop_table.shop_table_responsive tr td.order-actions:before {
        display: none; }
    table.shop_table.shop_table_responsive tr td.product-remove:before {
      display: none; }
    table.shop_table.shop_table_responsive tr td.product-quantity .quantity {
      width: 100%; }
    table.shop_table.shop_table_responsive tr td.product-quantity .input-text {
      max-width: 5em; }
    table.shop_table.shop_table_responsive tr td.product-quantity .quantity.buttons_added .input-text {
      max-width: 8em; }
  table.shop_table.shop_table_responsive tr.cart_item {
    border-bottom: 1px solid #eaeaea;
    display: block;
    padding: 10px 0; }
    table.shop_table.shop_table_responsive tr.cart_item:first-child {
      padding: 0 0 10px; }
    table.shop_table.shop_table_responsive tr.cart_item:last-child {
      border-bottom: none; }
  table.shop_table.shop_table_responsive.cart tbody tr.cart_item:first-child td {
    padding-top: 1.029em; }
  table.shop_table.shop_table_responsive.cart .coupon {
    float: none; }
  table.shop_table.shop_table_responsive.cart input[name="update_cart"],
  table.shop_table.shop_table_responsive.cart button[name="update_cart"] {
    display: block;
    margin-bottom: 1.429em;
    width: 100%; }
  table.shop_table.shop_table_responsive.cart .wc-proceed-to-checkout {
    margin-left: 0; }
    table.shop_table.shop_table_responsive.cart .wc-proceed-to-checkout, table.shop_table.shop_table_responsive.cart .wc-proceed-to-checkout a {
      display: block;
      text-align: center; }
  .cart-collaterals .cart_totals table.shop_table_responsive tbody tr th {
    display: none; }
  .cart-empty {
    font-size: 2.143em; }
  /*........Checkout Page........*/
  .checkout_coupon .form-row-first .input-text {
    border-top-right-radius: 1.571em;
    border-bottom-right-radius: 1.571em; }
  .checkout_coupon .form-row-last .button {
    border-top-left-radius: 1.571em;
    border-bottom-left-radius: 1.571em; }
  .form-row.form-row-first {
    padding-right: 0; }
  .form-row.form-row-last {
    padding-left: 0; }
  #payment .payment_methods li label,
  #payment .payment_methods li input {
    display: inline; }
  #payment .terms label {
    display: inline; }
  /*........Wishlist........*/
  table.wishlist_table thead {
    display: none; }
  table.wishlist_table tbody tr {
    display: block;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.429em;
    padding-bottom: 1.429em; }
    table.wishlist_table tbody tr:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0; }
    table.wishlist_table tbody tr td {
      display: block;
      border-top: none; }
      table.wishlist_table tbody tr td.product-thumbnail {
        width: 100%; }
        table.wishlist_table tbody tr td.product-thumbnail img {
          margin: 0; }
  /*........Blog Page........*/
  article.post.format-quote,
  article.post.format-link {
    padding: 2.857em; }
  .blog-list article.post .media-attachment {
    margin-bottom: 1.429em; }
  .blog-list article.post.format-quote, .blog-list article.post.format-link {
    margin: 0 0 6.214em; }
  .entry-meta {
    clear: both; }
  .post-author-info .media .media-left {
    display: block;
    padding-right: 0; }
  .single-post article.post .entry-header h1.entry-title .comments-link {
    display: none; }
  .comment-list .comment .gravatar-wrapper, .comment-list .pingback .gravatar-wrapper,
  .pings-list .comment .gravatar-wrapper, .pings-list .pingback .gravatar-wrapper {
    display: block;
    padding-right: 0; }
  .comment-list .comment-body .comment-content,
  .pings-list .comment-body .comment-content {
    display: block;
    width: 100%;
    margin-top: 20px; }
  .comment-list .comment-body .comment-content,
  .pings-list .comment-body .comment-content {
    margin-bottom: 0; }
  /*........Contact Page........*/
  .contact-form.vc_column_container .vc_column-inner {
    padding-right: 1.071em; }
  .store-info.vc_column_container .vc_column-inner {
    padding-left: 1.071em;
    padding-right: 1.071em; }
  .store-info.store-info-v2.vc_column_container .vc_column-inner {
    padding-right: 1.071em; }
    .store-info.store-info-v2.vc_column_container .vc_column-inner .inner-left-xs {
      padding-left: 0; }
  /*........About Page ........*/
  .wpb-accordion .vc_tta-container {
    padding-left: 0; }
  /*........My Account........*/
  .no-registration-form {
    margin: 0;
    width: 100%; }
  #customer_login:before, #customer_login:after {
    display: none; }
  #customer_login .col-1 {
    padding-right: 0.9375rem;
    margin-bottom: 2.143em; }
  #customer_login .col-2 {
    padding-left: 0.9375rem; }
  .or-text {
    display: none; }
  /*........HomePage........*/
  .da-block > div {
    margin-bottom: 1.429em; }
    .da-block > div:last-child {
      margin-bottom: 0; }
  .products-carousel-tabs .nav-inline,
  .products-2-1-2 .nav-inline {
    margin-bottom: 2.143em; }
    .products-carousel-tabs .nav-inline .nav-item,
    .products-2-1-2 .nav-inline .nav-item {
      margin-bottom: 1.429em; }
      .products-carousel-tabs .nav-inline .nav-item + .nav-item,
      .products-2-1-2 .nav-inline .nav-item + .nav-item {
        margin-left: 0; }
  .products-carousel-tabs .nav-link,
  .products-2-1-2 .nav-link {
    display: inline-block; }
  .products-2-1-2 .columns-2-1-2 > ul {
    margin-bottom: 0; }
  .products-2-1-2 ul.products > li.product .hover-area, .products-2-1-2 .section-onsale-product ul.products > .onsale-product .hover-area, .section-onsale-product .products-2-1-2 ul.products > .onsale-product .hover-area, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 ul.products > .onsale-product-content .hover-area, .products-2-1-2 .products-carousel .owl-item ul.products > .product .hover-area, .products-carousel .owl-item .products-2-1-2 ul.products > .product .hover-area {
    padding-bottom: 1.071em; }
  .products-6-1 header h1, .home-v2-product-cards-carousel header h1 {
    display: block; }
  .products-carousel-with-image section header .h1,
  .products-carousel-with-image section header h1 {
    font-size: 1.7em; }
  .nav-inline .nav-item {
    display: block;
    text-align: center; }
  .nav-inline .nav-item + .nav-item,
  .nav-inline .nav-link + .nav-item {
    margin-left: 0; }
  .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product,
  .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .products-2-1-2 .columns-2-1-2 > ul.products:first-child .product, .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product,
  .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-2-1-2 .columns-2-1-2 > ul.products:last-child .product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > li.product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .products-2-1-2 .section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content,
  .products-2-1-2 .section-onsale-product .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product, .products-carousel .owl-item
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child .product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > li.product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-2-1-2 .section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content,
  .products-2-1-2 .section-onsale-product .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product, .products-carousel .owl-item
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child .product,
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .section-onsale-product .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content,
  .section-onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product, .products-carousel .owl-item
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product,
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child .product,
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .section-onsale-product .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content,
  .section-onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product, .products-carousel .owl-item
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product,
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:last-child .product,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > li.product,
  .products-2-1-2 .products-carousel .owl-item .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product, .section-onsale-product
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .products-2-1-2 .products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .onsale-product-content,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child .product,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > li.product,
  .products-2-1-2 .products-carousel .owl-item .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product, .section-onsale-product
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-2-1-2 .products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .onsale-product-content,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child .product,
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product,
  .products-carousel .owl-item .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product, .section-onsale-product
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .products-carousel .owl-item .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product,
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product,
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child .product,
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product,
  .products-carousel .owl-item .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product, .section-onsale-product
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-carousel .owl-item .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product,
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:last-child .product {
    margin-bottom: 0.857em; }
  .products-carousel {
    clear: both; }
    .products-carousel .owl-stage-outer {
      padding: 0; }
    .products-carousel .owl-item .product .product-inner {
      border-right: none; }
  section header, section.section-product-cards-carousel header {
    margin-bottom: 1.429em; }
  .products .product.product-card .media-body .hover-area {
    opacity: 1;
    visibility: visible;
    transform: translateY(4%); }
  .products .product.product-card:hover .media-body .hover-area {
    transform: translateY(4%); }
  .products .product.product-card:hover .product-inner {
    height: 100%; }
  /*........Home Page2........*/
  .section-onsale-product-carousel .owl-nav {
    padding-bottom: 1.429em; }
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content {
    margin-top: 2.143em; }
  .home-list-categories ul.categories > li.category:after {
    display: none; }
  .products-carousel-with-image {
    padding: 50px 0; }
  /*........HomePage-3........*/
  .columns-6-1 > ul.products.products-6, .columns-6-1 > ul.products.product-main-6-1 {
    float: none; }
  .columns-6-1 > ul.products.products-6 {
    padding-right: 0.9375rem; }
  .columns-6-1 > ul.products.product-main-6-1 {
    padding-left: 0.9375rem; }
  .columns-6-1 > ul.products.products-6 > li.product, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product,
  .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product,
  .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product {
    padding-right: 0;
    margin-bottom: 0.857em; }
  .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner,
  .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner,
  .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner,
  .columns-6-1 > ul.products.products-6 > .product:hover .product-inner,
  .section-onsale-product .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner,
  .section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner,
  .section-onsale-product .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner, .products-carousel .owl-item
  .section-onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner,
  .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner,
  .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner,
  .section-onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner, .section-onsale-product
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner, .products-carousel .owl-item
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner,
  .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner,
  .products-carousel .owl-item .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner, .section-onsale-product
  .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner,
  .products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner,
  .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner,
  .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner,
  .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner {
    padding-bottom: 0;
    padding-right: 1.714em; }
    .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner .hover-area, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area,
    .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area,
    .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area,
    .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area,
    .section-onsale-product .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner .hover-area, .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area,
    .section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area,
    .section-onsale-product .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area, .products-carousel .owl-item
    .section-onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area,
    .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area,
    .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area,
    .section-onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner .hover-area,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area, .section-onsale-product
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area, .products-carousel .owl-item
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area,
    .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > li.product:hover .product-inner .hover-area,
    .products-carousel .owl-item .section-onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area, .section-onsale-product
    .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area,
    .products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area, .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area,
    .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product:hover .product-inner .hover-area,
    .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .onsale-product-content:hover .product-inner .hover-area,
    .products-carousel .owl-item .columns-6-1 > ul.products.products-6 > .product:hover .product-inner .hover-area {
      padding-bottom: 1.429em; }
  .pagination {
    padding-top: 2.143em;
    margin-bottom: 2.143em; }
  .sidebar .widget:last-child,
  .sidebar-blog .widget:last-child {
    margin-bottom: 0; }
  /*........Store Category........*/
  .gt-store-directory .widget_product_categories .product-categories:not(.product-categories),
  .gt-store-directory .widget_product_categories > ul:not(.product-categories) {
    width: 100%; } }

@media (max-width: 543px) {
  /*........Header Menu Dropdown........*/
  .primary-nav .nav-inline > .menu-item.open .dropdown-menu {
    position: relative;
    top: auto;
    width: auto;
    float: none; }
  ul.products > li.product.list-view, .section-onsale-product ul.products > .list-view.onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content, .products-carousel .owl-item ul.products > .list-view.product,
  .section-onsale-product ul.products > .list-view.onsale-product,
  .section-onsale-product ul.products > .list-view.onsale-product,
  .products-carousel .owl-item ul.products > .list-view.product,
  .products-carousel .owl-item ul.products > .list-view.product {
    margin: 0.857em 0;
    padding-bottom: 0;
    border-bottom: none; }
    ul.products > li.product.list-view:last-child, .section-onsale-product ul.products > .list-view.onsale-product:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:last-child, .products-carousel .owl-item ul.products > .list-view.product:last-child,
    .section-onsale-product ul.products > .list-view.onsale-product:last-child,
    .section-onsale-product ul.products > .list-view.onsale-product:last-child,
    .products-carousel .owl-item ul.products > .list-view.product:last-child,
    .products-carousel .owl-item ul.products > .list-view.product:last-child {
      margin-bottom: 0.857em; }
    ul.products > li.product.list-view .media, .section-onsale-product ul.products > .list-view.onsale-product .media, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media, .products-carousel .owl-item ul.products > .list-view.product .media,
    .section-onsale-product ul.products > .list-view.onsale-product .media,
    .section-onsale-product ul.products > .list-view.onsale-product .media,
    .products-carousel .owl-item ul.products > .list-view.product .media,
    .products-carousel .owl-item ul.products > .list-view.product .media {
      border: 1px solid #ddd; }
    ul.products > li.product.list-view .media-left, .section-onsale-product ul.products > .list-view.onsale-product .media-left, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-left, .products-carousel .owl-item ul.products > .list-view.product .media-left,
    ul.products > li.product.list-view .media-body, .section-onsale-product
    ul.products > .list-view.onsale-product .media-body, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    ul.products > .list-view.onsale-product-content .media-body, .products-carousel .owl-item
    ul.products > .list-view.product .media-body,
    .section-onsale-product ul.products > .list-view.onsale-product .media-left,
    .section-onsale-product ul.products > .list-view.onsale-product .media-body,
    .section-onsale-product ul.products > .list-view.onsale-product .media-left,
    .section-onsale-product ul.products > .list-view.onsale-product .media-body,
    .products-carousel .owl-item ul.products > .list-view.product .media-left,
    .products-carousel .owl-item ul.products > .list-view.product .media-body,
    .products-carousel .owl-item ul.products > .list-view.product .media-left,
    .products-carousel .owl-item ul.products > .list-view.product .media-body {
      padding-right: 0;
      display: block;
      width: 100%; }
    ul.products > li.product.list-view .media-body .row, .section-onsale-product ul.products > .list-view.onsale-product .media-body .row, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .row, .products-carousel .owl-item ul.products > .list-view.product .media-body .row,
    .section-onsale-product ul.products > .list-view.onsale-product .media-body .row,
    .section-onsale-product ul.products > .list-view.onsale-product .media-body .row,
    .products-carousel .owl-item ul.products > .list-view.product .media-body .row,
    .products-carousel .owl-item ul.products > .list-view.product .media-body .row {
      margin: 0; }
      ul.products > li.product.list-view .media-body .row .col-xs-12:first-child, .section-onsale-product ul.products > .list-view.onsale-product .media-body .row .col-xs-12:first-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .row .col-xs-12:first-child, .products-carousel .owl-item ul.products > .list-view.product .media-body .row .col-xs-12:first-child,
      .section-onsale-product ul.products > .list-view.onsale-product .media-body .row .col-xs-12:first-child,
      .section-onsale-product ul.products > .list-view.onsale-product .media-body .row .col-xs-12:first-child,
      .products-carousel .owl-item ul.products > .list-view.product .media-body .row .col-xs-12:first-child,
      .products-carousel .owl-item ul.products > .list-view.product .media-body .row .col-xs-12:first-child {
        padding-right: 1.071em; }
    ul.products > li.product.list-view .hover-area, .section-onsale-product ul.products > .list-view.onsale-product .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .hover-area, .products-carousel .owl-item ul.products > .list-view.product .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product .hover-area {
      border-top: 1px solid #eaeaea;
      padding: 1.071em 0; }
    ul.products > li.product.list-view:hover .hover-area, .section-onsale-product ul.products > .list-view.onsale-product:hover .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:hover .hover-area, .products-carousel .owl-item ul.products > .list-view.product:hover .hover-area, ul.products > li.product.list-view:focus .hover-area, .section-onsale-product ul.products > .list-view.onsale-product:focus .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content:focus .hover-area, .products-carousel .owl-item ul.products > .list-view.product:focus .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product:hover .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product:focus .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product:hover .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product:focus .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product:hover .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product:focus .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product:hover .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product:focus .hover-area {
      border-top: 1px solid #eaeaea;
      padding: 1.071em 0; }
    ul.products > li.product.list-view.list-view-small .hover-area, .section-onsale-product ul.products > .list-view.list-view-small.onsale-product .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.list-view-small.onsale-product-content .hover-area, .products-carousel .owl-item ul.products > .list-view.list-view-small.product .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small .hover-area {
      border-top: none;
      padding: 0 0 1.071em; }
    ul.products > li.product.list-view.list-view-small .media-body, .section-onsale-product ul.products > .list-view.list-view-small.onsale-product .media-body, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.list-view-small.onsale-product-content .media-body, .products-carousel .owl-item ul.products > .list-view.list-view-small.product .media-body,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small .media-body,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small .media-body,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small .media-body,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small .media-body {
      margin-top: 20px; }
    ul.products > li.product.list-view.list-view-small:hover .hover-area, .section-onsale-product ul.products > .list-view.list-view-small.onsale-product:hover .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.list-view-small.onsale-product-content:hover .hover-area, .products-carousel .owl-item ul.products > .list-view.list-view-small.product:hover .hover-area, ul.products > li.product.list-view.list-view-small:focus .hover-area, .section-onsale-product ul.products > .list-view.list-view-small.onsale-product:focus .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.list-view-small.onsale-product-content:focus .hover-area, .products-carousel .owl-item ul.products > .list-view.list-view-small.product:focus .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small:hover .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small:focus .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small:hover .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product.list-view-small:focus .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small:hover .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small:focus .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small:hover .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product.list-view-small:focus .hover-area {
      border-top: none; }
  .accessories .col-left .products li.product::before, .accessories .col-left .products .section-onsale-product .onsale-product::before, .section-onsale-product .accessories .col-left .products .onsale-product::before, .accessories .col-left .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .col-left .products .onsale-product-content::before, .accessories .col-left .products .products-carousel .owl-item .product::before, .products-carousel .owl-item .accessories .col-left .products .product::before {
    left: 42%;
    transform: translateY(-74%);
    z-index: 1;
    top: inherit; }
  .accessories .col-left .products li.product .hover-area, .accessories .col-left .products .section-onsale-product .onsale-product .hover-area, .section-onsale-product .accessories .col-left .products .onsale-product .hover-area, .accessories .col-left .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .col-left .products .onsale-product-content .hover-area, .accessories .col-left .products .products-carousel .owl-item .product .hover-area, .products-carousel .owl-item .accessories .col-left .products .product .hover-area {
    display: none; }
  .dropdown-menu-mini-cart {
    width: 308px;
    right: -25px !important; } }

@media screen and (max-width: 370px) {
  .navbar-search > .input-group .search-categories.input-group-addon select {
    max-width: 9.313em; } }

@media (max-width: 991px) {
  /* upto 991px*/
  /*........Top Bar........*/
  .top-bar .nav.nav-inline {
    float: none;
    text-align: center;
    margin: 0.714em 0; }
    .top-bar .nav.nav-inline.pull-left.flip, .top-bar .nav.nav-inline.pull-right.flip {
      float: none !important; }
  /*........Header........*/
  .header-logo,
  .primary-nav {
    margin-bottom: 1.429em;
    float: none; }
  section.section-product-cards-carousel header ul.nav,
  .products-6-1 header ul.nav {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    justify-content: unset !important;
    width: 100%;
    border: none !important;
    padding-bottom: 6px; }
    section.section-product-cards-carousel header ul.nav li,
    .products-6-1 header ul.nav li {
      border-bottom: 1px solid #ddd;
      margin: 0 !important;
      flex-shrink: 0;
      width: 50%; }
  .woocommerce-billing-fields .form-row-first, .woocommerce-billing-fields .form-row-last {
    width: 100%; }
  .woocommerce-billing-fields .form-row.form-row-last {
    padding-left: 0; }
  .woocommerce-billing-fields .form-row.form-row-first {
    padding-right: 0; }
  ul.products > li.product .product-inner, .section-onsale-product ul.products > .onsale-product .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .product-inner, .products-carousel .owl-item ul.products > .product .product-inner,
  .section-onsale-product ul.products > .onsale-product .product-inner,
  .products-carousel .owl-item .product .product-inner {
 }
  ul.products > li.product .hover-area, .section-onsale-product ul.products > .onsale-product .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .hover-area, .products-carousel .owl-item ul.products > .product .hover-area,
  .section-onsale-product ul.products > .onsale-product .hover-area,
  .products-carousel .owl-item .product .hover-area {
    display: block;
    padding-top: 1.071em;
    border-top: 1px solid #eaeaea; }
  ul.products > li.product:hover .product-inner, .section-onsale-product ul.products > .onsale-product:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content:hover .product-inner, .products-carousel .owl-item ul.products > .product:hover .product-inner,
  .section-onsale-product ul.products > .onsale-product:hover .product-inner,
  .products-carousel .owl-item .product:hover .product-inner {
    box-shadow: none;
    position: relative; }
  ul.products > li.product:hover .hover-area, .section-onsale-product ul.products > .onsale-product:hover .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content:hover .hover-area, .products-carousel .owl-item ul.products > .product:hover .hover-area,
  .section-onsale-product ul.products > .onsale-product:hover .hover-area,
  .products-carousel .owl-item .product:hover .hover-area {
    display: block;
    padding-top: 1.071em; }
  .footer-newsletter .newsletter-marketing-text {
    margin-left: 0;
    display: block;
    text-align: center; }
  .home-v3-da-block .da:first-child .da-text {
    margin-bottom: 0px;
    font-size: 1.32em; }
  .header-logo {
    text-align: center;
    z-index: 1;
    float: left; }
    .header-logo a.header-logo-link {
      display: inline-block; }
  .departments-menu > .nav-item {
    width: 100%;
    margin-right: 0;
    text-align: center; }
  .navbar-search {
    width: 100%;
    margin: 0.714em 0; }
    .navbar-search > .input-group {
      display: block; }
      .navbar-search > .input-group .search-field.form-control, .navbar-search > .input-group table.cart .coupon .search-field.input-text, table.cart .coupon .navbar-search > .input-group .search-field.input-text {
        border-bottom: 1px solid #dddddd;
        border-bottom-left-radius: 0;
        border-top-right-radius: 1.467em; }
      .navbar-search > .input-group .search-categories.input-group-addon {
        border-bottom-left-radius: 1.467em;
        border-top-left-radius: 0;
        width: 100%;
        text-align: left; }
        .navbar-search > .input-group .search-categories.input-group-addon select {
          padding: 0 1.75rem 0 1em; }
      .navbar-search > .input-group .input-group-btn > .btn, .navbar-search > .input-group .input-group-btn > .hero-action-btn {
      
        border-top-right-radius: 0; }
      .navbar-search > .input-group .twitter-typeahead {
        display: block !important; }
    .navbar-search .form-control, .navbar-search table.cart .coupon .input-text, table.cart .coupon .navbar-search .input-text {
      border-radius: 1.467em; }
    .navbar-search .search-field:not(:first-child):not(:last-child) {
      border-top-left-radius: 1.467em; }
    .navbar-search .btn, .navbar-search .hero-action-btn, .navbar-search button {
      border-radius: 1.571em; }
  .vertical-menu.make-absolute {
    position: relative;
    width: 100%; }
  .dropdown-menu-mini-cart {
    right: -1.071em; }
    .dropdown-menu-mini-cart p.buttons::after {
      content: "";
      display: table;
      clear: both; }
    .dropdown-menu-mini-cart p.buttons .wc-forward {
      margin: 0 0.5em 0 0;
      padding: 0.6em 1.8em; }
      .dropdown-menu-mini-cart p.buttons .wc-forward.checkout {
        margin: 0 0 0 0.5em; }
  .navbar-primary {
    padding: 1rem; }
    .navbar-primary .container {
      position: relative; }
    .navbar-primary .navbar-mini-cart .dropdown-menu-mini-cart {
      right: -1.071em; }
  /*........ Header Menu Dropdown........*/
  .vertical-menu .menu-item-has-children > .dropdown-menu,
  .departments-menu .menu-item-has-children > .dropdown-menu {
    display: none; }
  .vertical-menu .menu-item-has-children:hover > .dropdown-menu, .vertical-menu .menu-item-has-children:focus > .dropdown-menu,
  .departments-menu .menu-item-has-children:hover > .dropdown-menu,
  .departments-menu .menu-item-has-children:focus > .dropdown-menu {
    opacity: 0;
    visibility: hidden; }
  .vertical-menu .menu-item-has-children.open > .dropdown-menu,
  .departments-menu .menu-item-has-children.open > .dropdown-menu {
    display: block;
    position: static;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible; }
  .vertical-menu .menu-item-has-children.open > .dropdown-backdrop,
  .departments-menu .menu-item-has-children.open > .dropdown-backdrop {
    position: static; }
  .vertical-menu .menu-item-has-children.open:hover > .dropdown-menu, .vertical-menu .menu-item-has-children.open:focus > .dropdown-menu,
  .departments-menu .menu-item-has-children.open:hover > .dropdown-menu,
  .departments-menu .menu-item-has-children.open:focus > .dropdown-menu {
    opacity: 1;
    visibility: visible; }
  .departments-menu > .dropdown .departments-menu-dropdown {
    display: none; }
  .departments-menu > .dropdown.open .departments-menu-dropdown {
    display: block; }
  .header-v1 .container > .row:first-child,
  .header-v3 .container > .row:first-child {
    margin: 0 0 1.786em;
    position: relative; }
  .header-v1 .header-logo,
  .header-v3 .header-logo {
    float: none;
    width: 100%; }
  .header-v1 .navbar-search .input-group .form-control, .header-v1 .navbar-search .input-group table.cart .coupon .input-text, table.cart .coupon .header-v1 .navbar-search .input-group .input-text,
  .header-v3 .navbar-search .input-group .form-control,
  .header-v3 .navbar-search .input-group table.cart .coupon .input-text, table.cart .coupon
  .header-v3 .navbar-search .input-group .input-text {
    border-right: 2px solid transparent; }
  .header-v1 .navbar-search .input-group .input-group-addon,
  .header-v3 .navbar-search .input-group .input-group-addon {
    border-left: 2px solid transparent;
    padding: 0.375rem 1.78rem; }
    .header-v1 .navbar-search .input-group .input-group-addon select,
    .header-v3 .navbar-search .input-group .input-group-addon select {
      padding: 0 1.75rem 0 0; }
  .header-v1 .navbar-nav + .navbar-nav,
  .header-v1 .navbar-search + .navbar-nav,
  .header-v3 .navbar-nav + .navbar-nav,
  .header-v3 .navbar-search + .navbar-nav,
  .navbar-primary .navbar-nav + .navbar-nav,
  .navbar-primary .navbar-search + .navbar-nav {
    margin-left: 0; }
  .header-v1 .navbar-nav.navbar-compare,
  .header-v3 .navbar-nav.navbar-compare,
  .navbar-primary .navbar-nav.navbar-compare {
    float: left !important;
    padding-left: 0.714em; }
  .header-v1 .navbar-nav.navbar-wishlist,
  .header-v3 .navbar-nav.navbar-wishlist,
  .navbar-primary .navbar-nav.navbar-wishlist {
    bottom: 0;
    /*1.071em;*/
    display: inline-block;
    left: 50%;
    position: absolute;
    text-align: center;
    transform: translateX(-50%); }
  /*........Home Page 1.......*/
  .products-2-1-2 .columns-2-1-2 > ul.products:first-child {
    padding-right: 0.9375rem; }
  .products-2-1-2 .columns-2-1-2 > ul.products:last-child {
    padding-left: 0.9375rem; }
  .page-template-template-homepage-v2 #sidebar {
    margin-top: 5.714em !important; }
  /*..........Home Page 3........*/
  .features-list.columns-5 .feature,
  .features-list.columns-5 .feature + .feature {
    border-bottom: 1px solid #ddd;
    border-left: none; }
    .features-list.columns-5 .feature:last-child,
    .features-list.columns-5 .feature + .feature:last-child {
      border-bottom: none; }
  /*........Shop Page........*/
  .shop-control-bar-bottom .woocommerce-result-count {
    float: right; }
  .shop-control-bar-bottom .woocommerce-pagination {
    clear: both;
    display: block;
    text-align: center;
    float: none; }
    .shop-control-bar-bottom .woocommerce-pagination ul.page-numbers {
      display: inline-block;
      margin-top: 1.429em; }
  .shop-control-bar .form-gt-wc-ppp {
    margin-left: 0; }
  /*........Single producy Page........*/
  .advanced-review .rating-histogram .rating-bar .star-rating {
    margin-right: 2em; }
  .advanced-review .rating-histogram .rating-percentage-bar {
    margin-left: 0; }
  .single-product .cart {
    margin-bottom: 1.429em; }
    .single-product .cart .quantity {
      margin-bottom: 1.429em; }
  .single-product table.variations th,
  .single-product table.variations td {
    padding: 0.571em; }
  .site-footer {
    padding-bottom: 60px; } }

@media (max-width: 1199px) {
  /*upto 1199*/
  table.shop_table.cart .coupon {
    position: relative;
    margin-bottom: 1.429em; }
    table.shop_table.cart .coupon .input-text {
      flex-grow: 1;
      border-right: 1px solid #dddddd; }
    table.shop_table.cart .coupon .button {
      width: auto;
      margin-left: 0;
      padding: 1.036em 1.134em; }
  section.section-product-cards-carousel header,
  .products-6-1 header {
    border: none;
    margin-bottom: 0; }
    section.section-product-cards-carousel header .h1,
    .products-6-1 header .h1 {
      margin-bottom: 10px;
      display: inline-block; }
    section.section-product-cards-carousel header ul.nav,
    .products-6-1 header ul.nav {
      float: none; }
      section.section-product-cards-carousel header ul.nav li,
      .products-6-1 header ul.nav li {
        border: none;
        text-align: center; }
  /*........Single Product Page........*/
  .gt-advanced-reviews .comment-form > p input[type="text"],
  .gt-advanced-reviews .comment-form > p textarea {
    width: 100%; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .departments-menu > .nav-item {
    width: 25%; }
  .navbar-search {
    width: 50%; }
  .primary-nav .nav-inline > .menu-item.dropdown + .menu-item {
    margin-left: 1.429em; }
  .primary-nav .nav-inline > .menu-item + .menu-item {
    margin-left: 1.786em; }
  .products .product.product-card .media-body .hover-area .action-buttons > div {
    margin-right: 0; }
  .products .product.product-card .media-body .hover-area .action-buttons > a {
    margin-left: 0.714em; } }

@media (min-width: 544px) and (max-width: 991px) {
  /*544-991*/
  #content #sidebar {
    margin-top: 50px !important; }
  .header-logo,
  .primary-nav,
  .header-support-info {
    width: 100%;
    text-align: center;
    display: inline-block; }
  .handheld-header .header-logo,
  .handheld-header .primary-nav,
  .handheld-header .header-support-info {
    width: inherit; }
  .handheld-header .handheld-navigation-wrapper {
    float: right; }
  .handheld-navigation {
    width: 50%;
    left: -50%; }
  .header-support-info {
    float: none; }
    .header-support-info .media-body, .header-support-info .media-left, .header-support-info .media-right {
      display: inline-block; }
    .header-support-info .media-body {
      width: auto; }
    .header-support-info .media-left {
      padding-right: 10px;
      padding-left: 0; }
  .primary-nav {
    float: left; }
  .home-v1-da-block .da .media-left {
    padding: 0;
    width: 100%; }
  .home-v1-da-block .da .media-body {
    display: block;
    text-align: center;
    width: 100%; }
  .products-carousel-tabs .tab-content ul.products {
    margin-right: -10px;
    margin-left: -10px; }
    .products-carousel-tabs .tab-content ul.products > li.product, .products-carousel-tabs .tab-content .section-onsale-product ul.products > .onsale-product, .section-onsale-product .products-carousel-tabs .tab-content ul.products > .onsale-product, .products-carousel-tabs .tab-content .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel-tabs .tab-content ul.products > .onsale-product-content, .products-carousel-tabs .tab-content .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item .products-carousel-tabs .tab-content ul.products > .product {
      width: 50%;
      padding-right: 6px;
      padding-left: 6px; }
      .products-carousel-tabs .tab-content ul.products > li.product::after, .products-carousel-tabs .tab-content .section-onsale-product ul.products > .onsale-product::after, .section-onsale-product .products-carousel-tabs .tab-content ul.products > .onsale-product::after, .products-carousel-tabs .tab-content .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel-tabs .tab-content ul.products > .onsale-product-content::after, .products-carousel-tabs .tab-content .products-carousel .owl-item ul.products > .product::after, .products-carousel .owl-item .products-carousel-tabs .tab-content ul.products > .product::after {
        display: none; }
      .products-carousel-tabs .tab-content ul.products > li.product.first, .products-carousel-tabs .tab-content .section-onsale-product ul.products > .first.onsale-product, .section-onsale-product .products-carousel-tabs .tab-content ul.products > .first.onsale-product, .products-carousel-tabs .tab-content .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .first.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel-tabs .tab-content ul.products > .first.onsale-product-content, .products-carousel-tabs .tab-content .products-carousel .owl-item ul.products > .first.product, .products-carousel .owl-item .products-carousel-tabs .tab-content ul.products > .first.product {
        clear: none; }
  .product-cards-carousel ul.products > li.product, .product-cards-carousel .section-onsale-product ul.products > .onsale-product, .section-onsale-product .product-cards-carousel ul.products > .onsale-product, .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .product-cards-carousel ul.products > .onsale-product-content, .product-cards-carousel .products-carousel .owl-item ul.products > .product, .products-carousel .owl-item .product-cards-carousel ul.products > .product {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin: 0.4em 0; }
    .product-cards-carousel ul.products > li.product .price, .product-cards-carousel .section-onsale-product ul.products > .onsale-product .price, .section-onsale-product .product-cards-carousel ul.products > .onsale-product .price, .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .product-cards-carousel ul.products > .onsale-product-content .price, .product-cards-carousel .products-carousel .owl-item ul.products > .product .price, .products-carousel .owl-item .product-cards-carousel ul.products > .product .price {
      font-size: 1.429em; }
  .products .product.product-card .media-body {
    padding-left: 1.929em !important; }
  .products-carousel-tabs .tab-content {
    margin-top: 30px; }
    .products-carousel-tabs .tab-content .products .owl-stage .owl-item:not(.active) + .owl-item.active .product,
    .products-carousel-tabs .tab-content .products .owl-stage .owl-item.active:first-child .product {
      margin: 0; }
    .products-carousel-tabs .tab-content .products .owl-item {
      margin-bottom: 10px; }
      .products-carousel-tabs .tab-content .products .owl-item .product::after {
        display: none; }
  .products-2-1-2 li.product .hover-area, .products-2-1-2 .section-onsale-product .onsale-product .hover-area, .section-onsale-product .products-2-1-2 .onsale-product .hover-area, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .onsale-product-content .hover-area, .products-2-1-2 .products-carousel .owl-item .product .hover-area, .products-carousel .owl-item .products-2-1-2 .product .hover-area {
    background-color: transparent; }
  .products-6-1 .columns-6-1 ul.products.products-6 li.product, .products-6-1 .columns-6-1 ul.products.products-6 .section-onsale-product .onsale-product, .section-onsale-product .products-6-1 .columns-6-1 ul.products.products-6 .onsale-product, .products-6-1 .columns-6-1 ul.products.products-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-6-1 .columns-6-1 ul.products.products-6 .onsale-product-content, .products-6-1 .columns-6-1 ul.products.products-6 .products-carousel .owl-item .product, .products-carousel .owl-item .products-6-1 .columns-6-1 ul.products.products-6 .product {
    width: 50%;
    margin-top: 0.4em; }
    .products-6-1 .columns-6-1 ul.products.products-6 li.product:hover .product-inner, .products-6-1 .columns-6-1 ul.products.products-6 .section-onsale-product .onsale-product:hover .product-inner, .section-onsale-product .products-6-1 .columns-6-1 ul.products.products-6 .onsale-product:hover .product-inner, .products-6-1 .columns-6-1 ul.products.products-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .product-inner, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-6-1 .columns-6-1 ul.products.products-6 .onsale-product-content:hover .product-inner, .products-6-1 .columns-6-1 ul.products.products-6 .products-carousel .owl-item .product:hover .product-inner, .products-carousel .owl-item .products-6-1 .columns-6-1 ul.products.products-6 .product:hover .product-inner {
      padding-right: 1.714em; }
    .products-6-1 .columns-6-1 ul.products.products-6 li.product.first, .products-6-1 .columns-6-1 ul.products.products-6 .section-onsale-product .first.onsale-product, .section-onsale-product .products-6-1 .columns-6-1 ul.products.products-6 .first.onsale-product, .products-6-1 .columns-6-1 ul.products.products-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .first.onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-6-1 .columns-6-1 ul.products.products-6 .first.onsale-product-content, .products-6-1 .columns-6-1 ul.products.products-6 .products-carousel .owl-item .first.product, .products-carousel .owl-item .products-6-1 .columns-6-1 ul.products.products-6 .first.product {
      clear: none; }
  .section-products-carousel .products-carousel .owl-item .product {
    margin: 0;
    padding-right: 6px;
    padding-left: 6px; }
    .section-products-carousel .products-carousel .owl-item .product::after {
      display: none; }
  .section-products-carousel .products-carousel .owl-stage .owl-item.active:first-child .product {
    margin: 0; }
  .product-cards-carousel .products .product.product-card .media-body .hover-area {
    visibility: visible;
    opacity: 1; }
  .primary-nav .nav-inline > .menu-item {
    display: inline-block; }
    .primary-nav .nav-inline > .menu-item.dropdown + .menu-item {
      margin-left: 0; }
    .primary-nav .nav-inline > .menu-item + .menu-item {
      margin-left: 0; }
    .primary-nav .nav-inline > .menu-item > a {
      display: block;
      padding: 0.6em 0.800em; }
  .header-support-info .media {
    width: 50%;
    display: inline-block; }
  .footer-bottom-widgets {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
    margin-left: 0;
    margin-right: 0; }
    .footer-bottom-widgets::after {
      content: "";
      display: table;
      clear: both; }
    .footer-bottom-widgets .columns {
      position: relative;
      float: left;
      min-height: 1px;
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      width: 33%; }
      .footer-bottom-widgets .columns + .columns {
        margin-left: 0 !important; }
  .home-list-categories ul.categories > li.category:nth-child(2n)::after,
  .home-list-categories ul.categories > li.category:last-child::after {
    content: none;
    display: none; }
  .home-list-categories ul.categories > li.category:nth-child(3n)::after {
    content: ""; }
  .home-list-categories ul.categories > li.category:nth-child(4n) {
    clear: none; }
  .product_list_widget .product-title {
    margin-left: 95px; }
  ul.products > li.product.list-view .media-body .col-xs-12:first-child, .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:first-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:first-child, .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:first-child,
  .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:first-child,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:first-child,
  .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:first-child {
    padding-right: 1.071em;
    width: 55%; }
  ul.products > li.product.list-view .media-body .col-xs-12:last-child, .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:last-child, .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:last-child,
  .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:last-child,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:last-child,
  .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:last-child {
    width: 45%; }
    ul.products > li.product.list-view .media-body .col-xs-12:last-child .hover-area, .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:last-child .hover-area, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:last-child .hover-area, .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:last-child .hover-area,
    .section-onsale-product ul.products > .list-view.onsale-product .media-body .col-xs-12:last-child .hover-area,
    .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .list-view.onsale-product-content .media-body .col-xs-12:last-child .hover-area,
    .products-carousel .owl-item ul.products > .list-view.product .media-body .col-xs-12:last-child .hover-area {
      padding-top: 0;
      border-top: none; }
  .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product,
  .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product,
  .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product, .section-onsale-product
  .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product,
  .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content,
  .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product, .products-carousel .owl-item
  .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product {
    width: 50%;
    float: left; }
    .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product:first-child, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product:first-child, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product:first-child, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content:first-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content:first-child, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product:first-child, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product:first-child,
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product:first-child,
    .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product:first-child, .section-onsale-product
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product:first-child,
    .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content:first-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content:first-child,
    .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product:first-child, .products-carousel .owl-item
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product:first-child {
      padding-right: 6px; }
    .products-2-1-2 .columns-2-1-2 > ul.products:first-child > li.product:last-child, .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product:last-child, .section-onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product:last-child, .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:first-child > .onsale-product-content:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .onsale-product-content:last-child, .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:first-child > .product:last-child, .products-carousel .owl-item .products-2-1-2 .columns-2-1-2 > ul.products:first-child > .product:last-child,
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > li.product:last-child,
    .products-2-1-2 .section-onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product:last-child, .section-onsale-product
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product:last-child,
    .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2 > ul.products:last-child > .onsale-product-content:last-child, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .onsale-product-content:last-child,
    .products-2-1-2 .products-carousel .owl-item .columns-2-1-2 > ul.products:last-child > .product:last-child, .products-carousel .owl-item
    .products-2-1-2 .columns-2-1-2 > ul.products:last-child > .product:last-child {
      padding-left: 6px; }
  ul.products {
    margin-top: 10px; }
    ul.products > li.product, .section-onsale-product ul.products > .onsale-product, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content, .products-carousel .owl-item ul.products > .product {
      padding-left: 6px;
      padding-right: 6px;
      width: 50%;
      margin: 0.4em 0; }
      ul.products > li.product::after, .section-onsale-product ul.products > .onsale-product::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content::after, .products-carousel .owl-item ul.products > .product::after {
        display: none; }
      ul.products > li.product:nth-child(even), .section-onsale-product ul.products > .onsale-product:nth-child(even), .section-onsale-product-carousel .onsale-product-carousel .onsale-product ul.products > .onsale-product-content:nth-child(even), .products-carousel .owl-item ul.products > .product:nth-child(even) {
        clear: none; }
  .gt_posts_carousel_widget .section-posts-carousel .post-item {
    padding-right: 6px;
    padding-left: 6px; }
  .vertical-menu.make-absolute {
    overflow: hidden; }
    .vertical-menu.make-absolute > .menu-item,
    .vertical-menu.make-absolute .dropdown-menu > .menu-item {
      overflow: hidden; }
  #sidebar > aside {
    width: 50%;
    float: left;
    padding-right: 8px;
    padding-left: 8px; }
    #sidebar > aside:last-child {
      clear: both; }
  .widget_gt_products_carousel_widget .section-products-carousel {
    margin-bottom: 0; }
  .widget_gt_products_carousel_widget .products-carousel .owl-stage-outer {
    padding-bottom: 0; }
  section.section-product-cards-carousel header {
    border: none; }
    section.section-product-cards-carousel header ul.nav {
      padding-top: 1.143em;
      float: none;
      text-align: center;
      border-top: 1px solid #dadada; }
  .extended .single-product-wrapper .product-images-wrapper, .extended .single-product-wrapper .summary.entry-summary {
    width: 50%; }
  .extended .single-product-wrapper .product-actions-wrapper {
    width: 100%;
    margin-top: 60px; }
  .single-product.full-width .single-product-wrapper {
    margin-bottom: 5.429em; }
  #primary #tab-description .gt-description .layout tr td:last-child img {
    left: 60px;
    width: 100%; }
  #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
    right: 60px;
    width: 100%; }
  #tab-accessories.gt-tabs .ec-tabs {
    margin-bottom: 3.571em; }
  .accessories .col-left {
    width: 100%;
    padding: 0; }
    .accessories .col-left ul.products {
      margin-right: -1.429em; }
      .accessories .col-left ul.products > li {
        width: 33%; }
        .accessories .col-left ul.products > li .hover-area {
          display: none; }
    .accessories .col-left .check-products {
      margin-top: 60px;
      width: 56%; }
  .accessories .row {
    position: relative; }
  .accessories .col-right {
    bottom: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center; } }

@media (min-width: 768px) and (max-width: 1199px) {
  /*768-1200*/
  .footer-bottom-widgets .columns + .columns {
    margin-left: 2.500em; }
  .primary-nav .nav-inline .yamm-fw .dropdown-menu {
    width: 720px; }
  /*........Single Product........*/
  .extended .single-product-wrapper > .product-actions-wrapper .product-actions {
    padding: 1.071em 1.429em; }
    .extended .single-product-wrapper > .product-actions-wrapper .product-actions div.quantity {
      width: auto; }
  .secondary-nav .yamm-fw .dropdown-menu {
    width: 700px; }
  .advanced-review .rating-histogram .rating-percentage-bar {
    width: 10em; }
  .extended.full-width #primary #tab-description .gt-description .layout {
    margin-bottom: 80px; }
    .extended.full-width #primary #tab-description .gt-description .layout tr td:last-child img {
      left: 57px; }
    .extended.full-width #primary #tab-description .gt-description .layout:last-child tr td:first-child img {
      right: 57px; }
  /*........Shop Page........*/
  .shop-control-bar .woocommerce-ordering {
    float: right; }
  .shop-control-bar .form-gt-wc-ppp {
    float: left;
    clear: both;
    margin-top: 1.429em; }
  .shop-control-bar .gt-advanced-pagination {
    margin-top: 1.429em; }
  .header-v1 .navbar-nav + .navbar-nav,
  .header-v1 .navbar-search + .navbar-nav,
  .header-v3 .navbar-nav + .navbar-nav,
  .header-v3 .navbar-search + .navbar-nav,
  .navbar-primary .navbar-nav + .navbar-nav,
  .navbar-primary .navbar-search + .navbar-nav {
    margin-left: 1.714em; }
  /*........Home Page........*/
  .products-2-1-2 .nav-inline {
    white-space: normal; }
    .products-2-1-2 .nav-inline .nav-item {
      margin-bottom: 0.714em; }
      .products-2-1-2 .nav-inline .nav-item + .nav-item {
        margin-left: 1.429em; }
  .columns-6-1 > ul.products > li.product .price, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .price, .products-carousel .owl-item .columns-6-1 > ul.products > .product .price,
  .columns-6-1 > ul.products > .onsale-product .price,
  .columns-6-1 > ul.products > .onsale-product-content .price,
  .columns-6-1 > ul.products .product .price,
  .section-onsale-product .columns-6-1 > ul.products > li.product .price, .section-onsale-product .columns-6-1 > ul.products > .onsale-product .price,
  .section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .section-onsale-product .columns-6-1 > ul.products > .onsale-product-content .price,
  .section-onsale-product .products-carousel .owl-item .columns-6-1 > ul.products > .product .price, .products-carousel .owl-item
  .section-onsale-product .columns-6-1 > ul.products > .product .price,
  .section-onsale-product .columns-6-1 > ul.products > .onsale-product .price,
  .section-onsale-product .columns-6-1 > ul.products > .onsale-product-content .price,
  .section-onsale-product .columns-6-1 > ul.products .product .price,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > li.product .price,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1 > ul.products > .onsale-product .price, .section-onsale-product
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .price,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1 > ul.products > .product .price, .products-carousel .owl-item
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .product .price,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product .price,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .price,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products .product .price,
  .products-carousel .owl-item .columns-6-1 > ul.products > li.product .price,
  .products-carousel .owl-item .section-onsale-product .columns-6-1 > ul.products > .onsale-product .price, .section-onsale-product
  .products-carousel .owl-item .columns-6-1 > ul.products > .onsale-product .price,
  .products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1 > ul.products > .onsale-product-content .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product
  .products-carousel .owl-item .columns-6-1 > ul.products > .onsale-product-content .price, .products-carousel .owl-item .columns-6-1 > ul.products > .product .price,
  .products-carousel .owl-item .columns-6-1 > ul.products > .onsale-product .price,
  .products-carousel .owl-item .columns-6-1 > ul.products > .onsale-product-content .price,
  .products-carousel .owl-item .columns-6-1 > ul.products .product .price {
    font-size: 1.429em; }
  li.product .price, .section-onsale-product .onsale-product .price, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price, .products-carousel .owl-item .product .price,
  .section-onsale-product .onsale-product .price,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price,
  .products-carousel .owl-item .product .price {
    font-size: 1.286em; }
  section.section-product-cards-carousel .product-cards-carousel {
    clear: both; }
  .products .product.product-card .product-inner {
    padding: 1.786em 1.071em; }
  .products .product.product-card .media-body {
    padding-left: 0.714em; }
  .products-carousel .owl-stage-outer {
    padding: 0 0.214em 3.571em; }
  li.product .added_to_cart, .section-onsale-product .onsale-product .added_to_cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart, .products-carousel .owl-item .product .added_to_cart, .section-onsale-product .onsale-product .added_to_cart,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart,
  .products-carousel .owl-item .product .added_to_cart, li.product .button, .section-onsale-product .onsale-product .button, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button, .products-carousel .owl-item .product .button, .section-onsale-product .onsale-product .button,
  .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button,
  .products-carousel .owl-item .product .button {
    position: relative; } }

@media (min-width: 992px) and (max-width: 1199px) {
  section.section-product-cards-carousel header ul.nav,
  .products-6-1 header ul.nav {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    justify-content: unset !important;
    width: 100%;
    border: none !important;
    padding-bottom: 6px; }
    section.section-product-cards-carousel header ul.nav li,
    .products-6-1 header ul.nav li {
      border-bottom: 1px solid #ddd;
      margin: 0 !important;
      flex-shrink: 0;
      width: 25%; } }

/* Fix for blur in image catalog */
.products-carousel .owl-item .product .wp-post-image,
.section-onsale-product .onsale-product .wp-post-image,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .wp-post-image,
li.product:not(.product-card):not(.list-view):not(.product-category) .wp-post-image, .section-onsale-product .onsale-product:not(.product-card):not(.list-view):not(.product-category) .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:not(.product-card):not(.list-view):not(.product-category) .wp-post-image, .products-carousel .owl-item .product:not(.product-card):not(.list-view):not(.product-category) .wp-post-image {
  width: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }
  
  
.header-v3+.navbar-primary .navbar-nav>.menu-item>a, .header-v3+.sticky-wrapper>.navbar-primary .navbar-nav>.menu-item>a{
	text-transform:uppercase;
	font-size:12px;
}@charset "UTF-8";
/*
Theme Name:         gt-child
Theme URI:          https://www.gorunum.net
Author:             Görünüm Tasarım
Author URI:         https://www.gorunum.net
Description:        Custom template design by Görünüm Tasarım.
Version:            1.0.0
GitHub Theme URI:   https://gorunum.net
GitHub Branch:      theme
License:            GNU General Public License v2 or later
License URI:        http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:        gt
Tags:               black, blue, pink, yellow, dark, light, two-columns, left-sidebar, fixed-layout, responsive-layout, custom-colors, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready

GT is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work
of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/

FontAwesome License: SIL Open Font License - http://scripts.sil.org/OFL
Bootstrap License: MIT - https://github.com/twbs/bootstrap/blob/master/LICENSE
Animate.css - http://daneden.me/animate - License: MIT - http://opensource.org/licenses/MIT

======
Note: Do not edit this file. If you wish to add your own CSS we strongly recommend creating your own child theme, or installing a custom CSS plugin.
======
*/




@-webkit-keyframes pulse{0%{-webkit-transform:scale(1, 1);}
50%{-webkit-transform:scale(1.1, 1.1);}
100%{-webkit-transform:scale(1, 1);};}
@keyframes pulse{0%{transform:scale(1, 1);}
50%{transform:scale(1.03, 1.03);}
100%{transform:scale(1, 1);};}


@-webkit-keyframes pulse2{0%{-webkit-transform:scale(1, 1);}
50%{-webkit-transform:scale(1.15, 1.15);}
100%{-webkit-transform:scale(1, 1);};}
@keyframes pulse2{0%{transform:scale(1, 1);}
50%{transform:scale(1.15, 1.15);}
100%{transform:scale(1, 1);};}


@-webkit-keyframes tag2 {
	0% {  opacity:0; }
	50% {  opacity:0;  }
	100% {  opacity:1; }
}

@-moz-keyframes tag2 {
0% { opacity:0; }
	0% {  opacity:0; }
	50% {   opacity:0;  }
	100% {  opacity:1; }
}

@-ms-keyframes tag2 {
	0% {   opacity:0; }
	50% {   opacity:0;  }
	100% {  opacity:1; }
}

@keyframes tag2 {
	0% {  opacity:0; }
	50% {  opacity:0;  }
	100% { opacity:1; }
}




.site-header{
	padding:10px 0 0 0;
	
}

/*
@media (min-width: 992px){
#content #primary {
	padding-left:0;
    width: 100%;
    left: 0;
}
}*/


.footer-bottom-widgets{
	background:#2a457b;
	color:#fff;
}




div.footer-bottom-widgets ul>li>a{
	color:#fff;
}

div.footer-bottom-widgets ul>li>a:hover, div.footer-bottom-widgets ul>li>a:focus{
	color:#fff;
}


.dropdown-menu-mini-cart .wc-forward {
    padding: .75em 1.07em;
    margin: 0 .5em;
}

.footer-bottom-widgets ul>li+li {
    margin-top: 0.3em;
}




.footer-social-icons .social-icons a:hover{
	color:#fff;
}


.products-carousel .owl-item .product a, .section-onsale-product .onsale-product a, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content a, li.product a{
	color:#333;
}

.products-carousel-tabs .nav-link{
	color:#40485a;
}

li#menu-item-3474{
	float:right;
}

.products-carousel-tabs .nav-link.active{
	color:#333;
}

div.vc_custom_1464938705241 img{
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

#menu-ana-menu{
	display:none;
}

form.navbar-search{
	margin-top:55px;
				 
			
}

.single-product .availability{
	display:block;
}

/*.vertical-menu .dropdown:not(.list-group-item)>.dropdown-menu>li, .vertical-menu .menu-item-has-children>.dropdown-menu{
	width:500px !important;
}*/


.bannercik .section-onsale-product{
	margin-bottom:0;
}


.bannercik .section-onsale-product .savings, .section-onsale-product-carousel .savings{
	background:#0275d8;
	color:#fff;
}

.bannercik .section-onsale-product h2.h1{
	font-size:15px;
}

.bannercik div.onsale-products div.hediyecik, div.onsale-products div.deal-progress{
	display:none;
}

.bannercik .section-onsale-product .onsale-product .price{
	font-size:19px;
	margin-bottom:10px;
}

.section-onsale-product, .onsale-product-carousel{
	padding:10px;
}

.bannercik .section-onsale-product .onsale-product .countdown span.value, .bannercik .section-onsale-product-carousel .onsale-product .countdown span.value{
	font-size:16px;
	line-height:24px;
	width:21px;
	height:21px;
	background:transparent;
	margin-bottom:2px;
}

.bannercik .section-onsale-product h2.woocommerce-loop-product__title, .bannercik  .section-onsale-product .onsale-product .product-thumbnail{
	margin-bottom:10px;
}

.bannercik  .section-onsale-product .onsale-product .countdown, .bannercik  .section-onsale-product-carousel .onsale-product .countdown{
	background:#f5f5f5;
}

.bannercik section.section-onsale-product header{
	
margin-top: -25px;
  background: linear-gradient(to bottom, #f13451 0%, #e31837 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    position: relative;
	    margin-bottom: 2px;
}

.bannercik section.section-onsale-product div.marketing-text{
	display:none;
}

.bannercik .section-onsale-product .savings, .section-onsale-product-carousel .savings {
    color: #e72632;
    position: absolute;
    right: 0;
    width: 75px;
    height: 50px;
    top: 35px;
    background: #fff;
    border-radius: 10px;
	font-size: 16px;
    line-height: 18px;
    font-weight: bold;
	z-index:2;

}

section.section-onsale-product  h2.h1:after{
	display:none !important;
}

div.footer-bottom-widgets .product_list_widget .product-title{
	color:#333;
}


div.footer-bottom-widgets  .gt_recent_posts_widget ul>li .post-content>a{
	color:#fff;
}

div.footer-bottom-widgets  .gt_recent_posts_widget img{
	display:none !important;
}

div.footer-bottom-widgets .widget-title{
	margin-bottom:1em;
}

ul.dropdown-menu li.animate-dropdown div.yamm-content a{
	display:block;
	text-align:center;
	font-size:90%;
	line-height:18px;
	font-weight:600;
	padding:7px ;
	vertical-align:bottom;
}


/*@media screen and (min-width: 768px) {
.five-columns.vc_row .vc_col-sm-2 {
float: left;
width: 18.5%;
padding: 0;
margin-right: 1.5%;
min-height: 0;
}
.five-columns.vc_row .vc_col-sm-2:nth-last-child(2) {
margin-right: 0;
}
}*/

.vertical-menu .dropdown.yamm-tfw .dropdown-menu>li, .vertical-menu .list-group-item>.dropdown.yamm-tfw .dropdown-menu>li, .departments-menu .yamm-tfw .dropdown-menu>li{
	width:800px;
	
}

.vertical-menu .yamm-content, .departments-menu .yamm-tfw .yamm-content{
	background:#fff;
	    border-top-color: #40485a;
}

.overlaycik {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    display: none;
    top: 0;
    background: #3a4255;
    opacity: .5;
    z-index: 5;
}


.vertical-menu.make-absolute{
	z-index:10 !important;
}

.twitter-typeahead{
	z-index:4 !important;
}



.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul > li > a, .navbar-primary .departments-menu .dropdown-menu .yamm-content ul > li > a, .primary-nav .nav-inline .dropdown-menu .yamm-content ul > li > a, .secondary-nav .yamm-content ul > li > a, .vertical-menu .yamm-content ul > li > a{
	padding:5px;
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul > li > a{
	border-bottom:1px solid #ebebeb;
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul > li > a:hover{
	border-bottom:1px solid #40485a;
}

.vertical-menu .menu-item-has-children>.dropdown-menu{
	top:0;
}



.yamm .dropdown-menu{
	left:0;
}

.header-v3+.navbar-primary .navbar-nav>.menu-item>a, .header-v3+.sticky-wrapper>.navbar-primary .navbar-nav>.menu-item>a {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;

				 
					 
}

/*.header-v3+.navbar-primary .navbar-nav>.menu-item>a:hover, .header-v3+.sticky-wrapper>.navbar-primary .navbar-nav>.menu-item>a:hover {
	background:#dedede;
}*/

.header-v3+.navbar-primary .navbar-nav .dropdown-toggle::after{
	margin-right:0;
}

ul#menu-anamenu img, ul.departments-menu ul.dropdown-menu img{
	max-width:78px;
	margin: 0 auto;
}
	
ul#menu-anamenu  div.yamm-content{
	padding:10px;
}

.navbar-primary #header-v3 .navbar-nav .menu-item .dropdown-menu, .primary-nav .nav-inline .menu-item .dropdown-menu, .top-bar .nav-inline .menu-item .dropdown-menu{
	width:600px;
	left:auto;
}


.header-v1 .container>.row:first-child, .header-v3 .container>.row:first-child{
	margin-bottom:5px;
}

div#haftanin_firsatlari{
	background:#fff;
	margin-top:20px;
}

div#haftanin_firsatlari .products-carousel .owl-item .product, div#haftanin_firsatlari .products-carousel .owl-stage-outer, div#haftanin_firsatlari span.loop-product-categories{
	margin:0;
}

div#haftanin_firsatlari .products-carousel .owl-stage .owl-item.active:first-child .product .product-inner, div#haftanin_firsatlari .products-carousel .owl-stage .owl-item:not(.active)+.owl-item.active .product .product-inner{

	padding-top:0;
}

div#haftanin_firsatlari section.section-products-carousel{
	margin-bottom:0;
}


div#haftanin_firsatlari .products-carousel .owl-item .hover.product .product-inner, div#haftanin_firsatlari .products-carousel .owl-item .product:hover .product-inner, div#haftanin_firsatlari .section-onsale-product .hover.onsale-product .product-inner, div#haftanin_firsatlari .section-onsale-product .onsale-product:hover .product-inner, div#haftanin_firsatlari .section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content .product-inner, div#haftanin_firsatlari .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .product-inner, div#haftanin_firsatlari li.product.hover .product-inner, li.product:hover .product-inner{
	box-shadow:none;
}





div#page div.top-bar{
	padding:.450em 0;
}

.footer-logo {
    margin-bottom: 10px;
    margin-top: -50px;
}

.footer-bottom-widgets{
	padding-bottom:20px;
}

div.g-recaptcha{
	clear:both;
}

p#billing_country_field label{
	float:left;
	margin-right:5px;
}

p#billing_country_field strong{
	float: left;
	line-height: 1.286em;
}



.home.blog #content, .home.page .entry-header, .no-breadcrumb #content, .page.no-breadcrumb .entry-header{
	margin-top:10px;
}

.page .entry-header.header-with-cover-image{
	min-height:485px;
}

.page .entry-header.header-with-cover-image .caption {
    position: absolute;
    left: 40%;
    top: 25%;
}

.page .entry-header.header-with-cover-image .caption h1, .page .entry-header.header-with-cover-image .caption .entry-subtitle{
	color:#fff;
}

/*
.products-carousel .owl-item .product .product-thumbnail, .section-onsale-product .onsale-product .product-thumbnail, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-thumbnail, li.product .product-thumbnail{
	background: #fff url(https://www.sirdasmobilya.com/wp-content/uploads/2018/03/guncelleniyor.png) no-repeat center center;
	background-size:cover;
}
*/


.features-list {
	color:#111;
	background:rgba(255,255,255,0.8);
}

.features-list .media{
	width:190px;
}

.features-list .feature{
	padding:10px;
	font-size:90%;
}

.single-product .brand{
	float:right;
}

.widget_product_categories .category-single>li>ul:last-child li.current-cat>.children li>a .no-child{
	padding-left:0.5em;
}

#galeri img{
	padding:10px 5px;
}

#reklam_alani h4{
	margin-bottom:20px;
	text-align:center;
}

div#galeri_link{
	margin:0;
	text-align:center;
}

div#galeri_link a, div#reklam_ver a{
	padding:5px 15px;
	background:#40485a;
	color:#111;
}

div#reklam_ver{
	text-align:center;
	color:#40485a;
	font-weight:600;
	padding:10px;
}

div#reklam_alani{
	text-align:center;
		background:#111;
	color:#fff;
	padding-top:10px;
}

.navbar-full{
	z-index:99;
}

form.navbar-search div.input-group{
	z-index:100;
}


div.top-bar{
	background: #f5f5f5;
	height: 33px;
    position: relative;
    z-index: 10;
}

.top-bar .nav-inline .menu-item>a{
	color:#999;
	font-weight:600;
					
}

.top-bar .nav-inline .menu-item>a:hover{
	color:#1b1e2b;
}

.single-product .gt-wc-product-gallery .woocommerce-product-gallery__trigger, .single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger{
	z-index:5;
}



.footer-address .footer-address-title {
    display: block;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 32px;
}

div.footer-payment-logo{
	padding-top:10px;
}

#content{
	margin-bottom:10px;
}


div#ust_urunler{
	position:relative;
	height:500px;
}



div#masa{
	position:absolute;
	top:350px;
	left:0;
	width:100%;
	height:173px;
	background:transparent url(/wp-content/themes/gt-child/images/wooden.png) no-repeat center center;
}

div#canta{
	top:140px;
	left:125px;
}

div#ayakkabi{
	left: 510px;
    top: 214px;
}

div#aksesuar{
	top:190px;
	left:770px;
}

div#alt_urunler{
	background:#fff;
	margin:15px 0;
	padding-top:10px;
	
}

.ust_urun_resim{
	position:Absolute;
	
	
}

.ust_urun_text {
    text-align: center;
    color: #aaa;
    
    font-size: 26px;
    margin-bottom: 10px;
	-webkit-transform: rotate(308deg);
-moz-transform: rotate(308deg);
-o-transform: rotate(308deg);

    background: rgba(0,0,0,0.8);
    display: table;
    padding: 5px 15px;
    color: #dedede;
	
}


div.ust_urun_resim:hover, .home-list-categories div.media:hover img{

 -webkit-animation:pulse 0.7s linear infinite;animation:pulse 0.7s linear infinite;
}


#content+.brands-carousel{
	margin:0;
	border:none;
}

div.post-author-info{
	display:none;
}

.site-header{
	background:transparent;
	    position: relative;
    z-index: 10;
}

.navbar-search>.input-group{

	float:right;
}

.navbar-search{
	float:right;
}



div.katalog_hover{
	margin-top: 15px;
  
}



div#haberler{
	margin:0 ;
}

div.footer-bottom-widgets #recent-posts-3{
	max-width:300px;
}




.handheld-navigation{
	background:#fff;
	text-transform:uppercase;
}


.handheld-navigation ul li a{
	color:#333;
	font-weight:600;
}

.handheld-navigation ul li.menu-item-has-children .dropdown-toggle::after, .handheld-navigation ul li.menu-item-has-children.open .dropdown-toggle::after, .handheld-navigation ul li.menu-item-has-children.open>a::after, .handheld-navigation ul li.menu-item-has-children>a::after{
	color:#333;
}

.handheld-navigation ul .dropdown-menu{
	background-color:#f5f5f5;
}

.handheld-navigation ul li ul li a{
	color:#666;
}

.handheld-navigation .ehm-close{
	    background: #fff;
    color: #bbb;
    float: right;
}


.handheld-navigation ul .dropdown-menu .dropdown-menu{
	background:#dedede;
}

h3.addon-name{
	font-size:14px;
}



select.addon-select{
	background: #efefef;
    color: #333;
    border: none;
    padding: 5px 10px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

div#katalog img{
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}





@media (max-width: 991px) {
	.handheld-header {
		flex-wrap: wrap;
	}

	.navbar-search {
		margin-top: 25px;
	}

	.navbar-search>.input-group {
		display: flex;
	}

	.navbar-search>.input-group .search-categories.input-group-addon {
		display: none;
	}

	.navbar-search>.input-group .input-search-field span {
		width: 100%;
	}

	.navbar-search>.input-group .search-field.form-control {
		border-top-right-radius: 0;
		border-bottom-width: 2px;
	}

	.navbar-search>.input-group .input-group-btn>.btn {
		border-top-right-radius: 1.571em;
	}
}


div.shop-control-bar .shop-view-switcher, div.shop-control-bar form.form-gt-wc-ppp {
	display:none;
}


.products div.hover-area, div.owl-item div.hover-area{
	position: absolute !important;
   right: 10px;
    top: 22px;
	padding:0 !important;

}



.yith-wcwl-add-to-wishlist  > a::before{
	background-color:none;
	color:#e6e6e6;
	padding:0;
}


.yith-wcwl-wishlistexistsbrowse > a::before{
	font-size:18px;

}

div.kargo_mobile, div#mobile_arama{
	display:none;
}

div.gt_aratoplam h2, div.gt_aratoplam tr.cart-subtotal{
	display:none !important;
}

div.gt_aratoplam  .cart_totals{
	width:35%;
}

div.gt_aratoplam tr.order-total{
	border:none !important;
}


div.yith-wcwl-wishlistexistsbrowse span.feedback{
	display:none;


}

div.yith-wcwl-add-to-wishlist{
	border:none;
}

div.wc-pao-addon{

	clear:both;

}

label.wc-pao-addon-name{
	margin-bottom:15px;
	min-width:140px;
}

.wc-pao-addon-wrap label{
	font-size:16px;
	color:#999;
}

a.single_add_to_wishlist{
	background:none;
	border:none;
}

a.single_add_to_wishlist:hover{
	background:none;
}

a.single_add_to_wishlist::before, .woocommerce-result-count, nav.gt-advanced-pagination{
	display:none;
}



div#urun_extra{
clear:both;
}

div#urun_extra div{
	color:#666;
	display:table;
}

div#urun_detayi {
	margin-top:18px;
}



div#urun_detayi a:hover{
	color:#333;
}


div#urun_fiyati p.price{
	font-weight: 700;
    font-size: 32px;
	color:#f13451;
}




.gt-description, .gt-description *{
	 font-family: "Barlow", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
	font-size: 15px !important;
    line-height: 29px !important;
    font-weight: 400;
}

.gt-description, .gt-description h2{
	font-size: 14px !important;
    font-weight:600 !important;
}

div.product-addon-totals div.wc-pao-col2{
	display:none;
}
	
li.wc-pao-subtotal-line p.price{
	font-size:16px;
}

div.products .product.product-card .media-left{
	width:100%;
}

.products .product.product-card .media-body{
	display:block;
	width:auto;
}

.products .product.product-card  span.loop-product-categories{
	display:none;
}

.products .product.product-card h2.woocommerce-loop-product__title{
	text-align:center;
}

.products .product.product-card span.price{
    display: block;
    width: 100%;
	text-align:center;
}




.products .product.product-card .media-object{
	margin-bottom:10px;
}


#billing_city::-webkit-input-placeholder { /* Chrome */
  color: #bbb;
}
#billing_city:-ms-input-placeholder { /* IE 10+ */
  color: #bbb;
}
#billing_city::-moz-placeholder { /* Firefox 19+ */
  color: #bbb;
  opacity: 1;
}
#billing_city:-moz-placeholder { /* Firefox 4 - 18 */
  color: #bbb;
  opacity: 1;
}


div#grid div.product-inner h2.woocommerce-loop-product__title, div#grid div.product-inner div.price-add-to-cart{
	text-align:center;
	background: #fff;
    position: relative;
    z-index: 1;
}

div#grid div.product-inner div.price-add-to-cart span.price, section.related.products span.price{
	width:100%;
    line-height:21px;
}

span.loop-product-categories a{
	color:#bbb !important;
}

div.single-product-wrapper form.cart{
	clear:both;
	margin-top:15px;
}

span.mini_fiyat{
	font-size:12px;
	color:#999;
}


.wc-pao-cart-field-name{
	float:left;
	margin-right:5px;
}

.woocommerce-mini-cart-item.mini_cart_item span.quantity{
	clear:both;
}



div.gt_aratoplam, input[name='update_cart'] {
	display: none !important;
}

.dropdown-menu-mini-cart .wc-forward{
	padding:10px 15px;
}

div.katalog_hover img:hover{
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity:0.7;
}

div.wc-pao-addon-not-ekle{
	    font-size: 12px;
    color: #666;
    background: none;

}

.single-product.full-width .single-product-wrapper{
	margin-bottom:15px;
	position:relative;
}

div.woocommerce-product-details__short-description{
	position:relative;
}


div.pufcuk{
	position: absolute;
    font-weight: 600;
    font-size: 24px;
    bottom: 90px;
    left: 168px;
    color: #111;
}

table.cart .product-thumbnail img{
	height:auto !important;
}

div#taksit_no, span#son_uc, div#taksit_no2, span#son_uc2  {
    color: #999;
    line-height: 21px;
    padding: 10px 5px;
    font-size: 90%;
}

/* Sertan K. cc fixed */

div.payment_method_gt_est input, div.payment_method_gt_est2 input{


	background: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
	padding: 10px;
    margin: 10px 0;
	-webkit-appearance: button;
   -webkit-border-radius: 2px;
   -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);

    border: 1px solid #AAA;
   color: #555;
}


div.payment_method_gt_est select, select.wc-pao-addon-field, div.payment_method_gt_est2 select {
-webkit-appearance: button;
   -webkit-border-radius: 2px;
   -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
   -webkit-padding-end: 20px;
   -webkit-padding-start: 2px;
   -webkit-user-select: none;
   background-image: url(/wp-content/themes/gt-child/images/15xvbd5.png), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
   background-position: 97% center;
   background-repeat: no-repeat;
   border: 1px solid #AAA;
   color: #555;
   font-size: inherit;
   margin: 10px 5px;
   overflow: hidden;
   padding: 5px 10px;
   text-overflow: ellipsis;
   white-space: nowrap;
   width: 300px;
   
}

select.wc-pao-addon-field {
	width:100%;
}


div.card-wrapper, div.card-wrapper2{
	display:none;
	margin-bottom: 15px;
}

label#kart_cvv, label#kart_cvv2{
	width:auto !important;
}

.xlwcty_col2_wrap .xlwcty_rightArea{
	margin-top:70px;
}

div.card-wrapper a#kapat, div.card-wrapper2 a#kapat2{
	display:block;
	float:right;
}





div.product-addon-totals{
	margin:0 !important;
	padding:0 !important;
	border:none !important;
}

.single-product.full-width .woocommerce-tabs{
	clear:both;
	margin:0;
}

div#product-addons-total{
	display:none !important;
}

div.woocommerce-product-details__short-description .alignleft{
	margin-right:20px;
}

div#urun_ortala img:hover{
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity:0.7;
}

.urun_ozellik_detay h4{
	font-size:18px;
	font-weight:600;
}

div#magazada_gor a{
	    display: block;
    color: #666;
    text-align: center;
    font-weight: 600;
}


 div#magazada_gor i{
	font-size: 24px;
    color: #999;
    position: relative;
    margin-right: 5px;
    top: 3px;
}



div#magazada_gor{
	margin:20px 0;
	clear:both;
}

div#urun_ortala{
	display:block;
	margin:20px 0 !important;
	clear:both;
	width:100%;
	
}

div.product_meta{
	clear:both;
}

.gt-description{
	margin-bottom:20px;
	float:left;
}

table.shop_attributes{
	margin:0 auto;
	max-width:700px;
}

.home-list-categories li.category{
	font-size:85%;
	text-align:center;
}

.home-list-categories ul.categories > li.category .media-heading{
	margin-top:5px;
	font-weight:600;
}




div.bannercik{
	background:#fff;
	margin-top:-150px;

}

.home-list-categories ul.categories, div#grid div.product-outer{
	background:#fff;
}


							 
 

 /*a.woocommerce-product-gallery__trigger img{
	 display:none !important;
 }*/
 
.single-product.full-width .product-images-wrapper div.images > a.woocommerce-product-gallery__trigger{
	background: rgba(255,255,255,0.85);
    font-size: 24px;
    padding: 0px;
    line-height: 45px;
}
 
 
/* ürün adı aşağı */ 

div.resimli_secenek{
	/*display:none;*/
}

.single-product .product-images-wrapper .onsale{
	display:none !important;
}


.single-product-wrapper .summary.entry-summary, .resimli_secenek_kontrol{
	display:none;
}



.slick-slide img{
	margin:0 auto;
	text-align:center;
}

.slick-slide{
	text-align:center;
}

.single-product .product-images-wrapper{
	padding:20px;
}

#slide-nav-pgs img {
    width: auto;
    height: 100px !important;
    padding: 10px;
}

div.product-thumbnail{
	transition: all 1s ease 0s;
}

div#grid .product-inner:hover  div.product-thumbnail{
	-webkit-transform: scale(1.15);
    transform: scale(1.15);
}

a.resimli_secenek_kontrol{
	background: #40485a;
    color: #fff;
    padding: 5px 10px;
    margin-left: 10px;
}

div#destek_hatti{
	margin:20px 0;
}

div#destek_hatti a{
	    padding: 10px 20px;
 background: #45484d;
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%);
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%);
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 );
    color: #fff;
	white-space:nowrap;
    text-align: center;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    font-weight: 600;
}

.copyright-bar, .copyright-bar a{
	color:#666;
}
	
div#gorunum{
	margin-left: 50px;
    position: relative;
    top: 15px;
    max-width: 80px;
}

table.cart{
	width:80%;
	background:#fff;
	border:1px solid #fcfcfc;
	float:left;
}

tr.woocommerce-cart-form__cart-item.cart_item{
	border-bottom:1px solid #ebebeb;
}

div#siparis_ozeti{
	float:right;
	width:18%;
	padding: 20px 10px;
	background:#fff;
	border:1px solid #fcfcfc;
}

.cart-collaterals .cart_totals{
	width:100%;
	margin:0;
}

div#siparis_ozeti .shipping_method input, div#siparis_ozeti ul li:nth-child(2),div#siparis_ozeti tr.shipping th,div#siparis_ozeti tr.shipping p {
	display:none;
}

div#siparis_ozeti div.wc-proceed-to-checkout a.checkout-button{
	background-color: #40485a;
    border-color: #40485a;
	color:#fff;
	font-weight:600;
	text-align:center;
	display:table;
	margin:0 auto;
}

form.woocommerce-checkout .col2-set, form.woocommerce-checkout .order-review-wrapper{
	background:#fff;
}

.woocommerce-breadcrumb {
    margin-top: 0;
    padding-top: 10px;
    margin-bottom: 20px;
	font-size:90%;
}

div.vbox-content{
	margin-bottom:-30px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding:0 !important;
}

.accordion-header h1{
	font-weight:600;
}

.product-actions-wrapper{
	position:relative;
	z-index:4;
	top:0 !important;
}

section.related.products ul.products {
	background:#fff;
}

.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title{
	font-size:15px;
}

.wpb-js-composer .vc_tta.vc_general .vc_tta-panel-title>a{
	padding:10px !important;
	background:#fcfcfc !important;
}

.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body{
	background-color:#fff !important;
}

span.sepetcik {
 font-weight: 500;
    font-size: 12px;
    color: #666;
    text-align: center;
    width: 100%;
    display: block;
    line-height: 12px;
    position: relative;
    top: 10px;
}

ul.navbar-wishlist a{
	text-align:center;
}

.woocommerce-cart-form .shop_table_responsive .product-price del{
	font-size: 90%;
    color: #999;
}

.woocommerce-cart-form .shop_table_responsive .product-price ins{
	font-weight:600;
	color:#d75363;
	text-decoration:none;
}


.extended .single-product-wrapper > .product-actions-wrapper .product-actions .price del{
	font-size:21px;
}


/*.product-actions-wrapper div#urun_fiyati:before{
	content: '%15 İndirim';
	    position: absolute;
    top: 0px;
    background: #d75363;
    color: #fff;
    padding: 1px 10px;
    text-align: center;
    right: 15px;
    font-size: 12px;
    border-radius: 0 10px;
}
*/

section.related.products{
	margin-top:30px;
}

td.product-teslim{
	font-size:13px !important;
}

div.gt_checkout_teslim{
	font-size:13px;
}

div.vbox-content img.figlio{
	padding:0 !important;
	width:auto !important;
	
}

div#siparis_goruntule{
	    background: #ebebeb;

    padding: 5px;
    font-weight: 600;
    text-align: center;
    margin-top: -30px;
}

.woocommerce-MyAccount-navigation-link--downloads{
	display:none;
}


div.kategori_urunler  .product.product-card .media-left{
	display:table;
	margin:0 auto;
}
div.add-to-cart-wrap{
	position:absolute;
	right:0;
}



div#refine{
	display:none;
}


@media (max-width: 768px){
	
	div#refine{
	display:block;
}


   /* div#sidebar{
		position:fixed !important;
		display:none;
		max-height:425px;
		overflow-y:auto;
		padding:20px !important;
		top:270px;
		left:0;
		z-index:10000000000;
		background:#fff;
	}*/
	
div#refine a{
		display:block;
		vertical-align: middle;
   background: rgb(255,183,107);
background: -moz-linear-gradient(top, rgba(255,183,107,1) 0%, rgba(255,167,61,1) 50%, rgba(255,124,0,1) 51%, rgba(255,127,4,1) 100%);
background: -webkit-linear-gradient(top, rgba(255,183,107,1) 0%,rgba(255,167,61,1) 50%,rgba(255,124,0,1) 51%,rgba(255,127,4,1) 100%);
background: linear-gradient(to bottom, rgba(255,183,107,1) 0%,rgba(255,167,61,1) 50%,rgba(255,124,0,1) 51%,rgba(255,127,4,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb76b', endColorstr='#ff7f04',GradientType=0 );
    border: 1px solid #ccc;
	    border-color: #e3e3e3;
		color: #fff;
		font-weight: 600;
    font-size: 18px;
		border-radius:100px;
		-moz-border-radius:100px;
		-webkit-border-radius:100px;
		padding: .375rem 1.75rem .375rem .75rem;
		 -webkit-animation:pulse 0.7s linear infinite;animation:pulse 0.7s linear infinite;
	}
	
	a#kapat_bakim{
	position: absolute;
	right:5px;
    top: 5px;
    color: #999;
    padding: 15px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
	}
	
	
}


@media (max-width: 325px){
	div.add-to-cart-wrap{
		display:none;
		
	}
	
	.yith-wcwl-add-button > a i, .wishlist_table .add_to_cart.button i{
		position:relative;
		right:5px;
	}
}

.recent-post-slider *{
	text-align:left;
}


div.shop-control-bar{
	padding:0;
}

.section-product-cards-carousel h2.h1 a{
	color:#333e48;
}

.section-product-cards-carousel h2.h1 a:hover{
	color:#40485a;
}

.magazalarimiz div.flex-viewport{
	height:160px !important;
}

div.footer-address img{
	display:inline-block !important;
}

div#veri_guvenlik h2{
	font-size:1.5em;
	font-weight:600;
}

.site-header  ul.navbar-wishlist, #masthead span.cart-items-total-price{
	display:none;
}

div.input-search-field input#search{
	height:40px;
	background: #f5f5f5;
}

.navbar-search div.input-group-btn button{
	padding:5px 15px;
	height:40px !important;
}



.navbar-search > .input-group{
	width:300px;
}

#masthead .row{
	position:relative;
				   
}

#masthead ul.navbar-mini-cart{
	position:absolute;
	right:10px;
	top:0px;
}


#masthead .navbar-mini-cart a.nav-link{
	float:left;
}

#masthead ul.navbar-mini-cart span.sepetcik{
	    text-transform: uppercase;
    font-weight: 700;
    float: left;
    display: block;
    width: 65px;
    position: relative;
    top: 25px;
	color:#fff;
}

#masthead.header-v1 ul.navbar-mini-cart span.sepetcik, .header-v1 .navbar-nav .nav-link{
	color:#0d244d;
}



.kalin a{
	font-weight:700 !important;
}

.top-bar .nav-inline > .menu-item + .menu-item:before{
	font-weight:600;
}

span.loop-product-categories{
	display:none !important;
}

div.kampanya div.wpb_content_element{
	margin-bottom:15px;
}

div.kampanya img, div.alt_banner img{
	width:100%;
}

div.kampanya .wpb_single_image .vc_figure, div.kampanya .wpb_single_image .vc_single_image-wrapper,
div.alt_banner .wpb_single_image .vc_figure, div.alt_banner .wpb_single_image .vc_single_image-wrapper

{
	display:block;
}

div.prep-cook{
	margin:0;
	padding:20px;
	background:#fff;
}

 div.prep-cook div.wpb_content_element{
	 margin:0;
 }
 
div.prep-cook a:hover img{
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity:0.7;
}

div.footer_ikonlar{
	color:#333e48;
	    padding: 40px 20px 10px;
    background: #e8e8e9;
    margin-bottom: -25px;
}

div.footer_ikonlar div.vc_icon_element {
	width:20%;
	float:left;
	margin-right:15px;
}

div.footer_ikonlar div.wpb_text_column  {
	width:74%;
	    float: left;
    margin-bottom: 0;
    margin-top: 12px;
	line-height: 16px;
}

div.footer_ikonlar div.wpb_text_column h3{
	margin: 0;
    font-size: 16px;
    font-weight: 700;
	letter-spacing:-1px;
	padding-bottom:3px;
}

div.footer_ikonlar .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md .vc_icon_element-icon{
	font-size:3em !important;
}

.footer-newsletter{
margin-top:26px;
}

.footer-newsletter .newsletter-marketing-text{
	display: block;
    margin-top: 15px;
}

							  
				 
 

#abone_ol{
	text-transform:uppercase;
	font-weight:700;
	    border: 1px solid #fff;
}

div#mobile_app{
	margin-top:10px;
}

div.mobil_uygulama{
	width:40%;
	text-align:center;
	display:inline-block;
}

div.mobil_uygulama a{
	display:block;
	text-align:center;
}

 .footer-bottom-widgets .columns:nth-child(4){
	 width:30%;
 }
 
  .footer-bottom-widgets .columns:nth-child(5){
	 width:10%;
 }
 
#gunun_firsati .products-carousel .owl-item .product{
	border:2px solid #b7b5ba;
	margin:10px;

	
}

 section.related.products .owl-item .product{
	border:2px solid #b7b5ba;
	margin:10px;
	height:300px;
	
}

#gunun_firsati div.action-buttons{
	display:none;

}


#gunun_firsati div.price-add-to-cart{
	font-weight:700;
}

.en-yeniler i, .indirim_menu i{
	margin-right:5px;
}

.indirim_menu a{
	color:#ed1c24 !important;
	font-weight:700 !important;
}

.indirim_menu i{
	border:2px solid #ed1c24;
	padding:2px;
	border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	margin-top:-2px;
	margin-bottom:-2px;
}

div#gunun_firsati div.price-add-to-cart{

    text-align: center;
}

div#gunun_firsati div.price-add-to-cart del{
	font-weight:500;
}

.brands-carousel .item figure{
	padding:10px;
}

.brands-carousel h4{
	font-size:16px;
	font-weight:900;
	text-transform:uppercase;
	position:relative;
	color:#1b1f2c;
}



.brands-carousel h4:before{
	content: '';
    border-bottom: 2px solid transparent;
	border-color: #acaeb1;
    display: block;
    position: absolute;
    bottom: -5px;
    width: 20%;
    left: 40%;
}

span.marka_tum{
	display:block;
	font-style:italic;
	color:#acaeb1;
}

.brands-carousel div.info{
	margin:10px;
}

.brands-carousel .owl-brands{
	padding:0;
	border:none;
}




.owl-brands .owl-nav [class*='owl-'] {
    color: #D6D6D6;
    font-size: 30px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 35%;
    line-height: 14px;
}

.owl-brands .owl-nav{
	position:static;
}

.brands-carousel div.owl-stage div.owl-item{
	padding:0 10px !important;
}

span.urun_marka_title{
	display:block;
	font-weight:700;
	text-align:center;
	font-size:16px;
	text-transform:uppercase;
	margin-bottom:2px;
}

div.alt_banner div.wpb_text_column.wpb_content_element {
	margin-bottom:20px;
}

div#grid  div.price-add-to-cart{
	font-weight:700;
}


.entry-header h1, section.related.products > h2{

	font-weight:900;
	text-transform:uppercase;
	position:relative;
	color:#1b1f2c;
	display: table;
    margin: 0 auto 10px auto;
	letter-spacing:1px;
}



.entry-header h1:before, section.related.products > h2:before{
	content: '';
    border-bottom: 2px solid transparent;
	border-color: #acaeb1;
    display: block;
    position: absolute;
    bottom: -5px;
   width: 64%;
    left: 20%;
	display:none;
}


section.related.products div.product-thumbnail{
	padding-bottom:50%;
}

div#urun_single_adi h1.product_title{
	font-weight:900;
	margin-bottom:0;
}

.single-product .cart .quantity{
	float:left;
	position:relative;
}

span.miktar_sec .minus, span.miktar_sec .plus{
    border: none;
    padding: 2px 10px;
    position: absolute;
    background: #fff;
    font-weight: 600;
    font-size: 21px;
    margin: 2px 10px;
	z-index:4;
}

span.miktar_sec .plus{
	top:0;
	right:0;
}




.extended .single-product-wrapper > .product-actions-wrapper .product-actions .single_add_to_cart_button.button{
	width:auto;
	float:left;
	margin-left:10px;
		border-radius:0 ;
	-moz-border-radius:0 ;
	-webkit-border-radius:0 ;
	text-transform:uppercase;
	letter-spacing:0.5px;
	font-weight: 600;
	 margin-top: 28px ;
	padding: 9px 30px;
}

.extended .single-product-wrapper > .product-actions-wrapper .product-actions .action-buttons{
	display:none !important;
}

.single_add_to_cart_button.button::before{
	display:none !important;
}

div#urun_kodu{
	color:#3b3a3b;
	margin-bottom:20px;
}

div.accordion-header{
	text-transform:uppercase;
}

#tab-description p{
	margin-bottom:12px;
}

.extended .single-product-wrapper > .product-actions-wrapper .product-actions div.quantity .qty{
	    text-align: center;
    font-weight: 700;
	color:#232020;
	border-color: #434550;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
}

div#sosyal{
	    margin: 15px 0;
}
div.footer-bottom-widgets ul.children{
	display:none !important;
}

.miktar_sec button:hover span.miktar_ikon, .miktar_sec button:hover,
.miktar_sec button:focus span.miktar_ikon, .miktar_sec button:focus
{
	color:#232020 !important;
}

div.skucuk{
	display:none;
}
/*
section.related.products .owl-carousel .owl-item{
	    width: 33% !important;
}


 section.related.products div.price-add-to-cart{
    position: absolute;
    bottom: 0;
    width: 90%;
    text-align: center;
}*/

article#post-2139 p{
	margin-bottom:10px;
}

span.urun_adi_title{
	font-size:85%;
}

span.woocommerce-Price-amount{
	font-weight:500;
}

article#post-2139 p{
	margin:0;
	padding:0;
}

div#markalar_hepsi .brands-carousel .owl-carousel .owl-stage-outer, div#markalar_hepsi .brands-carousel .owl-carousel .owl-stage-outer .owl-stage{
	width: auto !important;
	overflow:inherit !important;
	transition:none !important;
	height:auto !important;
	transform:inherit !important;
}

div#markalar_hepsi div.owl-nav{
	display:none !important;
}

div#markalar_hepsi img{
	width:225px;
	height:225px;
}

div#markalar_hepsi .brands-carousel .item{
	height:auto !important;
}

div#markalar_hepsi  .item figure{
	margin-bottom:30px;
}

div#kampanya_resim_desktop{
	display:block;
}

div#kampanya_resim_mobile{
	display:none;
}


div#sosyal_footer{
	text-align:center;
}

div#sosyal_footer a{
	padding: 7px;
    background: #dedede;
    color: #fff;
    font-size: 24px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    width: 33%;
    display: inline-block;
    margin: 5px;
} 

div#sosyal_footer a:nth-child(1){
	background:#4267B2;
}

div#sosyal_footer a:nth-child(2){
	  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}


span.wc-pao-addon-image-swatch-price{
	color:#d55564;
	font-size:90%;
}

div.guvenli_alisveris{
max-width: 209px;
    text-align: center;

    margin-top: 20px;
}

li.kampanyalar i{
	font-size:12px !important;
}

li.destek i{
	font-size:14px !important;

}

li.kampanyalar i, li.destek i{
				   
 
	margin-right:5px;
				
 
}

div.header-logo img{
	max-width:300px;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
								
						 
			  
}

div.header-logo{
	margin-left:20px;
	margin:10px 0;
}

.banner_ust{
	margin-top:25px;
}

.tp-caption.slidelink a span{
	border:1px solid #dedede;
}


.ortala{
				
			
			 
			 
		   
						  
			
					
	text-align:center;
				 
							  
			  
																					  
}

.kategoriler_ust span, .kategoriler_ust img{
	display:block;
	text-align:center;
}

.kategoriler_ust img{
	margin: 0px auto;
    padding: 20px 20px 0 20px;
}

.kategoriler_ust a.uruncukler:hover, .kategoriler_ust a.uruncukler:hover img {
-webkit-animation:pulse 0.7s linear infinite;animation:pulse 0.7s linear infinite;
color:#39568f;
}

.kategoriler_ust a.uruncukler{
	font-weight:600;
	color:#666;
	font-size:13px;
}

.slogan_yazi{
	margin-bottom:80px !important;
					   
}

.btn-beko{
	background-color: #ebebeb;
    border-color: #ebebeb;
    color: #444;
    padding: 8px 10px;
	
	    position: relative;
    float: left;
	margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	text-shadow:0px 1px 2px #fff;
}

.btn-beko:hover,.btn-beko:focus{
	color:#444;
	background: #ef7f1b;
	background-color: #ef7f1b;
}


.kategoriler_ust .dropdown-menu>li>a {
    font-size: 14px;
    color: #2a457b;
}

				   
							
 


.kategoriler_ust .spaced-top {
    margin-top: 20px;
		   
}

.kategoriler_ust .dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
																  
																
																													
   font-weight:500;
    white-space: nowrap;
}

.kategoriler_ust .dropdown-menu>li>a:hover{
	color:#333;
	background:#f5f5f5;
}

.btn-beko-slim{
	border-radius:10px 0 0 10px;
	-moz-border-radius:10px 0 0 10px;
	-webkit-border-radius:10px 0 0 10px;
																	
																														
					 
					  
				   
				
				
				  
}

.btn-beko.dropdown-toggle{
	border-radius:0px 10px 10px 0;
	-moz-border-radius:0px 10px 10px 0;
	-webkit-border-radius:0px 10px 10px 0;
}

button.navbar-toggle-hamburger:after {
    content: 'MENU';
    bottom: -10px;
    background: #d4cdcd;
    font-size: 12px;
    color: #111;
    width: 100%;
    text-align: center;
    display: table;
    font-weight: 500;
    padding: 5px;
}

.gt-handheld-footer-bar ul:not(.menu) li.my-account > a:before {
    content: "\72";
    font-family: font-gt;
					 
}



.gt-handheld-footer-bar ul:not(.menu) li > a {
    height: 4.235801032em;
    display: block;
    position: relative;
    text-indent: -9999px;
    z-index: 999;
}

.mobil_goster, div#mobil_menu{
				   
	   
		
								  
			  
	display:none;
			 
				
}

div.alt_banner{
	position:relative;
	background-attachment: fixed;
	background-image: url(/wp-content/themes/gt-child/images/parallax.jpg) ;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;	
	overflow: hidden;
	text-align:center;
	padding:170px 0;
}

div.alt_banner div.wpb_text_column.wpb_content_element  div.wpb_wrapper   {
    background: #fff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    padding: 10px;
	overflow:hidden;
}

div.alt_banner h3{
	color:#444;
	font-size:16px !important;
	position:relative;
	z-index:2;
}

div.alt_banner div.wpb_text_column.wpb_content_element  div.wpb_wrapper:hover a img{
	 -webkit-animation:pulse2 1s linear infinite;animation:pulse2 1s linear infinite;
	 position:relative;
	z-index:1;
}
					

div#alt_banner_slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width:980px;
  text-align:center;
  background:rgba(0,0,0,0.7);
  color:#fff;
  font-weight:500;
  font-size:24px;
  line-height:42px;
  padding:25px 50px;
  border-radius:10px;
  -moz-border-radius:10px;
  -webkit-border-radius:10px;
}

div#alt_banner_slogan_buton a{
	background: linear-gradient(to bottom, #f13451 0%, #e31837 100%);
	display:table;
	margin:0 auto;
	padding:5px 20px;
	font-size:12px;
	color:#fff;
	margin-top:20px;
	 border-radius:10px;
  -moz-border-radius:10px;
  -webkit-border-radius:10px;
}

div.kategoriler_ust{
	margin-top:25px;
						   
					 
						   
}

div#bannercik div.vc_column-inner {
	padding:0 ;
}

.arc-product-specs-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.arc-product-specs-table>* {
    vertical-align: top;
	    list-style-type: none;
}

.arc-product-specs-table .text, .arc-product-specs-table .value {
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.arc-product-specs-table .value {
    text-align: left;
    word-wrap: break-word;
}

div.gt-description .col-sm-5, 
div.gt-description .col-md-5{
	float:none;
	width:auto;
	margin:15px 0;
}

div.woocommerce-product-details__short-description ul{
	 list-style-type: none;
	 margin:0;
	 padding:0;
	 line-height:32px;
	 display:table;
}

div#sosyal ul.heateor_sss_follow_ul li, div#sosyal ul.heateor_sss_sharing_ul li{
	margin:2px !important;
}

div.arc-social-share-tabs-innertab-title{
	width:200px;
	float:left;
	clear:both;
}

div.arc-social-share-innertab{
	width:100px;
	float:left;
	margin-left:10px;
	text-align:left;
	
}

div#alt_banner_slogan p:nth-child(1){
	letter-spacing:2px;
						 
							
}

div#alt_banner_slogan p:nth-child(2),
div#alt_banner_slogan p:nth-child(3){
	font-size:18px;
	letter-spacing:1px;
	line-height:30px;
}

.widget_product_categories .category-single > li > ul:last-child li .children li .children li a{
	padding-left:20px;
	font-size:13px;
}

div.destekcik h3{
	font-size:24px;
	font-weight:700;
				
								  
}

div.destekcik{
	text-align:center;
				  
				  
			   
				   
		 
					   
}

div.destekcik div.vc_column_container {
	text-align:center;
	border: 2px solid #0c9dd6;
    padding: 2.0rem;
    color: #0c9dd6;
}

div.destekcik a{
	font-size:16px;
	color:#666;
	display: block;
    padding: 20px;
}

.ortala.padding{
			
			
	margin-top:30px;

}

/*
.woocommerce-checkout .blockUI.blockOverlay {
position: relative!important;
display: none!important;
}*/

div#dil_tercume .switcher .selected a{
	width:90px !important;
}

div#dil_tercume .switcher{
	width:102px !important;
}

div#dil_tercume {
    position: absolute;
    right: 180px;
    top: 19px;
}


div#dil_tercume2 {
  margin:10px 0 0 10px;
 
}

div#dil_tercume2 *{
	 text-transform:capitalize;
}

/*body.home div#content:before{
	content:"";
	width:100%;
	position:absolute;
	background:transparent url(/wp-content/themes/gt-child/images/sol_bg.png) no-repeat top center;
	height:315px;
	background-size:contain;
}*/

.widget_product_categories .category-single > li > ul:last-child li > a{
	font-size:12px;
}

header#masthead ul.navbar-compare{
	display:none;
																											   
			 
}

li#menu-item-13445 ul.dropdown-menu  ul.dropdown-menu{
	left:-310px !important
}

/*body.home div#content.site-content{
	background:transparent url(/wp-content/themes/gt-child/images/bgcik.jpg) repeat 0 0;
	background-attachment:fixed;
}*/

body.home div#content > div.container{
	background:#fff;
					 
																
																  
																
																													
}

tr.order-total-saved{
	color:#bbb;
    font-size:12px;
	 -webkit-animation: tag2 1.5s 1;
	animation: tag2 1.5s 1;
}

div.product-outer{
	height: 315px !important;
			  
			 
				 
}

.footer-newsletter .wpcf7-form-control[type="email"] {
    border-top-left-radius: 1.571em;
    border-bottom-left-radius: 1.571em;
			
							  
}

.footer-newsletter .wpcf7-submit[type="submit"] {
    background-color: #333e48;
    color: #fff;
    border-top-right-radius: 1.571em !important;
    border-bottom-right-radius: 1.571em !important;
}

.footer-newsletter span.wpcf7-not-valid-tip{
color:#fff !important;
position: absolute;
    top: 52px;
}

.footer-newsletter  span.newsletter-marketing-text{
	font-size:17px;
}

.gift-popup-title{
display:block;
clear:both;
}

a.btn-add-gift-button2, a.btn-add-gift-button2:hover,a.btn-add-gift-button, a.btn-add-gift-button:hover{
	padding:10px 20px;
    color:#fff !important;
    background: #4096ee;
background: -moz-linear-gradient(top, #4096ee 0%, #4096ee 100%);
background: -webkit-linear-gradient(top, #4096ee 0%,#4096ee 100%);
background: linear-gradient(to bottom, #4096ee 0%,#4096ee 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4096ee', endColorstr='#4096ee',GradientType=0 );
font-weight:600;
}

div.gt-handheld-footer-bar li.compare{
display:none;
}

div.hediyecik2{
background: #f7d722;
    background: -moz-linear-gradient(top, #f7d722 0%, #f9c667 100%);
    background: -webkit-linear-gradient(top, #f7d722 0%,#f9c667 100%);
    background: linear-gradient(to bottom, #f7d722 0%,#f9c667 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7d722', endColorstr='#f9c667',GradientType=0 );
    font-weight: 600;
    padding: 5px 10px;
    margin: 10px 0;
    float: left;
    color: #111;
text-align:center;
}

div.hediyecik2 small{
display:block;
}

div.hediyecik{
	text-align: center;
    position: absolute;
    margin-top: 150px;
    background: #f5f5f5;
    color: #999;
    width: 66%;
    margin-left: 17%;
    padding: 5px;
    font-size: 11px;
    line-height: 15px;
    font-weight: 300;
    text-shadow: 0 1px 2px #fff;
}

div.hediyecik small{
	display:block;
	color:#fff;
    line-height:15px;
}





div#sepet_bekle{
	position:absolute;
	top:0;
	left:0;
	background:rgba(255,255,255,0.8);
	z-index:1000;
	display:none;
	 width:100%;
    height:100%;
}

div#sepet_uyari{
	position:relative;
}

div#sepet_uyari_ic {

	 -webkit-animation:pulse 1s linear infinite;animation:pulse2 1s linear infinite;
	display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}


.renk_secimi{
	display:block;
	color: #ef7f1b !important;
    font-weight: 600;
	font-size:13px !important;
}

span.hediye_urun_fiyat{font-size:13px;}

div.owl-carousel div.hediyecik {
    width: 100%;
    margin-left: 0;

}

div.product-actions-wrapper div.quantity div.input-group{
	display:block;
}

ul.products.columns-4 > li{
min-height:450px;
}

div.woocommerce-additional-fields{
	margin-left:20px;
}

#billing_country_field, #shipping_country_field{
	display:none;
}

h4.bundled_product_title.product_title{
	font-size:15px;
}

.bundled_product_summary .bundled_product_images img{
	max-height:100px;
	width:auto !important;
}

div.bundled_product_summary, .woocommerce div.product.bundled_product_summary{
	margin-bottom:7px !important;
	padding-bottom:7px !important;
}

div.katalog_hover img:hover, div.bundled_product_images img:hover{
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity:0.7;
}

a.bundled_product_permalink{
	display:block;
	padding-left: 18px;
    font-size: 12px;
}

.bundled_product_summary .bundled_product_title a.bundled_product_permalink:before{
	left:0;
}

div.eticsoft_paynet_bank{
	min-height: 200px !important;
	height:auto !important;
}


.floatcik{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	left:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  -webkit-animation:pulse 0.85s linear infinite;animation:pulse 0.85s linear infinite;
																
																													
		   
				   
						
						   
				 
				
}

.floatcik.mobil_float{
	bottom:10px;
}

.my-float{
	margin-top:16px;
}

.floatcik i{
	color:#fff;
}

.floatcik:hover{
	color:#fff;
}

div.widget_shopping_cart_content .product_list_widget .wp-post-image{
width:auto !important;
}



div#yilbasi_bg{
	background:rgba(0,0,0,0.92);
	position:fixed;
	left:0;
	top:0;
	z-index:10000;
	width:100%;
	height:100vh;
	display:none;



}

div#yilbasi_uyari{
	text-align:center;
	color:#fff;
	margin-top:70px;
	font-size:21px;
	
	position: relative;
    height: 400px;
	
}


div#yilbasi_uyari h3{
	font-size:36px;
	font-weight:700;
}

 div#yilbasi_uyari_ic{
	position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width:600px;
}


h4.bundled_product_title.product_title{
	font-size:15px;
}

.bundled_product_summary .bundled_product_images img{
	max-height:100px;
	width:auto !important;
}

div.bundled_product_summary, .woocommerce div.product.bundled_product_summary{
	margin-bottom:7px !important;
	padding-bottom:7px !important;
}

div.katalog_hover img:hover, div.bundled_product_images img:hover{
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity:0.7;
}

a.bundled_product_permalink{
	display:block;
	padding-left: 18px;
    font-size: 12px;
}

.bundled_product_summary .bundled_product_title a.bundled_product_permalink:before{
	left:0;
}

div.ar-content{
display:none;
}

div.iletisim_yeni .vc_icon_element.vc_icon_element-outer.vc_icon_element-align-left{
float:left;
}

div.iletisim_yeni .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner{
width: 25px;
    height: 25px;
}

div.iletisim_yeni  div.wpb_content_element{
margin-bottom: 13px;
}

div.iletisim_yeni .vc_icon_element{
margin:0;
}

div.iletisim_ayir{
margin-top:40px;
}

div.iletisim_yeni {
padding-top:10px !important;
}

div#dil_tercume a{
padding:5px;
}

span#dil_ayir{
	color:#bbb;
    padding:3px;
}

div#dil_tercume a.aktif{
font-weight:700;
}

div#iletisim_whats a{
color:#3ae37a;
font-weight:600;
padding:5px 0;
margin:2px 0;
}

div#iletisim_whats a i{
    margin-right: 5px;
    font-size: 18px;
    position: relative;
    top: 2px;
}



div.product-inner:hover div.hediyecik{
background:#ef7f1b;
color:#fff;
text-shadow:none;

}

div.woocommerce-product-details__short-description h1.title{
	font-size:19px;
    font-weight:600;
}

div.gt-description div.items-list{
clear:both;
}

div.gt-description div.items-list div.item{
clear:both;
background: #f9f9f9;
    border: 1px solid #dedede;
    margin: 10px;
    font-weight: 500;
}

div.gt-description div.items-list div.item div.v, div.gt-description div.items-list div.item div.t{
	float:left;
}

div.gt-description div.items-list div.item div.v{
margin-right:10px;
}

div.content-area article.category-saglikli-tarifler h1.entry-title a, div.content-area article.category-saglikli-tarifler h1.entry-title{
font-weight:600;
}

article.category-saglikli-tarifler{
    width: 47%;
    float: left;
    margin: 0 10px 60px 10px;
}

body.category article.category-saglikli-tarifler.hentry .wp-post-image {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 225px;
    width: auto;
    display: table;
    margin: 0 auto;
 }
 
 body.category article.category-saglikli-tarifler .entry-content p{
 font-size:12px;
 }
 
  body.category article.category-saglikli-tarifler div.post-readmore{
  text-align:center;
  display:block;
  }
  
body.single.single-post.single-format-image .post-navigation{
  display:none !important;
  }
  
  a#yorum_ekle_buton{
 background: linear-gradient(to bottom, #f13451 0%, #e31837 100%);
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    display: table;
    margin: 0 auto 30px auto;
    font-weight: 500;
    letter-spacing: 0.5px;
   }
   
   .sp-tpro-fronted-form .sp-tpro-form-field textarea{
   margin-bottom:0 !important;}
   
   body.home h1.yorum{
   font-size: 29px;
    margin: 30px 0;
    text-align: center;
    font-weight: 700;
   }
   
   body.home a#yorum_ekle_buton{
   margin-bottom:45px !important;
   }
   
   #bannercik{
  
   }
   
   
   
   .kampanya_firsatlari div.onsale-product-thumbnails div.thumbnails {
	   display:none;
   }
   
  .kampanya_firsatlari div.onsale-product{
       width: 25%;
    float: left;
    position: relative;
    border: 1px solid #ebebeb;
    margin-bottom: 25px;
    height: 500px;
}

.kampanya_firsatlari div.onsale-product div.images{
	padding:20px;
	height:300px;
	overflow:hidden;
}


.kampanya_firsatlari h2.woocommerce-loop-product__title{
	font-size:14px;
	text-align:center;
}

.kampanya_firsatlari div.hediyecik, .kampanya_firsatlari div.marketing-text {
	display:none;
}

.kampanya_firsatlari span.gt-price del, .kampanya_firsatlari span.gt-price ins{
	display:block;
	font-size:18px;
}

.kampanya_firsatlari span.gt-price del{
	color:#999;
}

.kampanya_firsatlari span.gt-price ins{
	text-decoration:none;
}

.kampanya_firsatlari div.onsale-product-content{
	margin-top:6px;
}

.kampanya_firsatlari a.woocommerce-LoopProduct-link h2{
	font-weight:600;
}

.kampanya_firsatlari span.savings-text{
	font-size:13px;
}

.kampanya_firsatlari div.deal-countdown span.value{
	font-size:18px !important;
	line-height:26px !important;
	padding:5px !important;
	width:40px !important;
	height:40px !important;
}

div.deal-cart-button div.add-to-cart-wrap{
	position:relative;
	
}


div#anket span.wpcf7-list-item{
	font-size: 26px;
	color:#fec603;
}

div.yildizcik{
	text-shadow:0px 1px 2px #fff;
}


div#dil_tercume a{
	color:#444;
}

h3.slogan,div.entry-content h3{
	font-size: 21px;
    font-weight: 600;
}


div#hesaplama  a.devami_buton{
	background: linear-gradient(to bottom,  #ff9a1e 0%,#ef7f1b 100%);

	display:table;
	margin:10px auto;
	padding:5px 20px;
	font-size:14px;
	color:#fff;
	margin-top:20px;
	font-weight:600;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

table#hesaplama a{
	color:#ff0000;
	text-decoration:underline;
}

button.kadroboyuhesaplama{
	color:#fff;
	background:#2a457b;
	padding:5px 10px;
}

div#hesaplama label{
	text-align:center;
}


div#hesaplama input:checked~label, div#hesaplama label:hover~label{
	color:#ff0000;
	font-weight:600;
}

.bosluk_ver{
	margin:30px 0;
}


div#dil_tercume .switcher .selected{
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}

div#dil_tercume .switcher .selected a{
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}


div#dil_tercume .switcher .selected a{
	width:90px !important;
}

div#dil_tercume .switcher{
	width:102px !important;
}

div#dil_tercume2 *{
	 text-transform:capitalize;
}

#dag-h3 h4{
	color: #fff;
    font-weight: 700;
    font-size: 26px;
}

.wc-pao-addon-image-swatch img{
	width:80px;
	height:30px;
}

.alt_banner a{
	overflow:hidden;
	display:block;
}

div.onsale-product a.woocommerce-LoopProduct-link{
	color:#111;
}

#ana_slogan{
	position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    color: #fff;
}

.rs-fullvideo-cover{
	background:rgba(0,0,0,0.45);
}

.tum_kat_menu ul.dropdown-menu{
	width:450px;
	
}

.tum_kat_menu ul.dropdown-menu li{
	width:50%;
	float:left;
}

div#payment button.button{
	background: linear-gradient(to bottom, #1d71ac 0%, #195681 100%);
}

div.product-loop-body div.product-sku{
	display:none;
}

.yith-wcwl-add-button .add_to_wishlist svg.yith-wcwl-icon-svg, .yith-wcwl-add-button .add_to_wishlist img{
	margin:0;
	padding:0;
}

.yith-wcwl-add-to-wishlist svg.yith-wcwl-icon-svg, .yith-wcwl-add-to-wishlist .add_to_wishlist img{
	width:20px !important;
}

div#urun_kodu{
	color:#999;
}

span#urun_ekle_single_buton i{
	font-size: 16px;
    margin-right: 5px;
}

#ana_slogan h3{
	font-size:25px;
	letter-spacing:1px;
	font-weight:700;
}




div.ust_urun_resim:hover, .kategoriler_ana a:hover{

 -webkit-animation:pulse 0.7s linear infinite;animation:pulse 0.7s linear infinite;
}



div.alt_urunler{
	background:#fff;
	margin:15px 0;
	padding-top:10px;
	
}

.ust_urun_resim{
	position:Absolute;
	
	
}

.ust_urun_text {
    text-align: center;
    color: #aaa;
    
    font-size: 26px;
    margin-bottom: 10px;
	-webkit-transform: rotate(308deg);
-moz-transform: rotate(308deg);
-o-transform: rotate(308deg);

    background: rgba(0,0,0,0.8);
    display: table;
    padding: 5px 15px;
    color: #dedede;
	
}

.home-list-categories .category img{
	    max-width: 60px;
    margin: auto;
}


header.header-v3 div.header-logo a img{
	filter: brightness(0) invert(1);

}



div.footer-bottom-widgets ul.product-categories{
	height: 200px;
    overflow: auto;
    max-width: 228px;
}

ul#menu-tum-kategoriler{
	width:700px;
}

ul#menu-tum-kategoriler li,  #header-v3 ul.dropdown-menu li{
	width:33%;
	float:left;
}

.vertical-menu > .menu-item > a, .vertical-menu .dropdown-menu > .menu-item > a{
	font-size:13px;
}

div#okucuk a{
	background: linear-gradient(to bottom,  #1b438b 0%,#0d244d 100%);
	padding:7px 15px;
	color:#fff;
	font-weight:600;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	font-size:16px;
	text-decoration:none;
	
}

div#okucuk a:hover{
	text-decoration:none;
}

div.yorumlar{
	margin-top:40px;
}

div.sp-testimonial-pro-wrapper div.tpro-arrow:before{
	line-height:29px;
}

li.product .wp-post-image, .section-onsale-product .onsale-product .wp-post-image, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .wp-post-image, .products-carousel .owl-item .product .wp-post-image{
	border:1px solid #efefef;
}


div#ana_slogan  form.searchwp-form .swp-flex--wrap {
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
   max-width: 500px;
    margin: 20px auto 0;
    font-size: 17px;
    border: 1px solid #dedede;
	padding:15px;
}

div#ana_slogan form.searchwp-form div.swp-flex--col div.swp-flex--row {
border: 1px solid #dedede;
    padding: 5px;
    border-radius: 10px;
}

div#ana_slogan span.swp-p{
	font-size:13px;
	font-weight:500;
	color:#999;
}

form.searchwp-form .swp-toggle-checkbox:checked+.swp-toggle-switch, form.searchwp-form .swp-toggle-switch--checked{
	background:#bbb!important;
	
}

form.searchwp-form .searchwp-form-advanced-filters select{
	font-size:15px;
}

div#ana_slogan form.searchwp-form input.swp-input--search{
	border:none;
	background-position: left 15px top 50%;
    background-repeat: no-repeat;
    background-size: 17px auto;
    padding-left: 50px;
    padding-right: 15px;
}

div#arama_bolum_ic form.searchwp-form input.swp-input--search{
	background-position: left 15px top 50%;
    background-repeat: no-repeat;
    background-size: 17px auto;
    padding-left: 50px;
    padding-right: 15px;
}

div#wp-bt_description_editor-editor-tools{
	display:none;
}

div.searchwp-form-quick-search span{
	 color: #666;
	  font-size: 13px;
}

div.searchwp-form-quick-search a {
    font-size: 13px;
    color: #666;
    padding: 0 5px;
}

div.konteyner{
	border-radius:10px;
	border:1px solid #dedede;
	padding:10px;
	margin:10px 0;
}

div.konteyner h3{
	text-decoration:underline;
	font-weight:700;

}

article.post .entry-header h1.entry-title{
	    font-weight: 700;
    margin: 0;
    letter-spacing: 0;
}

article.post .entry-content{
	color:#444;
	font-size: 110%;
}.features-list .media-left i, .footer-call-us .call-us-icon i, .header-support-info .support-icon i, .secondary-nav>.dropdown.open>a::before, .widget_gt_products_filter .widget_layered_nav li.chosen>a::before, .widget_gt_products_filter .widget_layered_nav li>a:focus::before, .widget_gt_products_filter .widget_layered_nav li>a:hover::before, .widget_gt_products_filter .widget_product_categories li.current-cat>a::before, .widget_gt_products_filter .widget_product_categories li>a:focus::before, .widget_gt_products_filter .widget_product_categories li>a:hover::before, p.stars a {
    color: #0d244d;
}
.footer-logo svg ellipse, .header-logo svg ellipse {
    fill: #0d244d;
}
.departments-menu .menu-item-has-children:hover>.dropdown-menu, .navbar-primary .navbar-nav>.menu-item .dropdown-menu, .primary-nav .nav-inline>.menu-item .dropdown-menu, .secondary-nav>.dropdown .dropdown-menu, .top-bar .nav-inline>.menu-item .dropdown-menu, .vertical-menu .menu-item-has-children>.dropdown-menu {
    border-top-color: #0d244d;
}
.columns-6-1>ul.products.product-main-6-1 .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image.flex-active-slide img, .columns-6-1>ul.products>li.product .thumbnails>a:hover, .primary-nav .nav-inline .yamm-fw.open>a::before, .single-product .gt-wc-product-gallery .gt-wc-product-gallery__wrapper .gt-wc-product-gallery__image.flex-active-slide img {
    border-bottom-color: #0d244d;
}
#payment .place-order button[type=submit], .button:hover::before, .columns-6-1>ul.products.product-main-6-1>li.product .gt-wc-product-gallery .flex-control-nav li a.flex-active, .da .da-action>a::after, .deal-progress .progress-bar, .demo_store, .ec-tabs>li.active a::before, .gt-handheld-footer-bar ul li a .count, .footer-newsletter, .full-color-background .header-v3, .full-color-background .top-bar, .handheld-navigation-wrapper .stuck .navbar-toggler, .handheld-navigation-wrapper .stuck button, .handheld-navigation-wrapper.toggled .stuck .navbar-toggler, .handheld-navigation-wrapper.toggled .stuck button, .header-v1 .navbar-search .input-group .btn, .header-v3 .navbar-search .input-group .btn, .navbar-compare .count, .navbar-mini-cart .cart-items-count, .navbar-primary, .navbar-wishlist .count, .owl-dots .owl-dot.active, .owl-item .product:hover .added_to_cart::before, .owl-item .product:hover .button::before, .pace .pace-progress, .pagination ul.page-numbers>li a.current, .pagination ul.page-numbers>li span.current, .products-2-1-2 .nav-link.active::before, .products-2-1-2 .nav-link:hover::before, .products-carousel-tabs .nav-link.active::before, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .added_to_cart, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .deal-cart-button .button, .single-product .product-images-wrapper .flex-control-nav li a.flex-active, .single_add_to_cart_button, .vertical-menu>li:first-child, .wc-tabs>li.active a::before, .widget.widget_tag_cloud .tagcloud a:focus, .widget.widget_tag_cloud .tagcloud a:hover, .widget_gt_products_carousel_widget .section-products-carousel .owl-nav .owl-next:hover, .widget_gt_products_carousel_widget .section-products-carousel .owl-nav .owl-prev:hover, .widget_price_filter .ui-slider .ui-slider-handle, .woocommerce-info, .woocommerce-noreviews, .woocommerce-pagination ul.page-numbers>li a.current, .woocommerce-pagination ul.page-numbers>li span.current, .wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title>a i, li.product:hover .added_to_cart::before, li.product:hover .button::before, p.no-comments, ul.products>li.product.list-view.list-view-small .button:active::after, ul.products>li.product.list-view.list-view-small .button:focus::after, ul.products>li.product.list-view.list-view-small .button:hover::after, ul.products>li.product.list-view:not(.list-view-small) .button:active, ul.products>li.product.list-view:not(.list-view-small) .button:focus, ul.products>li.product.list-view:not(.list-view-small) .button:hover {
    background-color: #0d244d;
}
.hero-action-btn:hover {
    background-color: #067cd6!important;
}
#scrollUp, .custom .tp-bullet.selected, .hero-action-btn, .home-v1-slider .btn-primary, .home-v2-slider .btn-primary, .home-v3-slider .btn-primary {
    background-color: #0d244d!important;
}
#customer_login h2::after, #payment .place-order button[type=submit], #reviews #comments>h2::after, #reviews:not(.gt-advanced-reviews) #comments>h2::after, .address header.title h3::after, .addresses header.title h3::after, .cart-collaterals h2:not(.woocommerce-loop-product__title)::after, .comment-reply-title::after, .comments-title::after, .contact-page-title::after, .cpf-type-range .tm-range-picker .noUi-origin .noUi-handle, .customer-login-form h2::after, .departments-menu .departments-menu-dropdown, .departments-menu .menu-item-has-children>.dropdown-menu, .ec-tabs>li.active a::after, .edit-account legend::after, .footer-widgets .widget-title:after, .header-v1 .navbar-search .input-group .btn, .header-v1 .navbar-search .input-group .form-control, .header-v1 .navbar-search .input-group .input-group-addon, .header-v3 .navbar-search .input-group .btn, .header-v3 .navbar-search .input-group .form-control, .header-v3 .navbar-search .input-group .input-group-addon, .navbar-primary .navbar-mini-cart .dropdown-menu-mini-cart, .pings-title::after, .products-2-1-2 .nav-link.active::after, .products-6-1 header ul.nav .active .nav-link, .products-carousel-tabs .nav-link.active::after, .sidebar .widget-title::after, .sidebar-blog .widget-title::after, .single-product .gt-tabs+section.products>h2::after, .single-product .gt-tabs~div.products>h2::after, .single-product .woocommerce-tabs+section.products>h2::after, .single-product .woocommerce-tabs~div.products>h2::after, .track-order h2::after, .wc-tabs>li.active a::after, .widget.widget_tag_cloud .tagcloud a:focus, .widget.widget_tag_cloud .tagcloud a:hover, .widget_gt_products_carousel_widget .section-products-carousel .owl-nav .owl-next:hover, .widget_gt_products_carousel_widget .section-products-carousel .owl-nav .owl-prev:hover, .widget_price_filter .ui-slider .ui-slider-handle:last-child, .woocommerce-account h2::after, .woocommerce-checkout h3::after, .woocommerce-edit-address form h3::after, .woocommerce-order-received h2::after, .wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title>a i,  section.section-onsale-product, section.section-onsale-product-carousel .onsale-product-carousel, section.section-product-cards-carousel header ul.nav .active .nav-link {
    border-color: #0d244d;
}
.btn-primary, .customer-login-form .button, .dokan-btn-theme, .dropdown-menu-mini-cart .wc-forward.checkout, .widget_price_filter .price_slider_amount .button, a.dokan-btn-theme, input.dokan-btn-theme[type=submit], input[type=submit], table.cart .actions .checkout-button {
    color: #333e48;
    background-color: #0d244d;
    border-color: #0d244d;
}
.btn-primary:hover, .customer-login-form .button:hover, .dokan-btn-theme:hover, .dropdown-menu-mini-cart .wc-forward.checkout:hover, .widget_price_filter .price_slider_amount .button:hover, a.dokan-btn-theme:hover, input.dokan-btn-theme[type=submit]:hover, input[type=submit]:hover, table.cart .actions .checkout-button:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-primary.focus, .btn-primary:focus, .customer-login-form .button.focus, .customer-login-form .button:focus, .dokan-btn-theme.focus, .dokan-btn-theme:focus, .dropdown-menu-mini-cart .wc-forward.checkout.focus, .dropdown-menu-mini-cart .wc-forward.checkout:focus, .widget_price_filter .price_slider_amount .button.focus, .widget_price_filter .price_slider_amount .button:focus, a.dokan-btn-theme.focus, a.dokan-btn-theme:focus, input.dokan-btn-theme[type=submit].focus, input.dokan-btn-theme[type=submit]:focus, input[type=submit].focus, input[type=submit]:focus, table.cart .actions .checkout-button.focus, table.cart .actions .checkout-button:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.btn-primary.active, .btn-primary:active, .customer-login-form .button.active, .customer-login-form .button:active, .dokan-btn-theme.active, .dokan-btn-theme:active, .dropdown-menu-mini-cart .wc-forward.checkout.active, .dropdown-menu-mini-cart .wc-forward.checkout:active, .open>.btn-primary.dropdown-toggle, .open>.customer-login-form .button.dropdown-toggle, .open>.dokan-btn-theme.dropdown-toggle, .open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle, .open>.widget_price_filter .price_slider_amount .button.dropdown-toggle, .open>a.dokan-btn-theme.dropdown-toggle, .open>input.dokan-btn-theme[type=submit].dropdown-toggle, .open>input[type=submit].dropdown-toggle, .open>table.cart .actions .checkout-button.dropdown-toggle, .widget_price_filter .price_slider_amount .button.active, .widget_price_filter .price_slider_amount .button:active, a.dokan-btn-theme.active, a.dokan-btn-theme:active, input.dokan-btn-theme[type=submit].active, input.dokan-btn-theme[type=submit]:active, input[type=submit].active, input[type=submit]:active, table.cart .actions .checkout-button.active, table.cart .actions .checkout-button:active {
    color: #333e48;
    background-color: #000;
    border-color: #000;
    background-image: none;
}
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .customer-login-form .button.active.focus, .customer-login-form .button.active:focus, .customer-login-form .button.active:hover, .customer-login-form .button:active.focus, .customer-login-form .button:active:focus, .customer-login-form .button:active:hover, .dokan-btn-theme.active.focus, .dokan-btn-theme.active:focus, .dokan-btn-theme.active:hover, .dokan-btn-theme:active.focus, .dokan-btn-theme:active:focus, .dokan-btn-theme:active:hover, .dropdown-menu-mini-cart .wc-forward.checkout.active.focus, .dropdown-menu-mini-cart .wc-forward.checkout.active:focus, .dropdown-menu-mini-cart .wc-forward.checkout.active:hover, .dropdown-menu-mini-cart .wc-forward.checkout:active.focus, .dropdown-menu-mini-cart .wc-forward.checkout:active:focus, .dropdown-menu-mini-cart .wc-forward.checkout:active:hover, .open>.btn-primary.dropdown-toggle.focus, .open>.btn-primary.dropdown-toggle:focus, .open>.btn-primary.dropdown-toggle:hover, .open>.customer-login-form .button.dropdown-toggle.focus, .open>.customer-login-form .button.dropdown-toggle:focus, .open>.customer-login-form .button.dropdown-toggle:hover, .open>.dokan-btn-theme.dropdown-toggle.focus, .open>.dokan-btn-theme.dropdown-toggle:focus, .open>.dokan-btn-theme.dropdown-toggle:hover, .open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle.focus, .open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle:focus, .open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle:hover, .open>.widget_price_filter .price_slider_amount .button.dropdown-toggle.focus, .open>.widget_price_filter .price_slider_amount .button.dropdown-toggle:focus, .open>.widget_price_filter .price_slider_amount .button.dropdown-toggle:hover, .open>a.dokan-btn-theme.dropdown-toggle.focus, .open>a.dokan-btn-theme.dropdown-toggle:focus, .open>a.dokan-btn-theme.dropdown-toggle:hover, .open>input.dokan-btn-theme[type=submit].dropdown-toggle.focus, .open>input.dokan-btn-theme[type=submit].dropdown-toggle:focus, .open>input.dokan-btn-theme[type=submit].dropdown-toggle:hover, .open>input[type=submit].dropdown-toggle.focus, .open>input[type=submit].dropdown-toggle:focus, .open>input[type=submit].dropdown-toggle:hover, .open>table.cart .actions .checkout-button.dropdown-toggle.focus, .open>table.cart .actions .checkout-button.dropdown-toggle:focus, .open>table.cart .actions .checkout-button.dropdown-toggle:hover, .widget_price_filter .price_slider_amount .button.active.focus, .widget_price_filter .price_slider_amount .button.active:focus, .widget_price_filter .price_slider_amount .button.active:hover, .widget_price_filter .price_slider_amount .button:active.focus, .widget_price_filter .price_slider_amount .button:active:focus, .widget_price_filter .price_slider_amount .button:active:hover, a.dokan-btn-theme.active.focus, a.dokan-btn-theme.active:focus, a.dokan-btn-theme.active:hover, a.dokan-btn-theme:active.focus, a.dokan-btn-theme:active:focus, a.dokan-btn-theme:active:hover, input.dokan-btn-theme[type=submit].active.focus, input.dokan-btn-theme[type=submit].active:focus, input.dokan-btn-theme[type=submit].active:hover, input.dokan-btn-theme[type=submit]:active.focus, input.dokan-btn-theme[type=submit]:active:focus, input.dokan-btn-theme[type=submit]:active:hover, input[type=submit].active.focus, input[type=submit].active:focus, input[type=submit].active:hover, input[type=submit]:active.focus, input[type=submit]:active:focus, input[type=submit]:active:hover, table.cart .actions .checkout-button.active.focus, table.cart .actions .checkout-button.active:focus, table.cart .actions .checkout-button.active:hover, table.cart .actions .checkout-button:active.focus, table.cart .actions .checkout-button:active:focus, table.cart .actions .checkout-button:active:hover {
    color: #333e48;
    background-color: #045696;
    border-color: #03406e;
}
.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary:disabled.focus, .btn-primary:disabled:focus, .customer-login-form .button.disabled.focus, .customer-login-form .button.disabled:focus, .customer-login-form .button:disabled.focus, .customer-login-form .button:disabled:focus, .dokan-btn-theme.disabled.focus, .dokan-btn-theme.disabled:focus, .dokan-btn-theme:disabled.focus, .dokan-btn-theme:disabled:focus, .dropdown-menu-mini-cart .wc-forward.checkout.disabled.focus, .dropdown-menu-mini-cart .wc-forward.checkout.disabled:focus, .dropdown-menu-mini-cart .wc-forward.checkout:disabled.focus, .dropdown-menu-mini-cart .wc-forward.checkout:disabled:focus, .widget_price_filter .price_slider_amount .button.disabled.focus, .widget_price_filter .price_slider_amount .button.disabled:focus, .widget_price_filter .price_slider_amount .button:disabled.focus, .widget_price_filter .price_slider_amount .button:disabled:focus, a.dokan-btn-theme.disabled.focus, a.dokan-btn-theme.disabled:focus, a.dokan-btn-theme:disabled.focus, a.dokan-btn-theme:disabled:focus, input.dokan-btn-theme[type=submit].disabled.focus, input.dokan-btn-theme[type=submit].disabled:focus, input.dokan-btn-theme[type=submit]:disabled.focus, input.dokan-btn-theme[type=submit]:disabled:focus, input[type=submit].disabled.focus, input[type=submit].disabled:focus, input[type=submit]:disabled.focus, input[type=submit]:disabled:focus, table.cart .actions .checkout-button.disabled.focus, table.cart .actions .checkout-button.disabled:focus, table.cart .actions .checkout-button:disabled.focus, table.cart .actions .checkout-button:disabled:focus {
    background-color: #0d244d;
    border-color: #0d244d;
}
.btn-primary.disabled:hover, .btn-primary:disabled:hover, .customer-login-form .button.disabled:hover, .customer-login-form .button:disabled:hover, .dokan-btn-theme.disabled:hover, .dokan-btn-theme:disabled:hover, .dropdown-menu-mini-cart .wc-forward.checkout.disabled:hover, .dropdown-menu-mini-cart .wc-forward.checkout:disabled:hover, .widget_price_filter .price_slider_amount .button.disabled:hover, .widget_price_filter .price_slider_amount .button:disabled:hover, a.dokan-btn-theme.disabled:hover, a.dokan-btn-theme:disabled:hover, input.dokan-btn-theme[type=submit].disabled:hover, input.dokan-btn-theme[type=submit]:disabled:hover, input[type=submit].disabled:hover, input[type=submit]:disabled:hover, table.cart .actions .checkout-button.disabled:hover, table.cart .actions .checkout-button:disabled:hover {
    background-color: #0d244d;
    border-color: #0d244d;
}
.navbar-primary .navbar-nav>.menu-item>a:focus, .navbar-primary .navbar-nav>.menu-item>a:hover {
    background: #0d244d;
	color:#fff;
}
.navbar-primary .navbar-nav>.menu-item>a {
  
	
}
.full-color-background .navbar-primary {
    border-top-color: #0d244d;
}
.full-color-background .top-bar .nav-inline .menu-item+.menu-item:before {
    color: #0d244d;
}
.columns-6-1>ul.products.product-main-6-1 .flex-control-thumbs li img.flex-active, .products-2-1-2 .nav-link:hover::after, .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a.current, .single-product div.thumbnails-all .synced a, .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    border-bottom-color: #0d244d;
}
.home-v1-slider .btn-primary:hover, .home-v2-slider .btn-primary:hover, .home-v3-slider .btn-primary:hover {
    background-color: #067cd6!important;
}
.dokan-coupon-content .code:hover, .dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.active, .dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.dokan-common-links a.active, .dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.dokan-common-links a:focus, .dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.dokan-common-links a:hover, .dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li:focus, .dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li:hover, .dokan-dashboard .pagination-wrap ul.pagination>li a.current, .dokan-dashboard .pagination-wrap ul.pagination>li span.current, .dokan-dashboard-header h1.entry-title span.dokan-right a.dokan-btn.dokan-btn-sm, .dokan-pagination-container ul.dokan-pagination>li.active>a, .dokan-report-wrap ul.dokan_tabs>li.active a::before, .dokan-store .pagination-wrap ul.pagination>li a.current, .dokan-store .pagination-wrap ul.pagination>li span.current {
    background-color: #0d244d;
}
.dokan-dashboard-header h1.entry-title span.dokan-right a.dokan-btn.dokan-btn-sm, .dokan-report-wrap ul.dokan_tabs>li.active a::after, .dokan-widget-area .widget .widget-title:after {
    border-color: #0d244d;
}
.dokan-btn-theme, a.dokan-btn-theme, input.dokan-btn-theme[type=submit] {
    color: #333e48;
    background-color: #0d244d;
    border-color: #0d244d;
}
.dokan-btn-theme:hover, a.dokan-btn-theme:hover, input.dokan-btn-theme[type=submit]:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.dokan-btn-theme.focus, .dokan-btn-theme:focus, a.dokan-btn-theme.focus, a.dokan-btn-theme:focus, input.dokan-btn-theme[type=submit].focus, input.dokan-btn-theme[type=submit]:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
.dokan-btn-theme.active, .dokan-btn-theme:active, .open>.dokan-btn-theme.dropdown-toggle, .open>a.dokan-btn-theme.dropdown-toggle, .open>input.dokan-btn-theme[type=submit].dropdown-toggle, a.dokan-btn-theme.active, a.dokan-btn-theme:active, input.dokan-btn-theme[type=submit].active, input.dokan-btn-theme[type=submit]:active {
    color: #333e48;
    background-color: #000;
    border-color: #000;
    background-image: none;
}
.dokan-btn-theme.active.focus, .dokan-btn-theme.active:focus, .dokan-btn-theme.active:hover, .dokan-btn-theme:active.focus, .dokan-btn-theme:active:focus, .dokan-btn-theme:active:hover, .open>.dokan-btn-theme.dropdown-toggle.focus, .open>.dokan-btn-theme.dropdown-toggle:focus, .open>.dokan-btn-theme.dropdown-toggle:hover, .open>a.dokan-btn-theme.dropdown-toggle.focus, .open>a.dokan-btn-theme.dropdown-toggle:focus, .open>a.dokan-btn-theme.dropdown-toggle:hover, .open>input.dokan-btn-theme[type=submit].dropdown-toggle.focus, .open>input.dokan-btn-theme[type=submit].dropdown-toggle:focus, .open>input.dokan-btn-theme[type=submit].dropdown-toggle:hover, a.dokan-btn-theme.active.focus, a.dokan-btn-theme.active:focus, a.dokan-btn-theme.active:hover, a.dokan-btn-theme:active.focus, a.dokan-btn-theme:active:focus, a.dokan-btn-theme:active:hover, input.dokan-btn-theme[type=submit].active.focus, input.dokan-btn-theme[type=submit].active:focus, input.dokan-btn-theme[type=submit].active:hover, input.dokan-btn-theme[type=submit]:active.focus, input.dokan-btn-theme[type=submit]:active:focus, input.dokan-btn-theme[type=submit]:active:hover {
    color: #333e48;
    background-color: #045696;
    border-color: #03406e;
}
.dokan-btn-theme.disabled.focus, .dokan-btn-theme.disabled:focus, .dokan-btn-theme:disabled.focus, .dokan-btn-theme:disabled:focus, a.dokan-btn-theme.disabled.focus, a.dokan-btn-theme.disabled:focus, a.dokan-btn-theme:disabled.focus, a.dokan-btn-theme:disabled:focus, input.dokan-btn-theme[type=submit].disabled.focus, input.dokan-btn-theme[type=submit].disabled:focus, input.dokan-btn-theme[type=submit]:disabled.focus, input.dokan-btn-theme[type=submit]:disabled:focus {
    background-color: #0d244d;
    border-color: #0d244d;
}
.dokan-btn-theme.disabled:hover, .dokan-btn-theme:disabled:hover, a.dokan-btn-theme.disabled:hover, a.dokan-btn-theme:disabled:hover, input.dokan-btn-theme[type=submit].disabled:hover, input.dokan-btn-theme[type=submit]:disabled:hover {
    background-color: #0d244d;
    border-color: #0d244d;
}
.dokan-dashboard-header h1.entry-title small a, .dokan-orders-content .dokan-orders-area .general-details ul.customer-details li a, .gt-tabs #tab-seller.gt-tab .tab-content ul.list-unstyled li.seller-name span.details a {
    color: #0d244d;
}
.dokan-dashboard-header h1.entry-title small a:focus, .dokan-dashboard-header h1.entry-title small a:hover {
    color: #067cd6;
}
.customer-login-form .button, .demo_store, .departments-menu>.nav-item .nav-link, .dropdown-menu-mini-cart .wc-forward.checkout, .footer-newsletter .newsletter-marketing-text, .footer-newsletter .newsletter-title, .footer-newsletter .newsletter-title::before, .full-color-background .header-v1 .navbar-nav .nav-link,  .header-v1 .navbar-search .input-group .btn, .header-v1 .navbar-search .input-group .hero-action-btn, .header-v3 .navbar-search .input-group .btn, .header-v3 .navbar-search .input-group .hero-action-btn, .navbar-compare .count, .navbar-mini-cart .cart-items-count,  .navbar-primary a[data-toggle=dropdown]::after, .navbar-wishlist .count, .pagination ul.page-numbers>li a.current, .pagination ul.page-numbers>li span.current, .vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown-hover], .vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown], .vertical-menu>li.list-group-item>a, .vertical-menu>li.list-group-item>span, .widget_price_filter .price_slider_amount .button, .woocommerce-info, .woocommerce-info a, .woocommerce-info button, .woocommerce-noreviews, .woocommerce-noreviews a, .woocommerce-noreviews button, .woocommerce-pagination ul.page-numbers>li a.current, .woocommerce-pagination ul.page-numbers>li span.current, input[type=submit], p.no-comments, p.no-comments a, p.no-comments button, table.cart .actions .checkout-button {
    color: #fff;
}
.vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown-hover]:focus, .vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown-hover]:hover, .vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown]:focus, .vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown]:hover, .woocommerce-info a:focus, .woocommerce-info a:hover, .woocommerce-info button:focus, .woocommerce-info button:hover, .woocommerce-noreviews a:focus, .woocommerce-noreviews a:hover, .woocommerce-noreviews button:focus, .woocommerce-noreviews button:hover, p.no-comments a:focus, p.no-comments a:hover, p.no-comments button:focus, p.no-comments button:hover {
    color: #fafafa;
}
.full-color-background .header-logo path {
    fill: #fff;
}
.handheld-navigation-wrapper .stuck .navbar-toggler, .handheld-navigation-wrapper .stuck button, .handheld-navigation-wrapper.toggled .stuck .navbar-toggler, .handheld-navigation-wrapper.toggled .stuck button, .home-v1-slider .btn-primary, .home-v1-slider .btn-primary:hover, .home-v2-slider .btn-primary, .home-v2-slider .btn-primary:hover, .home-v3-slider .btn-primary, .home-v3-slider .btn-primary:hover {
    color: #fff!important;
}#heateor_sss_error{color:red;margin:7px 0}#heateor_sss_sharing_more_providers .filter svg{position:absolute;left:16px;top:18px}div.heateor_sss_sharing_ul a:link,div.heateor_sss_sharing_ul a:focus{text-decoration:none;background:transparent!important}.heateor_sss_login_container{margin:2px 0}.heateor_sss_login_container img,.heateor_sss_sharing_container img{cursor:pointer;margin:2px;border:none}.heateor_sss_login_container img{display:none;float:left}#heateor_sss_loading_image{display:block!important;float:none}.heateor_sss_error{background-color:#ffffe0;border:1px solid #e6db55;padding:5px;margin:10px}#heateor_sss_sharing_more_providers{position:fixed;top:50%;left:47%;background:#fafafa;width:650px;margin:-180px 0 0 -300px;z-index:10000000;text-shadow:none!important;height:308px}#heateor_sss_mastodon_popup_bg,#heateor_sss_popup_bg{background:url(/wp-content/plugins/sassy-social-share/images/transparent_bg.png);bottom:0;display:block;left:0;position:fixed;right:0;top:0;z-index:10000}#heateor_sss_sharing_more_providers .title{font-size:14px!important;height:auto!important;background:#58b8f8!important;border-bottom:1px solid #d7d7d7!important;color:#fff;font-weight:700;letter-spacing:inherit;line-height:34px!important;padding:0!important;text-align:center;text-transform:none;margin:0!important;text-shadow:none!important;width:100%}#heateor_sss_sharing_more_providers *{font-family:Arial,Helvetica,sans-serif}#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content{background:#fafafa;border-radius:4px;color:#555;height:auto;width:100%}#heateor_sss_sharing_more_providers .filter{margin:0;padding:10px 0 0;position:relative;width:100%}#heateor_sss_sharing_more_providers .all-services{clear:both;height:250px;overflow:auto}#heateor_sss_sharing_more_content .all-services ul{display:block;margin:10px!important;overflow:hidden;list-style:none;padding-left:0!important;position:static!important;width:auto!important}#heateor_sss_sharing_more_content .all-services ul li{padding:0;margin:0 0 0 5px;background:0 0!important;float:left;width:24.1%;text-align:left!important}#heateor_sss_sharing_more_providers .close-button img{margin:0}#heateor_sss_sharing_more_providers .close-button.separated{background:0 0!important;border:none!important;box-shadow:none!important;width:auto!important;height:auto!important;z-index:1000}#heateor_sss_sharing_more_providers .close-button{height:auto!important;width:auto!important;left:auto!important;display:block!important;color:#555!important;cursor:pointer!important;font-size:29px!important;line-height:29px!important;margin:0!important;padding:0!important;position:absolute;right:-16px;top:-16px}#heateor_sss_sharing_more_providers .filter input.search{width:96%;display:block;float:none;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-weight:300;height:auto;line-height:inherit;margin:0 11px;padding:5px 8px 5px 27px!important;border:1px solid #ccc!important;color:#000;background:#fff!important;font-size:16px!important;text-align:left!important;max-width:-webkit-fill-available;line-height:1}#heateor_sss_sharing_more_providers .footer-panel{background:#fff;border-top:1px solid #d7d7d7;padding:6px 0;width:100%;color:#fff}#heateor_sss_sharing_more_providers .footer-panel p{background-color:transparent;top:0;text-align:left!important;color:#000;font-family:'helvetica neue',arial,helvetica,sans-serif;font-size:12px;line-height:1.2;margin:0!important;padding:0 6px!important;text-indent:0!important}#heateor_sss_sharing_more_providers .footer-panel a{color:#fff;text-decoration:none;font-weight:700;text-indent:0!important}#heateor_sss_sharing_more_providers .all-services ul li a span{width:51%}#heateor_sss_sharing_more_providers .all-services ul li a{border-radius:3px;color:#666!important;display:block;font-size:12px;height:auto;line-height:20px;overflow:hidden;padding:8px 8px 8px 1px;text-decoration:none!important;text-overflow:ellipsis;white-space:nowrap;border:none!important;text-indent:0!important;background:0 0!important;text-shadow:none}.heateor_sss_share_count{display:block;text-indent:0!important;visibility:hidden;background-color:#58b8f8!important;width:5px;height:auto;text-align:center;min-width:8px!important;padding:1px 4px!important;color:#fff!important;font-family:'Open Sans',arial,sans-serif!important;font-size:10px!important;font-weight:600!important;-webkit-border-radius:15px!important;border-radius:15px!important;-webkit-box-shadow:0 2px 2px rgba(0,0,0,.4);box-shadow:0 2px 2px rgba(0,0,0,.4);text-shadow:0 -1px 0 rgba(0,0,0,.2);line-height:14px!important;border:2px solid #fff!important;z-index:1;margin:2px auto!important;box-sizing:content-box!important}.heateor_sss_share_count,.heateor_sss_vertical_sharing{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important}div.heateor_sss_follow_ul,div.heateor_sss_sharing_ul{padding-left:0!important;margin:1px 0!important}#heateor_sss_mastodon_popup_close img,#heateor_sss_sharing_popup_close img{opacity:1!important;background:0 0!important;border:none!important;outline:0!important;box-shadow:none!important;width:auto!important;height:auto!important;top:inherit!important;right:inherit!important;left:9px!important;padding:0!important}div.heateor_sss_follow_ul .heateorSssSharingRound,div.heateor_sss_sharing_ul .heateorSssSharingRound{background:0 0!important}.heateor_sss_square_count{display:none;text-align:center;font-weight:bolder;font-family:sans-serif;font-style:normal;font-size:.6em;visibility:hidden}div.heateor_sss_follow_ul a,div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a{float:left;padding:0!important;list-style:none!important;border:none!important;margin:2px}.heateorSssSharing,.heateorSssSharingButton{display:block;cursor:pointer;margin:2px}div.heateor_sss_follow_ul a:before,div.heateor_sss_sharing_ul a:before{content:none!important}div.heateor_sss_follow_ul a{width:auto}.heateor_sss_vertical_sharing{background:0 0;-webkit-box-shadow:0 1px 4px 1px rgba(0,0,0,.1);box-shadow:0 1px 4px 1px rgba(0,0,0,.1);position:fixed;overflow:visible;z-index:10000000;display:block;padding:10px;border-radius:4px;opacity:1;box-sizing:content-box!important}div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share,div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share{width:96px}li.heateor_sss_facebook_like .fb-like span,li.heateor_sss_facebook_recommend .fb-like span,li.heateor_sss_facebook_share .fb-share-button span{vertical-align:top!important}li.heateor_sss_facebook_like .fb-like span iframe,li.heateor_sss_facebook_recommend .fb-like span iframe{max-width:none!important;z-index:1000}.heateor_sss_counter_container li{height:21px}.heateorSssTCBackground:hover{border-width:0!important;background-color:transparent}.heateorSssTCBackground{border-width:0!important;background-color:transparent!important;font-style:normal;word-wrap:normal;color:#666;line-height:1;visibility:hidden}.heateorSssSharingSvg{width:100%;height:100%}.heateorSssSharing{float:left;border:none}.heateorSssSharingArrow{height:16px;width:16px;cursor:pointer;margin-top:10px}.heateorSssPushIn{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.heateorSssPullOut{background:url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat}.heateorSssCommentingTabs li{padding-left:0!important;float:left;margin:0 1em 0 0 !important;list-style:none;color:#aaa;display:block;cursor:pointer;font-size:.85em}div.heateorSssTotalShareCount{word-wrap:normal!important;font-weight:bolder;font-family:sans-serif;padding:0;margin:0;text-align:center}div.heateorSssTotalShareText{word-wrap:normal!important;margin:0;padding:0;text-align:center}div.heateor_sss_horizontal_sharing li{width:auto}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like{width:91px}div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend{width:145px}div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet{width:95px}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share span{vertical-align:text-top!important}div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share{width:96px}div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share{width:108px}div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge{width:130px}div.heateor_sss_horizontal_sharing li.heateor_sss_yummly{width:106px}div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin{width:76px}div.heateor_sss_horizontal_sharing li.heateor_sss_xing{width:98px}.heateor_sss_sharing_container a{padding:0!important;box-shadow:none!important;border:none!important}.heateorSssClear{clear:both}div.course_instructor_widget .heateor_sss_vertical_sharing{display:none!important}@media screen and (max-width:783px){#heateor_sss_sharing_more_providers{width:80%;left:60%;margin-left:-50%;text-shadow:none!important}}@media screen and (max-width:752px){#heateor_sss_sharing_more_content .all-services ul li{width:32.1%}}@media screen and (max-width:590px){#heateor_sss_sharing_more_content .all-services ul li{width:48.1%}#heateor_sss_sharing_more_providers .filter input.search{width:93%}}@media screen and (max-width:413px){#heateor_sss_sharing_more_content .all-services ul li{width:100%}}div.heateor_sss_bottom_sharing{margin-bottom:0}div.heateor_sss_sharing_container a:before,div.heateor_sss_follow_icons_container a:before{content:none}.heateor_sss_mastodon_popup_button{background:linear-gradient(#ec1b23,#d43116);padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:4px auto;font-weight:bolder;width:35%;cursor:pointer;border-bottom-style:groove;border-bottom-width:5px;border-bottom-color: rgb(0,0,0,.2)}@media screen and (max-width: 783px)#heateor_sss_sharing_more_providers .filter input.search{border:1px solid #ccc;width:92.8%}div.heateor_sss_follow_icons_container svg,div.heateor_sss_sharing_container svg{width:100%;height:100%}.searchwp-live-search-results{background:#fff;border-radius:3px;-webkit-box-shadow:0 0 2px 0 rgba(30,30,30,.4);box-shadow:0 0 2px 0 rgba(30,30,30,.4);-webkit-box-sizing:border-box;box-sizing:border-box;-moz-box-sizing:border-box;max-height:300px;min-height:175px;min-width:315px;width:315px}.searchwp-live-search-result{border-bottom:1px solid rgba(30,30,30,.1);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:10px;padding:10px}.searchwp-live-search-result:last-child{border-bottom:none}.searchwp-live-search-result--img{-ms-flex-negative:0;flex-shrink:0}.searchwp-live-search-result--img,.searchwp-live-search-results-container.swp-ls--img-sm .searchwp-live-search-result--img{-ms-flex-preferred-size:70px;flex-basis:70px}.searchwp-live-search-results-container.swp-ls--img-m .searchwp-live-search-result--img{-ms-flex-preferred-size:110px;flex-basis:110px}.searchwp-live-search-results-container.swp-ls--img-l .searchwp-live-search-result--img{-ms-flex-preferred-size:150px;flex-basis:150px}.searchwp-live-search-result--img img{display:block;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:top;object-position:top;width:100%}.searchwp-live-search-result--info{-webkit-box-flex:1;-ms-flex:1 1 250px;flex:1 1 250px;overflow:hidden;text-overflow:ellipsis}.searchwp-live-search-result--title{font-size:1.1em;font-weight:700;margin-top:0}.searchwp-live-search-result--desc{font-size:.9em}.searchwp-live-search-result--ecommerce{-ms-flex-negative:0;flex-shrink:0;margin-left:auto;text-align:end}.searchwp-live-search-result--ecommerce *{font-size:1em}.searchwp-live-search-no-min-chars .spinner{opacity:.3}.searchwp-live-search-result--focused{background:#f7f7f7}.searchwp-live-search-instructions{clip:rect(1px,1px,1px,1px)!important;border:0!important;clip-path:inset(50%)!important;height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}@-webkit-keyframes searchwp-spinner-line-fade-more{0%,to{opacity:0}1%{opacity:1}}@keyframes searchwp-spinner-line-fade-more{0%,to{opacity:0}1%{opacity:1}}@-webkit-keyframes searchwp-spinner-line-fade-quick{0%,39%,to{opacity:.25}40%{opacity:1}}@keyframes searchwp-spinner-line-fade-quick{0%,39%,to{opacity:.25}40%{opacity:1}}@-webkit-keyframes searchwp-spinner-line-fade-default{0%,to{opacity:.22}1%{opacity:1}}@keyframes searchwp-spinner-line-fade-default{0%,to{opacity:.22}1%{opacity:1}}.swp-flex--col{display:flex;flex-direction:column;flex-grow:1}form.searchwp-form .swp-flex--row{align-items:center;display:flex;flex-direction:row;flex-grow:1;flex-wrap:nowrap;justify-content:flex-start}form.searchwp-form .swp-flex--wrap{flex-wrap:wrap}form.searchwp-form .swp-flex--gap-sm{gap:.25em}form.searchwp-form .swp-flex--gap-md{gap:.5em}form.searchwp-form .swp-items-stretch{align-items:stretch}form.searchwp-form .swp-margin-l-auto{margin-left:auto}form.searchwp-form input.swp-input,form.searchwp-form select.swp-select{color:rgba(14,33,33,.8)}form.searchwp-form select.swp-select{appearance:none;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='11' fill='none'%3E%3Cpath fill='%230E2121' fill-opacity='.8' d='M14.292.814 8.096 6.958 1.903.814 0 2.706l8.097 8.049 8.097-8.05z'/%3E%3C/svg%3E");background-position:right 12px top 50%;background-repeat:no-repeat;background-size:12px auto;min-height:2em;min-width:fit-content;padding:0 33px 0 .7em}form.searchwp-form input.swp-input--search{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none'%3E%3Cpath fill='%23CFCFCF' d='M6.068 12.136c1.31 0 2.533-.426 3.527-1.136l3.74 3.74c.174.173.402.26.64.26.512 0 .883-.395.883-.9a.87.87 0 0 0-.253-.63L10.89 9.744a6.04 6.04 0 0 0 1.247-3.677C12.136 2.73 9.406 0 6.068 0 2.722 0 0 2.73 0 6.068s2.722 6.068 6.068 6.068m0-1.31c-2.612 0-4.758-2.154-4.758-4.758S3.456 1.31 6.068 1.31c2.604 0 4.758 2.154 4.758 4.758s-2.154 4.758-4.758 4.758'/%3E%3C/svg%3E");background-position:right 12px top 50%;background-repeat:no-repeat;background-size:15px auto;padding-left:.7em;padding-right:38px}form.searchwp-form .searchwp-form-input-container{display:flex;flex-direction:row;flex-grow:1;flex-wrap:nowrap;justify-content:flex-start}form.searchwp-form .searchwp-form-input-container .swp-input{margin:0;width:100%}form.searchwp-form .searchwp-form-input-container .swp-select{border-right:0}form.searchwp-form .searchwp-form-input-container .swp-select+.swp-input{flex-grow:1}form.searchwp-form .searchwp-form-advanced-filters-toggle{text-align:right}form.searchwp-form .searchwp-form-advanced-filters select{flex:1}form.searchwp-form .swp-toggle{cursor:pointer;margin-bottom:0}form.searchwp-form .swp-toggle-switch{background-color:rgba(14,33,33,.14);border-radius:20px;height:22px;position:relative;transition:background-color .25s;width:40px}form.searchwp-form .swp-toggle-switch:not(.swp-toggle-switch--mini):hover{background-color:rgba(14,33,33,.2)}form.searchwp-form .swp-toggle-switch--mini{height:15px;width:25px}form.searchwp-form .swp-toggle-switch:after,form.searchwp-form .swp-toggle-switch:before{content:""}form.searchwp-form .swp-toggle-switch:before{background:#fff;border-radius:50%;display:block;height:18px;left:2px;position:absolute;top:2px;-webkit-transition:left .25s;-o-transition:left .25s;transition:left .25s;width:18px}form.searchwp-form .swp-toggle-switch--mini:before{height:11px;left:2px;top:2px;width:11px}form.searchwp-form .swp-toggle-checkbox:checked+.swp-toggle-switch,form.searchwp-form .swp-toggle-switch--checked{background:currentcolor}form.searchwp-form .swp-toggle-checkbox:checked+.swp-toggle-switch:before{left:20px}form.searchwp-form .swp-toggle-checkbox:checked+.swp-toggle-switch--mini:before,form.searchwp-form .swp-toggle-switch--checked.swp-toggle-switch--mini:before{left:12px}form.searchwp-form input.swp-toggle-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;height:0;overflow:hidden;position:absolute;width:0}form.searchwp-form input.swp-toggle-checkbox:focus{border:none;box-shadow:none;outline:none}form.searchwp-form .swp-toggle .swp-label{display:block;margin-top:21px}form.searchwp-form input.swp-toggle-checkbox:active+.swp-toggle-switch,form.searchwp-form input.swp-toggle-checkbox:focus+.swp-toggle-switch{border:none;-webkit-box-shadow:0 0 1px 1px rgba(14,33,33,.14);box-shadow:0 0 1px 1px rgba(14,33,33,.14)}.vc_non_responsive .vc_row .vc_col-sm-1,.vc_non_responsive .vc_row .vc_col-sm-10,.vc_non_responsive .vc_row .vc_col-sm-11,.vc_non_responsive .vc_row .vc_col-sm-12,.vc_non_responsive .vc_row .vc_col-sm-2,.vc_non_responsive .vc_row .vc_col-sm-3,.vc_non_responsive .vc_row .vc_col-sm-4,.vc_non_responsive .vc_row .vc_col-sm-5,.vc_non_responsive .vc_row .vc_col-sm-7,.vc_non_responsive .vc_row .vc_col-sm-8,.vc_non_responsive .vc_row .vc_col-sm-9{padding-left:15px;padding-right:15px;float:left}.vc_parallax-inner iframe,.vc_video-bg iframe{max-width:1000%}.vc_clearfix:after,.vc_column-inner::after,.vc_el-clearfix,.vc_row:after{clear:both}.vc-composer-icon,[class*=" vc_arrow-icon-"],[class^=vc_arrow-icon-]{speak:none;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vc_row:after,.vc_row:before{content:" ";display:table}@media (max-width:767px){.vc_hidden-xs{display:none!important}.vc_el-clearfix-xs{clear:both}}@media (min-width:768px) and (max-width:991px){.vc_hidden-sm{display:none!important}.vc_el-clearfix-sm{clear:both}}@media (min-width:992px) and (max-width:1199px){.vc_hidden-md{display:none!important}.vc_el-clearfix-md{clear:both}}.vc_non_responsive .vc_row .vc_col-sm-1{position:relative;width:8.33333333%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-2{position:relative;width:16.66666667%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-3{position:relative;width:25%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-4{position:relative;width:33.33333333%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-5{position:relative;width:41.66666667%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-6{position:relative;float:left;width:50%;min-height:1px;padding-left:15px;padding-right:15px}.vc_non_responsive .vc_row .vc_col-sm-7{position:relative;width:58.33333333%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-8{position:relative;width:66.66666667%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-9{position:relative;width:75%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-10{position:relative;width:83.33333333%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-11{position:relative;width:91.66666667%;min-height:1px}.vc_col-xs-12,.vc_column_container{width:100%}.vc_non_responsive .vc_row .vc_col-sm-12{position:relative;width:100%;min-height:1px}.vc_non_responsive .vc_row .vc_col-sm-offset-12{margin-left:100%}.vc_non_responsive .vc_row .vc_col-sm-offset-11{margin-left:91.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-10{margin-left:83.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-9{margin-left:75%}.vc_non_responsive .vc_row .vc_col-sm-offset-8{margin-left:66.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-7{margin-left:58.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-6{margin-left:50%}.vc_non_responsive .vc_row .vc_col-sm-offset-5{margin-left:41.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-4{margin-left:33.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-3{margin-left:25%}.vc_non_responsive .vc_row .vc_col-sm-offset-2{margin-left:16.66666667%}.vc_non_responsive .vc_row .vc_col-sm-offset-1{margin-left:8.33333333%}.vc_non_responsive .vc_row .vc_col-sm-offset-0{margin-left:0}.vc_non_responsive .vc_row .vc_hidden-sm{display:none!important}.vc_row{margin-left:-15px;margin-right:-15px}.vc_col-lg-1,.vc_col-lg-10,.vc_col-lg-11,.vc_col-lg-12,.vc_col-lg-2,.vc_col-lg-3,.vc_col-lg-4,.vc_col-lg-5,.vc_col-lg-6,.vc_col-lg-7,.vc_col-lg-8,.vc_col-lg-9,.vc_col-md-1,.vc_col-md-10,.vc_col-md-11,.vc_col-md-12,.vc_col-md-2,.vc_col-md-3,.vc_col-md-4,.vc_col-md-5,.vc_col-md-6,.vc_col-md-7,.vc_col-md-8,.vc_col-md-9,.vc_col-sm-1,.vc_col-sm-10,.vc_col-sm-11,.vc_col-sm-12,.vc_col-sm-2,.vc_col-sm-3,.vc_col-sm-4,.vc_col-sm-5,.vc_col-sm-6,.vc_col-sm-7,.vc_col-sm-8,.vc_col-sm-9,.vc_col-xs-1,.vc_col-xs-10,.vc_col-xs-11,.vc_col-xs-12,.vc_col-xs-2,.vc_col-xs-3,.vc_col-xs-4,.vc_col-xs-5,.vc_col-xs-6,.vc_col-xs-7,.vc_col-xs-8,.vc_col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.vc_col-xs-1,.vc_col-xs-10,.vc_col-xs-11,.vc_col-xs-12,.vc_col-xs-2,.vc_col-xs-3,.vc_col-xs-4,.vc_col-xs-5,.vc_col-xs-6,.vc_col-xs-7,.vc_col-xs-8,.vc_col-xs-9{float:left}.vc_col-xs-11{width:91.66666667%}.vc_col-xs-10{width:83.33333333%}.vc_col-xs-9{width:75%}.vc_col-xs-8{width:66.66666667%}.vc_col-xs-7{width:58.33333333%}.vc_col-xs-6{width:50%}.vc_col-xs-5{width:41.66666667%}.vc_col-xs-4{width:33.33333333%}.vc_col-xs-3{width:25%}.vc_col-xs-2{width:16.66666667%}.vc_col-xs-1{width:8.33333333%}.vc_col-xs-pull-12{right:100%}.vc_col-xs-pull-11{right:91.66666667%}.vc_col-xs-pull-10{right:83.33333333%}.vc_col-xs-pull-9{right:75%}.vc_col-xs-pull-8{right:66.66666667%}.vc_col-xs-pull-7{right:58.33333333%}.vc_col-xs-pull-6{right:50%}.vc_col-xs-pull-5{right:41.66666667%}.vc_col-xs-pull-4{right:33.33333333%}.vc_col-xs-pull-3{right:25%}.vc_col-xs-pull-2{right:16.66666667%}.vc_col-xs-pull-1{right:8.33333333%}.vc_col-xs-pull-0{right:auto}.vc_col-xs-push-12{left:100%}.vc_col-xs-push-11{left:91.66666667%}.vc_col-xs-push-10{left:83.33333333%}.vc_col-xs-push-9{left:75%}.vc_col-xs-push-8{left:66.66666667%}.vc_col-xs-push-7{left:58.33333333%}.vc_col-xs-push-6{left:50%}.vc_col-xs-push-5{left:41.66666667%}.vc_col-xs-push-4{left:33.33333333%}.vc_col-xs-push-3{left:25%}.vc_col-xs-push-2{left:16.66666667%}.vc_col-xs-push-1{left:8.33333333%}.vc_col-xs-push-0{left:auto}.vc_col-xs-offset-12{margin-left:100%}.vc_col-xs-offset-11{margin-left:91.66666667%}.vc_col-xs-offset-10{margin-left:83.33333333%}.vc_col-xs-offset-9{margin-left:75%}.vc_col-xs-offset-8{margin-left:66.66666667%}.vc_col-xs-offset-7{margin-left:58.33333333%}.vc_col-xs-offset-6{margin-left:50%}.vc_col-xs-offset-5{margin-left:41.66666667%}.vc_col-xs-offset-4{margin-left:33.33333333%}.vc_col-xs-offset-3{margin-left:25%}.vc_col-xs-offset-2{margin-left:16.66666667%}.vc_col-xs-offset-1{margin-left:8.33333333%}.vc_col-xs-offset-0{margin-left:0}@media (min-width:768px){.vc_col-sm-1,.vc_col-sm-10,.vc_col-sm-11,.vc_col-sm-12,.vc_col-sm-2,.vc_col-sm-3,.vc_col-sm-4,.vc_col-sm-5,.vc_col-sm-6,.vc_col-sm-7,.vc_col-sm-8,.vc_col-sm-9{float:left}.vc_col-sm-12{width:100%}.vc_col-sm-11{width:91.66666667%}.vc_col-sm-10{width:83.33333333%}.vc_col-sm-9{width:75%}.vc_col-sm-8{width:66.66666667%}.vc_col-sm-7{width:58.33333333%}.vc_col-sm-6{width:50%}.vc_col-sm-5{width:41.66666667%}.vc_col-sm-4{width:33.33333333%}.vc_col-sm-3{width:25%}.vc_col-sm-2{width:16.66666667%}.vc_col-sm-1{width:8.33333333%}.vc_col-sm-pull-12{right:100%}.vc_col-sm-pull-11{right:91.66666667%}.vc_col-sm-pull-10{right:83.33333333%}.vc_col-sm-pull-9{right:75%}.vc_col-sm-pull-8{right:66.66666667%}.vc_col-sm-pull-7{right:58.33333333%}.vc_col-sm-pull-6{right:50%}.vc_col-sm-pull-5{right:41.66666667%}.vc_col-sm-pull-4{right:33.33333333%}.vc_col-sm-pull-3{right:25%}.vc_col-sm-pull-2{right:16.66666667%}.vc_col-sm-pull-1{right:8.33333333%}.vc_col-sm-pull-0{right:auto}.vc_col-sm-push-12{left:100%}.vc_col-sm-push-11{left:91.66666667%}.vc_col-sm-push-10{left:83.33333333%}.vc_col-sm-push-9{left:75%}.vc_col-sm-push-8{left:66.66666667%}.vc_col-sm-push-7{left:58.33333333%}.vc_col-sm-push-6{left:50%}.vc_col-sm-push-5{left:41.66666667%}.vc_col-sm-push-4{left:33.33333333%}.vc_col-sm-push-3{left:25%}.vc_col-sm-push-2{left:16.66666667%}.vc_col-sm-push-1{left:8.33333333%}.vc_col-sm-push-0{left:auto}.vc_col-sm-offset-12{margin-left:100%}.vc_col-sm-offset-11{margin-left:91.66666667%}.vc_col-sm-offset-10{margin-left:83.33333333%}.vc_col-sm-offset-9{margin-left:75%}.vc_col-sm-offset-8{margin-left:66.66666667%}.vc_col-sm-offset-7{margin-left:58.33333333%}.vc_col-sm-offset-6{margin-left:50%}.vc_col-sm-offset-5{margin-left:41.66666667%}.vc_col-sm-offset-4{margin-left:33.33333333%}.vc_col-sm-offset-3{margin-left:25%}.vc_col-sm-offset-2{margin-left:16.66666667%}.vc_col-sm-offset-1{margin-left:8.33333333%}.vc_col-sm-offset-0{margin-left:0}}@media (min-width:992px){.vc_col-md-1,.vc_col-md-10,.vc_col-md-11,.vc_col-md-12,.vc_col-md-2,.vc_col-md-3,.vc_col-md-4,.vc_col-md-5,.vc_col-md-6,.vc_col-md-7,.vc_col-md-8,.vc_col-md-9{float:left}.vc_col-md-12{width:100%}.vc_col-md-11{width:91.66666667%}.vc_col-md-10{width:83.33333333%}.vc_col-md-9{width:75%}.vc_col-md-8{width:66.66666667%}.vc_col-md-7{width:58.33333333%}.vc_col-md-6{width:50%}.vc_col-md-5{width:41.66666667%}.vc_col-md-4{width:33.33333333%}.vc_col-md-3{width:25%}.vc_col-md-2{width:16.66666667%}.vc_col-md-1{width:8.33333333%}.vc_col-md-pull-12{right:100%}.vc_col-md-pull-11{right:91.66666667%}.vc_col-md-pull-10{right:83.33333333%}.vc_col-md-pull-9{right:75%}.vc_col-md-pull-8{right:66.66666667%}.vc_col-md-pull-7{right:58.33333333%}.vc_col-md-pull-6{right:50%}.vc_col-md-pull-5{right:41.66666667%}.vc_col-md-pull-4{right:33.33333333%}.vc_col-md-pull-3{right:25%}.vc_col-md-pull-2{right:16.66666667%}.vc_col-md-pull-1{right:8.33333333%}.vc_col-md-pull-0{right:auto}.vc_col-md-push-12{left:100%}.vc_col-md-push-11{left:91.66666667%}.vc_col-md-push-10{left:83.33333333%}.vc_col-md-push-9{left:75%}.vc_col-md-push-8{left:66.66666667%}.vc_col-md-push-7{left:58.33333333%}.vc_col-md-push-6{left:50%}.vc_col-md-push-5{left:41.66666667%}.vc_col-md-push-4{left:33.33333333%}.vc_col-md-push-3{left:25%}.vc_col-md-push-2{left:16.66666667%}.vc_col-md-push-1{left:8.33333333%}.vc_col-md-push-0{left:auto}.vc_col-md-offset-12{margin-left:100%}.vc_col-md-offset-11{margin-left:91.66666667%}.vc_col-md-offset-10{margin-left:83.33333333%}.vc_col-md-offset-9{margin-left:75%}.vc_col-md-offset-8{margin-left:66.66666667%}.vc_col-md-offset-7{margin-left:58.33333333%}.vc_col-md-offset-6{margin-left:50%}.vc_col-md-offset-5{margin-left:41.66666667%}.vc_col-md-offset-4{margin-left:33.33333333%}.vc_col-md-offset-3{margin-left:25%}.vc_col-md-offset-2{margin-left:16.66666667%}.vc_col-md-offset-1{margin-left:8.33333333%}.vc_col-md-offset-0{margin-left:0}}@media (min-width:1200px){.vc_hidden-lg{display:none!important}.vc_col-lg-1,.vc_col-lg-10,.vc_col-lg-11,.vc_col-lg-12,.vc_col-lg-2,.vc_col-lg-3,.vc_col-lg-4,.vc_col-lg-5,.vc_col-lg-6,.vc_col-lg-7,.vc_col-lg-8,.vc_col-lg-9{float:left}.vc_col-lg-12{width:100%}.vc_col-lg-11{width:91.66666667%}.vc_col-lg-10{width:83.33333333%}.vc_col-lg-9{width:75%}.vc_col-lg-8{width:66.66666667%}.vc_col-lg-7{width:58.33333333%}.vc_col-lg-6{width:50%}.vc_col-lg-5{width:41.66666667%}.vc_col-lg-4{width:33.33333333%}.vc_col-lg-3{width:25%}.vc_col-lg-2{width:16.66666667%}.vc_col-lg-1{width:8.33333333%}.vc_col-lg-pull-12{right:100%}.vc_col-lg-pull-11{right:91.66666667%}.vc_col-lg-pull-10{right:83.33333333%}.vc_col-lg-pull-9{right:75%}.vc_col-lg-pull-8{right:66.66666667%}.vc_col-lg-pull-7{right:58.33333333%}.vc_col-lg-pull-6{right:50%}.vc_col-lg-pull-5{right:41.66666667%}.vc_col-lg-pull-4{right:33.33333333%}.vc_col-lg-pull-3{right:25%}.vc_col-lg-pull-2{right:16.66666667%}.vc_col-lg-pull-1{right:8.33333333%}.vc_col-lg-pull-0{right:auto}.vc_col-lg-push-12{left:100%}.vc_col-lg-push-11{left:91.66666667%}.vc_col-lg-push-10{left:83.33333333%}.vc_col-lg-push-9{left:75%}.vc_col-lg-push-8{left:66.66666667%}.vc_col-lg-push-7{left:58.33333333%}.vc_col-lg-push-6{left:50%}.vc_col-lg-push-5{left:41.66666667%}.vc_col-lg-push-4{left:33.33333333%}.vc_col-lg-push-3{left:25%}.vc_col-lg-push-2{left:16.66666667%}.vc_col-lg-push-1{left:8.33333333%}.vc_col-lg-push-0{left:auto}.vc_col-lg-offset-12{margin-left:100%}.vc_col-lg-offset-11{margin-left:91.66666667%}.vc_col-lg-offset-10{margin-left:83.33333333%}.vc_col-lg-offset-9{margin-left:75%}.vc_col-lg-offset-8{margin-left:66.66666667%}.vc_col-lg-offset-7{margin-left:58.33333333%}.vc_col-lg-offset-6{margin-left:50%}.vc_col-lg-offset-5{margin-left:41.66666667%}.vc_col-lg-offset-4{margin-left:33.33333333%}.vc_col-lg-offset-3{margin-left:25%}.vc_col-lg-offset-2{margin-left:16.66666667%}.vc_col-lg-offset-1{margin-left:8.33333333%}.vc_col-lg-offset-0{margin-left:0}.vc_el-clearfix-lg{clear:both}}.vc_el_width_100,.vc_el_width_50,.vc_el_width_60,.vc_el_width_70,.vc_el_width_80,.vc_el_width_90{margin-left:auto!important;margin-right:auto!important}.vc_pull-right{float:right!important}.vc_pull-left{float:left!important}.vc_clearfix:after,.vc_clearfix:before{content:" ";display:table}.vc_visible{display:block}.vc_table{width:100%;margin-bottom:20px;border-collapse:collapse}.vc_table>tbody>tr>td,.vc_table>tbody>tr>th,.vc_table>tfoot>tr>td,.vc_table>tfoot>tr>th,.vc_table>thead>tr>td,.vc_table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.vc_table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.vc_button-2-wrapper,.vc_pixel_icon{display:inline-block;vertical-align:middle}.vc_table>caption+thead>tr:first-child>td,.vc_table>caption+thead>tr:first-child>th,.vc_table>colgroup+thead>tr:first-child>td,.vc_table>colgroup+thead>tr:first-child>th,.vc_table>thead:first-child>tr:first-child>td,.vc_table>thead:first-child>tr:first-child>th{border-top:0}.vc_table>tbody+tbody{border-top:2px solid #ddd}.vc_table .table{background-color:#fff}.vc_table-bordered,.vc_table-bordered>tbody>tr>td,.vc_table-bordered>tbody>tr>th,.vc_table-bordered>tfoot>tr>td,.vc_table-bordered>tfoot>tr>th,.vc_table-bordered>thead>tr>td,.vc_table-bordered>thead>tr>th{border:1px solid #ddd}.vc_table-bordered>thead>tr>td,.vc_table-bordered>thead>tr>th{border-bottom-width:2px}.vc_pixel_icon{height:16px;width:16px;background-position:0 0;background-repeat:no-repeat}.vc_pixel_icon-alert{background-image:url(/wp-content/plugins/js_composer/assets/vc/alert.png)}.vc_pixel_icon-info{background-image:url(/wp-content/plugins/js_composer/assets/vc/info.png)}.vc_pixel_icon-tick{background-image:url(/wp-content/plugins/js_composer/assets/vc/tick.png)}.vc_pixel_icon-explanation{background-image:url(/wp-content/plugins/js_composer/assets/vc/exclamation.png)}.vc_pixel_icon-address_book{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/address-book.png)}.vc_pixel_icon-alarm_clock{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/alarm-clock.png)}.vc_pixel_icon-anchor{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/anchor.png)}.vc_pixel_icon-application_image{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/application-image.png)}.vc_pixel_icon-arrow{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/arrow.png)}.vc_pixel_icon-asterisk{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/asterisk.png)}.vc_pixel_icon-hammer{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/auction-hammer.png)}.vc_pixel_icon-balloon{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/balloon.png)}.vc_pixel_icon-balloon_buzz{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/balloon-buzz.png)}.vc_pixel_icon-balloon_facebook{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/balloon-facebook.png)}.vc_pixel_icon-balloon_twitter{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/balloon-twitter.png)}.vc_pixel_icon-battery{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/battery-full.png)}.vc_pixel_icon-binocular{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/binocular.png)}.vc_pixel_icon-document_excel{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-excel.png)}.vc_pixel_icon-document_image{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-image.png)}.vc_pixel_icon-document_music{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-music.png)}.vc_pixel_icon-document_office{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-office.png)}.vc_pixel_icon-document_pdf{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-pdf.png)}.vc_pixel_icon-document_powerpoint{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-powerpoint.png)}.vc_pixel_icon-document_word{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-word.png)}.vc_pixel_icon-bookmark{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/bookmark.png)}.vc_pixel_icon-camcorder{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/camcorder.png)}.vc_pixel_icon-camera{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/camera.png)}.vc_pixel_icon-chart{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/chart.png)}.vc_pixel_icon-chart_pie{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/chart-pie.png)}.vc_pixel_icon-clock{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/clock.png)}.vc_pixel_icon-play{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/control.png)}.vc_pixel_icon-fire{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/fire.png)}.vc_pixel_icon-heart{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/heart.png)}.vc_pixel_icon-mail{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/mail.png)}.vc_pixel_icon-shield{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/plus-shield.png)}.vc_pixel_icon-video{background-image:url(/wp-content/plugins/js_composer/assets/images/icons/video.png)}@font-face{font-family:vcpb-plugin-icons;src:url(/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.ttf?i5rhx5) format('truetype'),url(/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.woff?i5rhx5) format('woff'),url(/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.svg?i5rhx5#vcpb-plugin-icons) format('svg');font-weight:400;font-style:normal}.vc-composer-icon{font-family:vcpb-plugin-icons!important;font-style:normal;font-weight:400;line-height:1}.vc-c-icon-minimize:before{content:"\e91b"}.vc-c-icon-close:before{content:"\e5cd"}.vc-c-icon-1-6_4-6_1-6:before{content:"\e90d"}.vc-c-icon-add_template:before{content:"\e903"}.vc-c-icon-arrow_back:before{content:"\e5c4"}.vc-c-icon-arrow_drop_down:before{content:"\e5c5"}.vc-c-icon-arrow_drop_up:before{content:"\e5c7"}.vc-c-icon-arrow_forward:before{content:"\e5c8"}.vc-c-icon-check:before{content:"\e5ca"}.vc-c-icon-arrow_upward:before{content:"\e5d8"}.vc-c-icon-arrow_downward:before{content:"\e5db"}.vc-c-icon-sync:before{content:"\e627"}.vc-c-icon-search:before{content:"\e8b6"}.vc-c-icon-1-1:before{content:"\e900"}.vc-c-icon-1-2_1-2:before{content:"\e901"}.vc-c-icon-1-3_1-3_1-3:before{content:"\e902"}.vc-c-icon-1-4_1-2_1-4:before{content:"\e904"}.vc-c-icon-1-4_1-4_1-4_1-4:before{content:"\e905"}.vc-c-icon-1-4_3-4:before{content:"\e906"}.vc-c-icon-1-6_1-6_1-6_1-2:before{content:"\e907"}.vc-c-icon-1-6_1-6_1-6_1-6_1-6_1-6:before{content:"\e908"}.vc-c-icon-1-6_2-3_1-6:before{content:"\e909"}.vc-c-icon-2-3_1-3:before{content:"\e90a"}.vc-c-icon-5-6_1-6:before{content:"\e90b"}.vc-c-icon-add_element:before{content:"\e90c"}.vc-c-icon-add:before{content:"\e90e"}.vc-c-icon-cog:before{content:"\e90f"}.vc-c-icon-content_copy:before{content:"\e910"}.vc-c-icon-delete_empty:before{content:"\e911"}.vc-c-icon-dragndrop:before{content:"\e912"}.vc-c-icon-fullscreen_exit:before{content:"\e913"}.vc-c-icon-fullscreen:before{content:"\e914"}.vc-c-icon-arrow_drop_right:before{content:"\e915"}.vc-c-icon-layout_default:before{content:"\e916"}.vc-c-icon-layout_landscape-smartphones:before{content:"\e917"}.vc-c-icon-layout_landscape-tablets:before{content:"\e918"}.vc-c-icon-layout_portrait-smartphones:before{content:"\e919"}.vc-c-icon-layout_portrait-tablets:before{content:"\e91a"}.vc-c-icon-mode_edit:before{content:"\e91c"}.vc-c-icon-row_default_fe:before{content:"\e91d"}.vc-c-icon-text-block:before{content:"\e91e"}.vc_txt_align_left{text-align:left}.vc_txt_align_right{text-align:right}.vc_txt_align_center{text-align:center}.vc_txt_align_justify{text-align:justify;text-justify:inter-word}.vc_el_width_50{width:50%}.vc_el_width_60{width:60%}.vc_el_width_70{width:70%}.vc_el_width_80{width:80%}.vc_el_width_90{width:90%}.vc_el_width_100{width:100%}.vc_btn,a.vc_btn,button.vc_btn{cursor:pointer;display:inline-block;text-decoration:none!important;padding:9px 12px;font-size:100%;line-height:20px;border-radius:4px}.vc_general.vc_btn3,.wpb_button:hover,a.wpb_button_a,a.wpb_button_a:hover{text-decoration:none}.vc_btn,.vc_btn:focus,.vc_btn:hover,a.vc_btn,a.vc_btn:focus,a.vc_btn:hover,button.vc_btn,button.vc_btn:focus,button.vc_btn:hover{border:1px solid transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.vc_btn-lg,a.vc_btn-lg,button.vc_btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.vc_btn-sm,a.vc_btn-sm,button.vc_btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.vc_btn-xs,a.vc_btn-xs,button.vc_btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.vc_btn_square,a.vc_btn_square,button.vc_btn_square{border-radius:0}.vc_btn_square_outlined,a.vc_btn_square_outlined,button.vc_btn_square_outlined{border-radius:0;background:0 0!important}.vc_btn_square_outlined,.vc_btn_square_outlined:focus,.vc_btn_square_outlined:hover,a.vc_btn_square_outlined,a.vc_btn_square_outlined:focus,a.vc_btn_square_outlined:hover,button.vc_btn_square_outlined,button.vc_btn_square_outlined:focus,button.vc_btn_square_outlined:hover{border:2px solid}.vc_btn_round,a.vc_btn_round,button.vc_btn_round{border-radius:25px}.vc_btn_outlined,a.vc_btn_outlined,button.vc_btn_outlined{background:0 0!important}.open>.dropdown-toggle.vc_btn-danger,.open>.dropdown-toggle.vc_btn-default,.open>.dropdown-toggle.vc_btn-info,.open>.dropdown-toggle.vc_btn-primary,.open>.dropdown-toggle.vc_btn-success,.open>.dropdown-toggle.vc_btn-warning,.open>.dropdown-togglea.vc_btn-danger,.open>.dropdown-togglea.vc_btn-default,.open>.dropdown-togglea.vc_btn-info,.open>.dropdown-togglea.vc_btn-primary,.open>.dropdown-togglea.vc_btn-success,.open>.dropdown-togglea.vc_btn-warning,.open>.dropdown-togglebutton.vc_btn-danger,.open>.dropdown-togglebutton.vc_btn-default,.open>.dropdown-togglebutton.vc_btn-info,.open>.dropdown-togglebutton.vc_btn-primary,.open>.dropdown-togglebutton.vc_btn-success,.open>.dropdown-togglebutton.vc_btn-warning,.vc_btn-danger.active,.vc_btn-danger:active,.vc_btn-default.active,.vc_btn-default:active,.vc_btn-info.active,.vc_btn-info:active,.vc_btn-primary.active,.vc_btn-primary:active,.vc_btn-success.active,.vc_btn-success:active,.vc_btn-warning.active,.vc_btn-warning:active,a.vc_btn-danger.active,a.vc_btn-danger:active,a.vc_btn-default.active,a.vc_btn-default:active,a.vc_btn-info.active,a.vc_btn-info:active,a.vc_btn-primary.active,a.vc_btn-primary:active,a.vc_btn-success.active,a.vc_btn-success:active,a.vc_btn-warning.active,a.vc_btn-warning:active,button.vc_btn-danger.active,button.vc_btn-danger:active,button.vc_btn-default.active,button.vc_btn-default:active,button.vc_btn-info.active,button.vc_btn-info:active,button.vc_btn-primary.active,button.vc_btn-primary:active,button.vc_btn-success.active,button.vc_btn-success:active,button.vc_btn-warning.active,button.vc_btn-warning:active{background-image:none}.vc_btn_outlined,.vc_btn_outlined:focus,.vc_btn_outlined:hover,a.vc_btn_outlined,a.vc_btn_outlined:focus,a.vc_btn_outlined:hover,button.vc_btn_outlined,button.vc_btn_outlined:focus,button.vc_btn_outlined:hover{border:2px solid}.vc_btn-blue,a.vc_btn-blue,button.vc_btn-blue{background-color:#5472D2;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-blue:hover,a.vc_btn-blue:hover,button.vc_btn-blue:hover{background-color:#3c5ecc;color:#f7f7f7!important}.vc_btn-blue.vc_btn_outlined,.vc_btn-blue.vc_btn_square_outlined,a.vc_btn-blue.vc_btn_outlined,a.vc_btn-blue.vc_btn_square_outlined,button.vc_btn-blue.vc_btn_outlined,button.vc_btn-blue.vc_btn_square_outlined{color:#5472D2!important}.vc_btn-blue.vc_btn_outlined:hover,.vc_btn-blue.vc_btn_square_outlined:hover,a.vc_btn-blue.vc_btn_outlined:hover,a.vc_btn-blue.vc_btn_square_outlined:hover,button.vc_btn-blue.vc_btn_outlined:hover,button.vc_btn-blue.vc_btn_square_outlined:hover{border-color:#3c5ecc}.vc_btn-blue.vc_btn_3d,a.vc_btn-blue.vc_btn_3d,button.vc_btn-blue.vc_btn_3d{-webkit-box-shadow:0 5px 0 #3253bc;box-shadow:0 5px 0 #3253bc;margin-bottom:5px}.vc_btn-blue.vc_btn_3d.vc_btn_xs,a.vc_btn-blue.vc_btn_3d.vc_btn_xs,button.vc_btn-blue.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #3253bc;box-shadow:0 3px 0 #3253bc;margin-bottom:3px}.vc_btn-blue.vc_btn_3d.vc_btn_sm,a.vc_btn-blue.vc_btn_3d.vc_btn_sm,button.vc_btn-blue.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #3253bc;box-shadow:0 4px 0 #3253bc;margin-bottom:4px}.vc_btn-turquoise,a.vc_btn-turquoise,button.vc_btn-turquoise{background-color:#00C1CF;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-turquoise:hover,a.vc_btn-turquoise:hover,button.vc_btn-turquoise:hover{background-color:#00a4b0;color:#f7f7f7!important}.vc_btn-turquoise.vc_btn_outlined,.vc_btn-turquoise.vc_btn_square_outlined,a.vc_btn-turquoise.vc_btn_outlined,a.vc_btn-turquoise.vc_btn_square_outlined,button.vc_btn-turquoise.vc_btn_outlined,button.vc_btn-turquoise.vc_btn_square_outlined{color:#00C1CF!important}.vc_btn-turquoise.vc_btn_outlined:hover,.vc_btn-turquoise.vc_btn_square_outlined:hover,a.vc_btn-turquoise.vc_btn_outlined:hover,a.vc_btn-turquoise.vc_btn_square_outlined:hover,button.vc_btn-turquoise.vc_btn_outlined:hover,button.vc_btn-turquoise.vc_btn_square_outlined:hover{border-color:#00a4b0}.vc_btn-turquoise.vc_btn_3d,a.vc_btn-turquoise.vc_btn_3d,button.vc_btn-turquoise.vc_btn_3d{-webkit-box-shadow:0 5px 0 #008d97;box-shadow:0 5px 0 #008d97;margin-bottom:5px}.vc_btn-turquoise.vc_btn_3d.vc_btn_xs,a.vc_btn-turquoise.vc_btn_3d.vc_btn_xs,button.vc_btn-turquoise.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #008d97;box-shadow:0 3px 0 #008d97;margin-bottom:3px}.vc_btn-turquoise.vc_btn_3d.vc_btn_sm,a.vc_btn-turquoise.vc_btn_3d.vc_btn_sm,button.vc_btn-turquoise.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #008d97;box-shadow:0 4px 0 #008d97;margin-bottom:4px}.vc_btn-pink,a.vc_btn-pink,button.vc_btn-pink{background-color:#FE6C61;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-pink:hover,a.vc_btn-pink:hover,button.vc_btn-pink:hover{background-color:#fe5043;color:#f7f7f7!important}.vc_btn-pink.vc_btn_outlined,.vc_btn-pink.vc_btn_square_outlined,a.vc_btn-pink.vc_btn_outlined,a.vc_btn-pink.vc_btn_square_outlined,button.vc_btn-pink.vc_btn_outlined,button.vc_btn-pink.vc_btn_square_outlined{color:#FE6C61!important}.vc_btn-pink.vc_btn_outlined:hover,.vc_btn-pink.vc_btn_square_outlined:hover,a.vc_btn-pink.vc_btn_outlined:hover,a.vc_btn-pink.vc_btn_square_outlined:hover,button.vc_btn-pink.vc_btn_outlined:hover,button.vc_btn-pink.vc_btn_square_outlined:hover{border-color:#fe5043}.vc_btn-pink.vc_btn_3d,a.vc_btn-pink.vc_btn_3d,button.vc_btn-pink.vc_btn_3d{-webkit-box-shadow:0 5px 0 #fe3829;box-shadow:0 5px 0 #fe3829;margin-bottom:5px}.vc_btn-pink.vc_btn_3d.vc_btn_xs,a.vc_btn-pink.vc_btn_3d.vc_btn_xs,button.vc_btn-pink.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #fe3829;box-shadow:0 3px 0 #fe3829;margin-bottom:3px}.vc_btn-pink.vc_btn_3d.vc_btn_sm,a.vc_btn-pink.vc_btn_3d.vc_btn_sm,button.vc_btn-pink.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #fe3829;box-shadow:0 4px 0 #fe3829;margin-bottom:4px}.vc_btn-violet,a.vc_btn-violet,button.vc_btn-violet{background-color:#8D6DC4;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-violet:hover,a.vc_btn-violet:hover,button.vc_btn-violet:hover{background-color:#7c57bb;color:#f7f7f7!important}.vc_btn-violet.vc_btn_outlined,.vc_btn-violet.vc_btn_square_outlined,a.vc_btn-violet.vc_btn_outlined,a.vc_btn-violet.vc_btn_square_outlined,button.vc_btn-violet.vc_btn_outlined,button.vc_btn-violet.vc_btn_square_outlined{color:#8D6DC4!important}.vc_btn-violet.vc_btn_outlined:hover,.vc_btn-violet.vc_btn_square_outlined:hover,a.vc_btn-violet.vc_btn_outlined:hover,a.vc_btn-violet.vc_btn_square_outlined:hover,button.vc_btn-violet.vc_btn_outlined:hover,button.vc_btn-violet.vc_btn_square_outlined:hover{border-color:#7c57bb}.vc_btn-violet.vc_btn_3d,a.vc_btn-violet.vc_btn_3d,button.vc_btn-violet.vc_btn_3d{-webkit-box-shadow:0 5px 0 #6e48b1;box-shadow:0 5px 0 #6e48b1;margin-bottom:5px}.vc_btn-violet.vc_btn_3d.vc_btn_xs,a.vc_btn-violet.vc_btn_3d.vc_btn_xs,button.vc_btn-violet.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #6e48b1;box-shadow:0 3px 0 #6e48b1;margin-bottom:3px}.vc_btn-violet.vc_btn_3d.vc_btn_sm,a.vc_btn-violet.vc_btn_3d.vc_btn_sm,button.vc_btn-violet.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #6e48b1;box-shadow:0 4px 0 #6e48b1;margin-bottom:4px}.vc_btn-peacoc,a.vc_btn-peacoc,button.vc_btn-peacoc{background-color:#4CADC9;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-peacoc:hover,a.vc_btn-peacoc:hover,button.vc_btn-peacoc:hover{background-color:#39a0bd;color:#f7f7f7!important}.vc_btn-peacoc.vc_btn_outlined,.vc_btn-peacoc.vc_btn_square_outlined,a.vc_btn-peacoc.vc_btn_outlined,a.vc_btn-peacoc.vc_btn_square_outlined,button.vc_btn-peacoc.vc_btn_outlined,button.vc_btn-peacoc.vc_btn_square_outlined{color:#4CADC9!important}.vc_btn-peacoc.vc_btn_outlined:hover,.vc_btn-peacoc.vc_btn_square_outlined:hover,a.vc_btn-peacoc.vc_btn_outlined:hover,a.vc_btn-peacoc.vc_btn_square_outlined:hover,button.vc_btn-peacoc.vc_btn_outlined:hover,button.vc_btn-peacoc.vc_btn_square_outlined:hover{border-color:#39a0bd}.vc_btn-peacoc.vc_btn_3d,a.vc_btn-peacoc.vc_btn_3d,button.vc_btn-peacoc.vc_btn_3d{-webkit-box-shadow:0 5px 0 #338faa;box-shadow:0 5px 0 #338faa;margin-bottom:5px}.vc_btn-peacoc.vc_btn_3d.vc_btn_xs,a.vc_btn-peacoc.vc_btn_3d.vc_btn_xs,button.vc_btn-peacoc.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #338faa;box-shadow:0 3px 0 #338faa;margin-bottom:3px}.vc_btn-peacoc.vc_btn_3d.vc_btn_sm,a.vc_btn-peacoc.vc_btn_3d.vc_btn_sm,button.vc_btn-peacoc.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #338faa;box-shadow:0 4px 0 #338faa;margin-bottom:4px}.vc_btn-chino,a.vc_btn-chino,button.vc_btn-chino{background-color:#CEC2AB;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-chino:hover,a.vc_btn-chino:hover,button.vc_btn-chino:hover{background-color:#c3b498;color:#f7f7f7!important}.vc_btn-chino.vc_btn_outlined,.vc_btn-chino.vc_btn_square_outlined,a.vc_btn-chino.vc_btn_outlined,a.vc_btn-chino.vc_btn_square_outlined,button.vc_btn-chino.vc_btn_outlined,button.vc_btn-chino.vc_btn_square_outlined{color:#CEC2AB!important}.vc_btn-chino.vc_btn_outlined:hover,.vc_btn-chino.vc_btn_square_outlined:hover,a.vc_btn-chino.vc_btn_outlined:hover,a.vc_btn-chino.vc_btn_square_outlined:hover,button.vc_btn-chino.vc_btn_outlined:hover,button.vc_btn-chino.vc_btn_square_outlined:hover{border-color:#c3b498}.vc_btn-chino.vc_btn_3d,a.vc_btn-chino.vc_btn_3d,button.vc_btn-chino.vc_btn_3d{-webkit-box-shadow:0 5px 0 #b9a888;box-shadow:0 5px 0 #b9a888;margin-bottom:5px}.vc_btn-chino.vc_btn_3d.vc_btn_xs,a.vc_btn-chino.vc_btn_3d.vc_btn_xs,button.vc_btn-chino.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #b9a888;box-shadow:0 3px 0 #b9a888;margin-bottom:3px}.vc_btn-chino.vc_btn_3d.vc_btn_sm,a.vc_btn-chino.vc_btn_3d.vc_btn_sm,button.vc_btn-chino.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #b9a888;box-shadow:0 4px 0 #b9a888;margin-bottom:4px}.vc_btn-mulled_wine,a.vc_btn-mulled_wine,button.vc_btn-mulled_wine{background-color:#50485B;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-mulled_wine:hover,a.vc_btn-mulled_wine:hover,button.vc_btn-mulled_wine:hover{background-color:#413a4a;color:#f7f7f7!important}.vc_btn-mulled_wine.vc_btn_outlined,.vc_btn-mulled_wine.vc_btn_square_outlined,a.vc_btn-mulled_wine.vc_btn_outlined,a.vc_btn-mulled_wine.vc_btn_square_outlined,button.vc_btn-mulled_wine.vc_btn_outlined,button.vc_btn-mulled_wine.vc_btn_square_outlined{color:#50485B!important}.vc_btn-mulled_wine.vc_btn_outlined:hover,.vc_btn-mulled_wine.vc_btn_square_outlined:hover,a.vc_btn-mulled_wine.vc_btn_outlined:hover,a.vc_btn-mulled_wine.vc_btn_square_outlined:hover,button.vc_btn-mulled_wine.vc_btn_outlined:hover,button.vc_btn-mulled_wine.vc_btn_square_outlined:hover{border-color:#413a4a}.vc_btn-mulled_wine.vc_btn_3d,a.vc_btn-mulled_wine.vc_btn_3d,button.vc_btn-mulled_wine.vc_btn_3d{-webkit-box-shadow:0 5px 0 #342f3c;box-shadow:0 5px 0 #342f3c;margin-bottom:5px}.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs,a.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs,button.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #342f3c;box-shadow:0 3px 0 #342f3c;margin-bottom:3px}.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm,a.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm,button.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #342f3c;box-shadow:0 4px 0 #342f3c;margin-bottom:4px}.vc_btn-vista_blue,a.vc_btn-vista_blue,button.vc_btn-vista_blue{background-color:#75D69C;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-vista_blue:hover,a.vc_btn-vista_blue:hover,button.vc_btn-vista_blue:hover{background-color:#5dcf8b;color:#f7f7f7!important}.vc_btn-vista_blue.vc_btn_outlined,.vc_btn-vista_blue.vc_btn_square_outlined,a.vc_btn-vista_blue.vc_btn_outlined,a.vc_btn-vista_blue.vc_btn_square_outlined,button.vc_btn-vista_blue.vc_btn_outlined,button.vc_btn-vista_blue.vc_btn_square_outlined{color:#75D69C!important}.vc_btn-vista_blue.vc_btn_outlined:hover,.vc_btn-vista_blue.vc_btn_square_outlined:hover,a.vc_btn-vista_blue.vc_btn_outlined:hover,a.vc_btn-vista_blue.vc_btn_square_outlined:hover,button.vc_btn-vista_blue.vc_btn_outlined:hover,button.vc_btn-vista_blue.vc_btn_square_outlined:hover{border-color:#5dcf8b}.vc_btn-vista_blue.vc_btn_3d,a.vc_btn-vista_blue.vc_btn_3d,button.vc_btn-vista_blue.vc_btn_3d{-webkit-box-shadow:0 5px 0 #4ac97d;box-shadow:0 5px 0 #4ac97d;margin-bottom:5px}.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs,a.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs,button.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #4ac97d;box-shadow:0 3px 0 #4ac97d;margin-bottom:3px}.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm,a.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm,button.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #4ac97d;box-shadow:0 4px 0 #4ac97d;margin-bottom:4px}.vc_btn-black,a.vc_btn-black,button.vc_btn-black{background-color:#2A2A2A;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-black:hover,a.vc_btn-black:hover,button.vc_btn-black:hover{background-color:#1b1b1b;color:#f7f7f7!important}.vc_btn-black.vc_btn_outlined,.vc_btn-black.vc_btn_square_outlined,a.vc_btn-black.vc_btn_outlined,a.vc_btn-black.vc_btn_square_outlined,button.vc_btn-black.vc_btn_outlined,button.vc_btn-black.vc_btn_square_outlined{color:#2A2A2A!important}.vc_btn-black.vc_btn_outlined:hover,.vc_btn-black.vc_btn_square_outlined:hover,a.vc_btn-black.vc_btn_outlined:hover,a.vc_btn-black.vc_btn_square_outlined:hover,button.vc_btn-black.vc_btn_outlined:hover,button.vc_btn-black.vc_btn_square_outlined:hover{border-color:#1b1b1b}.vc_btn-black.vc_btn_3d,a.vc_btn-black.vc_btn_3d,button.vc_btn-black.vc_btn_3d{-webkit-box-shadow:0 5px 0 #0e0e0e;box-shadow:0 5px 0 #0e0e0e;margin-bottom:5px}.vc_btn-black.vc_btn_3d.vc_btn_xs,a.vc_btn-black.vc_btn_3d.vc_btn_xs,button.vc_btn-black.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #0e0e0e;box-shadow:0 3px 0 #0e0e0e;margin-bottom:3px}.vc_btn-black.vc_btn_3d.vc_btn_sm,a.vc_btn-black.vc_btn_3d.vc_btn_sm,button.vc_btn-black.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #0e0e0e;box-shadow:0 4px 0 #0e0e0e;margin-bottom:4px}.vc_btn-grey,a.vc_btn-grey,button.vc_btn-grey{background-color:#EBEBEB;color:#666!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-grey:hover,a.vc_btn-grey:hover,button.vc_btn-grey:hover{background-color:#dcdcdc;color:#5e5e5e!important}.vc_btn-grey.vc_btn_outlined,.vc_btn-grey.vc_btn_square_outlined,a.vc_btn-grey.vc_btn_outlined,a.vc_btn-grey.vc_btn_square_outlined,button.vc_btn-grey.vc_btn_outlined,button.vc_btn-grey.vc_btn_square_outlined{color:#EBEBEB!important}.vc_btn-grey.vc_btn_outlined:hover,.vc_btn-grey.vc_btn_square_outlined:hover,a.vc_btn-grey.vc_btn_outlined:hover,a.vc_btn-grey.vc_btn_square_outlined:hover,button.vc_btn-grey.vc_btn_outlined:hover,button.vc_btn-grey.vc_btn_square_outlined:hover{border-color:#dcdcdc}.vc_btn-grey.vc_btn_3d,a.vc_btn-grey.vc_btn_3d,button.vc_btn-grey.vc_btn_3d{-webkit-box-shadow:0 5px 0 #cfcfcf;box-shadow:0 5px 0 #cfcfcf;margin-bottom:5px}.vc_btn-grey.vc_btn_3d.vc_btn_xs,a.vc_btn-grey.vc_btn_3d.vc_btn_xs,button.vc_btn-grey.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #cfcfcf;box-shadow:0 3px 0 #cfcfcf;margin-bottom:3px}.vc_btn-grey.vc_btn_3d.vc_btn_sm,a.vc_btn-grey.vc_btn_3d.vc_btn_sm,button.vc_btn-grey.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #cfcfcf;box-shadow:0 4px 0 #cfcfcf;margin-bottom:4px}.vc_btn-orange,a.vc_btn-orange,button.vc_btn-orange{background-color:#F7BE68;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-orange:hover,a.vc_btn-orange:hover,button.vc_btn-orange:hover{background-color:#f5b14b;color:#f7f7f7!important}.vc_btn-orange.vc_btn_outlined,.vc_btn-orange.vc_btn_square_outlined,a.vc_btn-orange.vc_btn_outlined,a.vc_btn-orange.vc_btn_square_outlined,button.vc_btn-orange.vc_btn_outlined,button.vc_btn-orange.vc_btn_square_outlined{color:#F7BE68!important}.vc_btn-orange.vc_btn_outlined:hover,.vc_btn-orange.vc_btn_square_outlined:hover,a.vc_btn-orange.vc_btn_outlined:hover,a.vc_btn-orange.vc_btn_square_outlined:hover,button.vc_btn-orange.vc_btn_outlined:hover,button.vc_btn-orange.vc_btn_square_outlined:hover{border-color:#f5b14b}.vc_btn-orange.vc_btn_3d,a.vc_btn-orange.vc_btn_3d,button.vc_btn-orange.vc_btn_3d{-webkit-box-shadow:0 5px 0 #f4a733;box-shadow:0 5px 0 #f4a733;margin-bottom:5px}.vc_btn-orange.vc_btn_3d.vc_btn_xs,a.vc_btn-orange.vc_btn_3d.vc_btn_xs,button.vc_btn-orange.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #f4a733;box-shadow:0 3px 0 #f4a733;margin-bottom:3px}.vc_btn-orange.vc_btn_3d.vc_btn_sm,a.vc_btn-orange.vc_btn_3d.vc_btn_sm,button.vc_btn-orange.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #f4a733;box-shadow:0 4px 0 #f4a733;margin-bottom:4px}.vc_btn-sky,a.vc_btn-sky,button.vc_btn-sky{background-color:#5AA1E3;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-sky:hover,a.vc_btn-sky:hover,button.vc_btn-sky:hover{background-color:#4092df;color:#f7f7f7!important}.vc_btn-sky.vc_btn_outlined,.vc_btn-sky.vc_btn_square_outlined,a.vc_btn-sky.vc_btn_outlined,a.vc_btn-sky.vc_btn_square_outlined,button.vc_btn-sky.vc_btn_outlined,button.vc_btn-sky.vc_btn_square_outlined{color:#5AA1E3!important}.vc_btn-sky.vc_btn_outlined:hover,.vc_btn-sky.vc_btn_square_outlined:hover,a.vc_btn-sky.vc_btn_outlined:hover,a.vc_btn-sky.vc_btn_square_outlined:hover,button.vc_btn-sky.vc_btn_outlined:hover,button.vc_btn-sky.vc_btn_square_outlined:hover{border-color:#4092df}.vc_btn-sky.vc_btn_3d,a.vc_btn-sky.vc_btn_3d,button.vc_btn-sky.vc_btn_3d{-webkit-box-shadow:0 5px 0 #2a86db;box-shadow:0 5px 0 #2a86db;margin-bottom:5px}.vc_btn-sky.vc_btn_3d.vc_btn_xs,a.vc_btn-sky.vc_btn_3d.vc_btn_xs,button.vc_btn-sky.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #2a86db;box-shadow:0 3px 0 #2a86db;margin-bottom:3px}.vc_btn-sky.vc_btn_3d.vc_btn_sm,a.vc_btn-sky.vc_btn_3d.vc_btn_sm,button.vc_btn-sky.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #2a86db;box-shadow:0 4px 0 #2a86db;margin-bottom:4px}.vc_btn-green,a.vc_btn-green,button.vc_btn-green{background-color:#6DAB3C;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-green:hover,a.vc_btn-green:hover,button.vc_btn-green:hover{background-color:#5f9434;color:#f7f7f7!important}.vc_btn-green.vc_btn_outlined,.vc_btn-green.vc_btn_square_outlined,a.vc_btn-green.vc_btn_outlined,a.vc_btn-green.vc_btn_square_outlined,button.vc_btn-green.vc_btn_outlined,button.vc_btn-green.vc_btn_square_outlined{color:#6DAB3C!important}.vc_btn-green.vc_btn_outlined:hover,.vc_btn-green.vc_btn_square_outlined:hover,a.vc_btn-green.vc_btn_outlined:hover,a.vc_btn-green.vc_btn_square_outlined:hover,button.vc_btn-green.vc_btn_outlined:hover,button.vc_btn-green.vc_btn_square_outlined:hover{border-color:#5f9434}.vc_btn-green.vc_btn_3d,a.vc_btn-green.vc_btn_3d,button.vc_btn-green.vc_btn_3d{-webkit-box-shadow:0 5px 0 #53812d;box-shadow:0 5px 0 #53812d;margin-bottom:5px}.vc_btn-green.vc_btn_3d.vc_btn_xs,a.vc_btn-green.vc_btn_3d.vc_btn_xs,button.vc_btn-green.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #53812d;box-shadow:0 3px 0 #53812d;margin-bottom:3px}.vc_btn-green.vc_btn_3d.vc_btn_sm,a.vc_btn-green.vc_btn_3d.vc_btn_sm,button.vc_btn-green.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #53812d;box-shadow:0 4px 0 #53812d;margin-bottom:4px}.vc_btn-juicy_pink,a.vc_btn-juicy_pink,button.vc_btn-juicy_pink{background-color:#F4524D;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-juicy_pink:hover,a.vc_btn-juicy_pink:hover,button.vc_btn-juicy_pink:hover{background-color:#f23630;color:#f7f7f7!important}.vc_btn-juicy_pink.vc_btn_outlined,.vc_btn-juicy_pink.vc_btn_square_outlined,a.vc_btn-juicy_pink.vc_btn_outlined,a.vc_btn-juicy_pink.vc_btn_square_outlined,button.vc_btn-juicy_pink.vc_btn_outlined,button.vc_btn-juicy_pink.vc_btn_square_outlined{color:#F4524D!important}.vc_btn-juicy_pink.vc_btn_outlined:hover,.vc_btn-juicy_pink.vc_btn_square_outlined:hover,a.vc_btn-juicy_pink.vc_btn_outlined:hover,a.vc_btn-juicy_pink.vc_btn_square_outlined:hover,button.vc_btn-juicy_pink.vc_btn_outlined:hover,button.vc_btn-juicy_pink.vc_btn_square_outlined:hover{border-color:#f23630}.vc_btn-juicy_pink.vc_btn_3d,a.vc_btn-juicy_pink.vc_btn_3d,button.vc_btn-juicy_pink.vc_btn_3d{-webkit-box-shadow:0 5px 0 #f11f18;box-shadow:0 5px 0 #f11f18;margin-bottom:5px}.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs,a.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs,button.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #f11f18;box-shadow:0 3px 0 #f11f18;margin-bottom:3px}.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm,a.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm,button.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #f11f18;box-shadow:0 4px 0 #f11f18;margin-bottom:4px}.vc_btn-sandy_brown,a.vc_btn-sandy_brown,button.vc_btn-sandy_brown{background-color:#F79468;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-sandy_brown:hover,a.vc_btn-sandy_brown:hover,button.vc_btn-sandy_brown:hover{background-color:#f57f4b;color:#f7f7f7!important}.vc_btn-sandy_brown.vc_btn_outlined,.vc_btn-sandy_brown.vc_btn_square_outlined,a.vc_btn-sandy_brown.vc_btn_outlined,a.vc_btn-sandy_brown.vc_btn_square_outlined,button.vc_btn-sandy_brown.vc_btn_outlined,button.vc_btn-sandy_brown.vc_btn_square_outlined{color:#F79468!important}.vc_btn-sandy_brown.vc_btn_outlined:hover,.vc_btn-sandy_brown.vc_btn_square_outlined:hover,a.vc_btn-sandy_brown.vc_btn_outlined:hover,a.vc_btn-sandy_brown.vc_btn_square_outlined:hover,button.vc_btn-sandy_brown.vc_btn_outlined:hover,button.vc_btn-sandy_brown.vc_btn_square_outlined:hover{border-color:#f57f4b}.vc_btn-sandy_brown.vc_btn_3d,a.vc_btn-sandy_brown.vc_btn_3d,button.vc_btn-sandy_brown.vc_btn_3d{-webkit-box-shadow:0 5px 0 #f46e33;box-shadow:0 5px 0 #f46e33;margin-bottom:5px}.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs,a.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs,button.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #f46e33;box-shadow:0 3px 0 #f46e33;margin-bottom:3px}.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm,a.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm,button.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #f46e33;box-shadow:0 4px 0 #f46e33;margin-bottom:4px}.vc_btn-purple,a.vc_btn-purple,button.vc_btn-purple{background-color:#B97EBB;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-purple:hover,a.vc_btn-purple:hover,button.vc_btn-purple:hover{background-color:#ae6ab0;color:#f7f7f7!important}.vc_btn-purple.vc_btn_outlined,.vc_btn-purple.vc_btn_square_outlined,a.vc_btn-purple.vc_btn_outlined,a.vc_btn-purple.vc_btn_square_outlined,button.vc_btn-purple.vc_btn_outlined,button.vc_btn-purple.vc_btn_square_outlined{color:#B97EBB!important}.vc_btn-purple.vc_btn_outlined:hover,.vc_btn-purple.vc_btn_square_outlined:hover,a.vc_btn-purple.vc_btn_outlined:hover,a.vc_btn-purple.vc_btn_square_outlined:hover,button.vc_btn-purple.vc_btn_outlined:hover,button.vc_btn-purple.vc_btn_square_outlined:hover{border-color:#ae6ab0}.vc_btn-purple.vc_btn_3d,a.vc_btn-purple.vc_btn_3d,button.vc_btn-purple.vc_btn_3d{-webkit-box-shadow:0 5px 0 #a559a8;box-shadow:0 5px 0 #a559a8;margin-bottom:5px}.vc_btn-purple.vc_btn_3d.vc_btn_xs,a.vc_btn-purple.vc_btn_3d.vc_btn_xs,button.vc_btn-purple.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #a559a8;box-shadow:0 3px 0 #a559a8;margin-bottom:3px}.vc_btn-purple.vc_btn_3d.vc_btn_sm,a.vc_btn-purple.vc_btn_3d.vc_btn_sm,button.vc_btn-purple.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #a559a8;box-shadow:0 4px 0 #a559a8;margin-bottom:4px}.vc_btn-white,a.vc_btn-white,button.vc_btn-white{background-color:#FFF;color:#666!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-white:hover,a.vc_btn-white:hover,button.vc_btn-white:hover{background-color:#f0f0f0;color:#5e5e5e!important}.vc_btn-white.vc_btn_outlined,.vc_btn-white.vc_btn_square_outlined,a.vc_btn-white.vc_btn_outlined,a.vc_btn-white.vc_btn_square_outlined,button.vc_btn-white.vc_btn_outlined,button.vc_btn-white.vc_btn_square_outlined{color:#FFF!important}.vc_btn-white.vc_btn_outlined:hover,.vc_btn-white.vc_btn_square_outlined:hover,a.vc_btn-white.vc_btn_outlined:hover,a.vc_btn-white.vc_btn_square_outlined:hover,button.vc_btn-white.vc_btn_outlined:hover,button.vc_btn-white.vc_btn_square_outlined:hover{border-color:#f0f0f0}.vc_btn-white.vc_btn_3d,a.vc_btn-white.vc_btn_3d,button.vc_btn-white.vc_btn_3d{-webkit-box-shadow:0 5px 0 #e3e3e3;box-shadow:0 5px 0 #e3e3e3;margin-bottom:5px}.vc_btn-white.vc_btn_3d.vc_btn_xs,a.vc_btn-white.vc_btn_3d.vc_btn_xs,button.vc_btn-white.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #e3e3e3;box-shadow:0 3px 0 #e3e3e3;margin-bottom:3px}.vc_btn-white.vc_btn_3d.vc_btn_sm,a.vc_btn-white.vc_btn_3d.vc_btn_sm,button.vc_btn-white.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #e3e3e3;box-shadow:0 4px 0 #e3e3e3;margin-bottom:4px}.vc_btn-grace,a.vc_btn-grace,button.vc_btn-grace{background-color:#AED13B;color:#fff!important;-webkit-transition:all .5s;-o-transition:all .5s;transition:all .5s}.vc_btn-grace:hover,a.vc_btn-grace:hover,button.vc_btn-grace:hover{background-color:#9ec02d;color:#f7f7f7!important}.vc_btn-grace.vc_btn_outlined,.vc_btn-grace.vc_btn_square_outlined,a.vc_btn-grace.vc_btn_outlined,a.vc_btn-grace.vc_btn_square_outlined,button.vc_btn-grace.vc_btn_outlined,button.vc_btn-grace.vc_btn_square_outlined{color:#AED13B!important}.vc_btn-grace.vc_btn_outlined:hover,.vc_btn-grace.vc_btn_square_outlined:hover,a.vc_btn-grace.vc_btn_outlined:hover,a.vc_btn-grace.vc_btn_square_outlined:hover,button.vc_btn-grace.vc_btn_outlined:hover,button.vc_btn-grace.vc_btn_square_outlined:hover{border-color:#9ec02d}.vc_btn-grace.vc_btn_3d,a.vc_btn-grace.vc_btn_3d,button.vc_btn-grace.vc_btn_3d{-webkit-box-shadow:0 5px 0 #8dac28;box-shadow:0 5px 0 #8dac28;margin-bottom:5px}.vc_btn-grace.vc_btn_3d.vc_btn_xs,a.vc_btn-grace.vc_btn_3d.vc_btn_xs,button.vc_btn-grace.vc_btn_3d.vc_btn_xs{-webkit-box-shadow:0 3px 0 #8dac28;box-shadow:0 3px 0 #8dac28;margin-bottom:3px}.vc_btn-grace.vc_btn_3d.vc_btn_sm,a.vc_btn-grace.vc_btn_3d.vc_btn_sm,button.vc_btn-grace.vc_btn_3d.vc_btn_sm{-webkit-box-shadow:0 4px 0 #8dac28;box-shadow:0 4px 0 #8dac28;margin-bottom:4px}.vc_btn-default,a.vc_btn-default,button.vc_btn-default{color:#7d7d7d;background-color:#fff;border-color:transparent}.open>.dropdown-toggle.vc_btn-default,.open>.dropdown-togglea.vc_btn-default,.open>.dropdown-togglebutton.vc_btn-default,.vc_btn-default.active,.vc_btn-default:active,.vc_btn-default:focus,.vc_btn-default:hover,a.vc_btn-default.active,a.vc_btn-default:active,a.vc_btn-default:focus,a.vc_btn-default:hover,button.vc_btn-default.active,button.vc_btn-default:active,button.vc_btn-default:focus,button.vc_btn-default:hover{color:#7d7d7d;background-color:#e6e6e6;border-color:transparent}.vc_btn-default.disabled,.vc_btn-default.disabled.active,.vc_btn-default.disabled:active,.vc_btn-default.disabled:focus,.vc_btn-default.disabled:hover,.vc_btn-default[disabled],.vc_btn-default[disabled].active,.vc_btn-default[disabled]:active,.vc_btn-default[disabled]:focus,.vc_btn-default[disabled]:hover,a.vc_btn-default.disabled,a.vc_btn-default.disabled.active,a.vc_btn-default.disabled:active,a.vc_btn-default.disabled:focus,a.vc_btn-default.disabled:hover,a.vc_btn-default[disabled],a.vc_btn-default[disabled].active,a.vc_btn-default[disabled]:active,a.vc_btn-default[disabled]:focus,a.vc_btn-default[disabled]:hover,button.vc_btn-default.disabled,button.vc_btn-default.disabled.active,button.vc_btn-default.disabled:active,button.vc_btn-default.disabled:focus,button.vc_btn-default.disabled:hover,button.vc_btn-default[disabled],button.vc_btn-default[disabled].active,button.vc_btn-default[disabled]:active,button.vc_btn-default[disabled]:focus,button.vc_btn-default[disabled]:hover,fieldset[disabled] .vc_btn-default,fieldset[disabled] .vc_btn-default.active,fieldset[disabled] .vc_btn-default:active,fieldset[disabled] .vc_btn-default:focus,fieldset[disabled] .vc_btn-default:hover,fieldset[disabled] a.vc_btn-default,fieldset[disabled] a.vc_btn-default.active,fieldset[disabled] a.vc_btn-default:active,fieldset[disabled] a.vc_btn-default:focus,fieldset[disabled] a.vc_btn-default:hover,fieldset[disabled] button.vc_btn-default,fieldset[disabled] button.vc_btn-default.active,fieldset[disabled] button.vc_btn-default:active,fieldset[disabled] button.vc_btn-default:focus,fieldset[disabled] button.vc_btn-default:hover{background-color:#fff;border-color:transparent}.vc_btn-default .badge,a.vc_btn-default .badge,button.vc_btn-default .badge{color:#fff;background-color:#7d7d7d}.vc_btn-primary,a.vc_btn-primary,button.vc_btn-primary{color:#fff;background-color:#00aef0;border-color:transparent}.open>.dropdown-toggle.vc_btn-primary,.open>.dropdown-togglea.vc_btn-primary,.open>.dropdown-togglebutton.vc_btn-primary,.vc_btn-primary.active,.vc_btn-primary:active,.vc_btn-primary:focus,.vc_btn-primary:hover,a.vc_btn-primary.active,a.vc_btn-primary:active,a.vc_btn-primary:focus,a.vc_btn-primary:hover,button.vc_btn-primary.active,button.vc_btn-primary:active,button.vc_btn-primary:focus,button.vc_btn-primary:hover{color:#fff;background-color:#0089bd;border-color:transparent}.vc_btn-primary.disabled,.vc_btn-primary.disabled.active,.vc_btn-primary.disabled:active,.vc_btn-primary.disabled:focus,.vc_btn-primary.disabled:hover,.vc_btn-primary[disabled],.vc_btn-primary[disabled].active,.vc_btn-primary[disabled]:active,.vc_btn-primary[disabled]:focus,.vc_btn-primary[disabled]:hover,a.vc_btn-primary.disabled,a.vc_btn-primary.disabled.active,a.vc_btn-primary.disabled:active,a.vc_btn-primary.disabled:focus,a.vc_btn-primary.disabled:hover,a.vc_btn-primary[disabled],a.vc_btn-primary[disabled].active,a.vc_btn-primary[disabled]:active,a.vc_btn-primary[disabled]:focus,a.vc_btn-primary[disabled]:hover,button.vc_btn-primary.disabled,button.vc_btn-primary.disabled.active,button.vc_btn-primary.disabled:active,button.vc_btn-primary.disabled:focus,button.vc_btn-primary.disabled:hover,button.vc_btn-primary[disabled],button.vc_btn-primary[disabled].active,button.vc_btn-primary[disabled]:active,button.vc_btn-primary[disabled]:focus,button.vc_btn-primary[disabled]:hover,fieldset[disabled] .vc_btn-primary,fieldset[disabled] .vc_btn-primary.active,fieldset[disabled] .vc_btn-primary:active,fieldset[disabled] .vc_btn-primary:focus,fieldset[disabled] .vc_btn-primary:hover,fieldset[disabled] a.vc_btn-primary,fieldset[disabled] a.vc_btn-primary.active,fieldset[disabled] a.vc_btn-primary:active,fieldset[disabled] a.vc_btn-primary:focus,fieldset[disabled] a.vc_btn-primary:hover,fieldset[disabled] button.vc_btn-primary,fieldset[disabled] button.vc_btn-primary.active,fieldset[disabled] button.vc_btn-primary:active,fieldset[disabled] button.vc_btn-primary:focus,fieldset[disabled] button.vc_btn-primary:hover{background-color:#00aef0;border-color:transparent}.vc_btn-primary .badge,a.vc_btn-primary .badge,button.vc_btn-primary .badge{color:#00aef0;background-color:#fff}.vc_btn-success,a.vc_btn-success,button.vc_btn-success{color:#fff;background-color:#5cb85c;border-color:transparent}.open>.dropdown-toggle.vc_btn-success,.open>.dropdown-togglea.vc_btn-success,.open>.dropdown-togglebutton.vc_btn-success,.vc_btn-success.active,.vc_btn-success:active,.vc_btn-success:focus,.vc_btn-success:hover,a.vc_btn-success.active,a.vc_btn-success:active,a.vc_btn-success:focus,a.vc_btn-success:hover,button.vc_btn-success.active,button.vc_btn-success:active,button.vc_btn-success:focus,button.vc_btn-success:hover{color:#fff;background-color:#449d44;border-color:transparent}.vc_btn-success.disabled,.vc_btn-success.disabled.active,.vc_btn-success.disabled:active,.vc_btn-success.disabled:focus,.vc_btn-success.disabled:hover,.vc_btn-success[disabled],.vc_btn-success[disabled].active,.vc_btn-success[disabled]:active,.vc_btn-success[disabled]:focus,.vc_btn-success[disabled]:hover,a.vc_btn-success.disabled,a.vc_btn-success.disabled.active,a.vc_btn-success.disabled:active,a.vc_btn-success.disabled:focus,a.vc_btn-success.disabled:hover,a.vc_btn-success[disabled],a.vc_btn-success[disabled].active,a.vc_btn-success[disabled]:active,a.vc_btn-success[disabled]:focus,a.vc_btn-success[disabled]:hover,button.vc_btn-success.disabled,button.vc_btn-success.disabled.active,button.vc_btn-success.disabled:active,button.vc_btn-success.disabled:focus,button.vc_btn-success.disabled:hover,button.vc_btn-success[disabled],button.vc_btn-success[disabled].active,button.vc_btn-success[disabled]:active,button.vc_btn-success[disabled]:focus,button.vc_btn-success[disabled]:hover,fieldset[disabled] .vc_btn-success,fieldset[disabled] .vc_btn-success.active,fieldset[disabled] .vc_btn-success:active,fieldset[disabled] .vc_btn-success:focus,fieldset[disabled] .vc_btn-success:hover,fieldset[disabled] a.vc_btn-success,fieldset[disabled] a.vc_btn-success.active,fieldset[disabled] a.vc_btn-success:active,fieldset[disabled] a.vc_btn-success:focus,fieldset[disabled] a.vc_btn-success:hover,fieldset[disabled] button.vc_btn-success,fieldset[disabled] button.vc_btn-success.active,fieldset[disabled] button.vc_btn-success:active,fieldset[disabled] button.vc_btn-success:focus,fieldset[disabled] button.vc_btn-success:hover{background-color:#5cb85c;border-color:transparent}.vc_btn-success .badge,a.vc_btn-success .badge,button.vc_btn-success .badge{color:#5cb85c;background-color:#fff}.vc_btn-info,a.vc_btn-info,button.vc_btn-info{color:#fff;background-color:#5bc0de;border-color:transparent}.open>.dropdown-toggle.vc_btn-info,.open>.dropdown-togglea.vc_btn-info,.open>.dropdown-togglebutton.vc_btn-info,.vc_btn-info.active,.vc_btn-info:active,.vc_btn-info:focus,.vc_btn-info:hover,a.vc_btn-info.active,a.vc_btn-info:active,a.vc_btn-info:focus,a.vc_btn-info:hover,button.vc_btn-info.active,button.vc_btn-info:active,button.vc_btn-info:focus,button.vc_btn-info:hover{color:#fff;background-color:#31b0d5;border-color:transparent}.vc_btn-info.disabled,.vc_btn-info.disabled.active,.vc_btn-info.disabled:active,.vc_btn-info.disabled:focus,.vc_btn-info.disabled:hover,.vc_btn-info[disabled],.vc_btn-info[disabled].active,.vc_btn-info[disabled]:active,.vc_btn-info[disabled]:focus,.vc_btn-info[disabled]:hover,a.vc_btn-info.disabled,a.vc_btn-info.disabled.active,a.vc_btn-info.disabled:active,a.vc_btn-info.disabled:focus,a.vc_btn-info.disabled:hover,a.vc_btn-info[disabled],a.vc_btn-info[disabled].active,a.vc_btn-info[disabled]:active,a.vc_btn-info[disabled]:focus,a.vc_btn-info[disabled]:hover,button.vc_btn-info.disabled,button.vc_btn-info.disabled.active,button.vc_btn-info.disabled:active,button.vc_btn-info.disabled:focus,button.vc_btn-info.disabled:hover,button.vc_btn-info[disabled],button.vc_btn-info[disabled].active,button.vc_btn-info[disabled]:active,button.vc_btn-info[disabled]:focus,button.vc_btn-info[disabled]:hover,fieldset[disabled] .vc_btn-info,fieldset[disabled] .vc_btn-info.active,fieldset[disabled] .vc_btn-info:active,fieldset[disabled] .vc_btn-info:focus,fieldset[disabled] .vc_btn-info:hover,fieldset[disabled] a.vc_btn-info,fieldset[disabled] a.vc_btn-info.active,fieldset[disabled] a.vc_btn-info:active,fieldset[disabled] a.vc_btn-info:focus,fieldset[disabled] a.vc_btn-info:hover,fieldset[disabled] button.vc_btn-info,fieldset[disabled] button.vc_btn-info.active,fieldset[disabled] button.vc_btn-info:active,fieldset[disabled] button.vc_btn-info:focus,fieldset[disabled] button.vc_btn-info:hover{background-color:#5bc0de;border-color:transparent}.vc_btn-info .badge,a.vc_btn-info .badge,button.vc_btn-info .badge{color:#5bc0de;background-color:#fff}.vc_btn-warning,a.vc_btn-warning,button.vc_btn-warning{color:#fff;background-color:#f0ad4e;border-color:transparent}.open>.dropdown-toggle.vc_btn-warning,.open>.dropdown-togglea.vc_btn-warning,.open>.dropdown-togglebutton.vc_btn-warning,.vc_btn-warning.active,.vc_btn-warning:active,.vc_btn-warning:focus,.vc_btn-warning:hover,a.vc_btn-warning.active,a.vc_btn-warning:active,a.vc_btn-warning:focus,a.vc_btn-warning:hover,button.vc_btn-warning.active,button.vc_btn-warning:active,button.vc_btn-warning:focus,button.vc_btn-warning:hover{color:#fff;background-color:#ec971f;border-color:transparent}.vc_btn-warning.disabled,.vc_btn-warning.disabled.active,.vc_btn-warning.disabled:active,.vc_btn-warning.disabled:focus,.vc_btn-warning.disabled:hover,.vc_btn-warning[disabled],.vc_btn-warning[disabled].active,.vc_btn-warning[disabled]:active,.vc_btn-warning[disabled]:focus,.vc_btn-warning[disabled]:hover,a.vc_btn-warning.disabled,a.vc_btn-warning.disabled.active,a.vc_btn-warning.disabled:active,a.vc_btn-warning.disabled:focus,a.vc_btn-warning.disabled:hover,a.vc_btn-warning[disabled],a.vc_btn-warning[disabled].active,a.vc_btn-warning[disabled]:active,a.vc_btn-warning[disabled]:focus,a.vc_btn-warning[disabled]:hover,button.vc_btn-warning.disabled,button.vc_btn-warning.disabled.active,button.vc_btn-warning.disabled:active,button.vc_btn-warning.disabled:focus,button.vc_btn-warning.disabled:hover,button.vc_btn-warning[disabled],button.vc_btn-warning[disabled].active,button.vc_btn-warning[disabled]:active,button.vc_btn-warning[disabled]:focus,button.vc_btn-warning[disabled]:hover,fieldset[disabled] .vc_btn-warning,fieldset[disabled] .vc_btn-warning.active,fieldset[disabled] .vc_btn-warning:active,fieldset[disabled] .vc_btn-warning:focus,fieldset[disabled] .vc_btn-warning:hover,fieldset[disabled] a.vc_btn-warning,fieldset[disabled] a.vc_btn-warning.active,fieldset[disabled] a.vc_btn-warning:active,fieldset[disabled] a.vc_btn-warning:focus,fieldset[disabled] a.vc_btn-warning:hover,fieldset[disabled] button.vc_btn-warning,fieldset[disabled] button.vc_btn-warning.active,fieldset[disabled] button.vc_btn-warning:active,fieldset[disabled] button.vc_btn-warning:focus,fieldset[disabled] button.vc_btn-warning:hover{background-color:#f0ad4e;border-color:transparent}.vc_btn-warning .badge,a.vc_btn-warning .badge,button.vc_btn-warning .badge{color:#f0ad4e;background-color:#fff}.vc_btn-danger,a.vc_btn-danger,button.vc_btn-danger{color:#fff;background-color:#d9534f;border-color:transparent}.open>.dropdown-toggle.vc_btn-danger,.open>.dropdown-togglea.vc_btn-danger,.open>.dropdown-togglebutton.vc_btn-danger,.vc_btn-danger.active,.vc_btn-danger:active,.vc_btn-danger:focus,.vc_btn-danger:hover,a.vc_btn-danger.active,a.vc_btn-danger:active,a.vc_btn-danger:focus,a.vc_btn-danger:hover,button.vc_btn-danger.active,button.vc_btn-danger:active,button.vc_btn-danger:focus,button.vc_btn-danger:hover{color:#fff;background-color:#c9302c;border-color:transparent}.vc_btn-danger.disabled,.vc_btn-danger.disabled.active,.vc_btn-danger.disabled:active,.vc_btn-danger.disabled:focus,.vc_btn-danger.disabled:hover,.vc_btn-danger[disabled],.vc_btn-danger[disabled].active,.vc_btn-danger[disabled]:active,.vc_btn-danger[disabled]:focus,.vc_btn-danger[disabled]:hover,a.vc_btn-danger.disabled,a.vc_btn-danger.disabled.active,a.vc_btn-danger.disabled:active,a.vc_btn-danger.disabled:focus,a.vc_btn-danger.disabled:hover,a.vc_btn-danger[disabled],a.vc_btn-danger[disabled].active,a.vc_btn-danger[disabled]:active,a.vc_btn-danger[disabled]:focus,a.vc_btn-danger[disabled]:hover,button.vc_btn-danger.disabled,button.vc_btn-danger.disabled.active,button.vc_btn-danger.disabled:active,button.vc_btn-danger.disabled:focus,button.vc_btn-danger.disabled:hover,button.vc_btn-danger[disabled],button.vc_btn-danger[disabled].active,button.vc_btn-danger[disabled]:active,button.vc_btn-danger[disabled]:focus,button.vc_btn-danger[disabled]:hover,fieldset[disabled] .vc_btn-danger,fieldset[disabled] .vc_btn-danger.active,fieldset[disabled] .vc_btn-danger:active,fieldset[disabled] .vc_btn-danger:focus,fieldset[disabled] .vc_btn-danger:hover,fieldset[disabled] a.vc_btn-danger,fieldset[disabled] a.vc_btn-danger.active,fieldset[disabled] a.vc_btn-danger:active,fieldset[disabled] a.vc_btn-danger:focus,fieldset[disabled] a.vc_btn-danger:hover,fieldset[disabled] button.vc_btn-danger,fieldset[disabled] button.vc_btn-danger.active,fieldset[disabled] button.vc_btn-danger:active,fieldset[disabled] button.vc_btn-danger:focus,fieldset[disabled] button.vc_btn-danger:hover{background-color:#d9534f;border-color:transparent}.vc_btn-danger .badge,a.vc_btn-danger .badge,button.vc_btn-danger .badge{color:#d9534f;background-color:#fff}.vc_button-2-wrapper.vc_button-2-align-left{display:block;text-align:left}.vc_button-2-wrapper.vc_button-2-align-right{display:block;text-align:right}.vc_button-2-wrapper.vc_button-2-align-center{display:block;text-align:center}i.icon{display:inline-block;width:16px;height:16px;line-height:16px;vertical-align:text-top;margin-left:5px}.wpb_btn-large i.icon{height:19px;margin-left:9px}.wpb_btn-small i.icon{height:15px}.wpb_btn-mini i.icon{display:none}.wpb_address_book i.icon,option.wpb_address_book{background:url(/wp-content/plugins/js_composer/assets/images/icons/address-book.png) right center no-repeat}.wpb_alarm_clock i.icon,option.wpb_alarm_clock{background:url(/wp-content/plugins/js_composer/assets/images/icons/alarm-clock.png) right center no-repeat}.wpb_anchor i.icon,option.wpb_anchor{background:url(/wp-content/plugins/js_composer/assets/images/icons/anchor.png) right center no-repeat}.wpb_application_image i.icon,option.wpb_application_image{background:url(/wp-content/plugins/js_composer/assets/images/icons/application-image.png) right center no-repeat}.wpb_arrow i.icon,option.wpb_arrow{background:url(/wp-content/plugins/js_composer/assets/images/icons/arrow.png) right center no-repeat}.wpb_asterisk i.icon,option.wpb_asterisk{background:url(/wp-content/plugins/js_composer/assets/images/icons/asterisk.png) right center no-repeat}.wpb_hammer i.icon,option.wpb_hammer{background:url(/wp-content/plugins/js_composer/assets/images/icons/auction-hammer.png) right center no-repeat}.wpb_balloon i.icon,option.wpb_balloon{background:url(/wp-content/plugins/js_composer/assets/images/icons/balloon.png) right center no-repeat}.wpb_balloon_buzz i.icon,option.wpb_balloon_buzz{background:url(/wp-content/plugins/js_composer/assets/images/icons/balloon-buzz.png) right center no-repeat}.wpb_balloon_facebook i.icon,option.wpb_balloon_facebook{background:url(/wp-content/plugins/js_composer/assets/images/icons/balloon-facebook.png) right center no-repeat}.wpb_balloon_twitter i.icon,option.wpb_balloon_twitter{background:url(/wp-content/plugins/js_composer/assets/images/icons/balloon-twitter.png) right center no-repeat}.wpb_battery i.icon,option.wpb_battery{background:url(/wp-content/plugins/js_composer/assets/images/icons/battery-full.png) right center no-repeat}.wpb_binocular i.icon,option.wpb_binocular{background:url(/wp-content/plugins/js_composer/assets/images/icons/binocular.png) right center no-repeat}.wpb_document_excel i.icon,option.wpb_document_excel{background:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-excel.png) right center no-repeat}.wpb_document_image i.icon,option.wpb_document_image{background:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-image.png) right center no-repeat}.wpb_document_music i.icon,option.wpb_document_music{background:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-music.png) right center no-repeat}.wpb_document_office i.icon,option.wpb_document_office{background:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-office.png) right center no-repeat}.wpb_document_pdf i.icon,option.wpb_document_pdf{background:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-pdf.png) right center no-repeat}.wpb_document_powerpoint i.icon,option.wpb_document_powerpoint{background:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-powerpoint.png) right center no-repeat}.wpb_document_word i.icon,option.wpb_document_word{background:url(/wp-content/plugins/js_composer/assets/images/icons/blue-document-word.png) right center no-repeat}.wpb_bookmark i.icon,option.wpb_bookmark{background:url(/wp-content/plugins/js_composer/assets/images/icons/bookmark.png) right center no-repeat}.wpb_camcorder i.icon,option.wpb_camcorder{background:url(/wp-content/plugins/js_composer/assets/images/icons/camcorder.png) right center no-repeat}.wpb_camera i.icon,option.wpb_camera{background:url(/wp-content/plugins/js_composer/assets/images/icons/camera.png) right center no-repeat}.wpb_chart i.icon,option.wpb_chart{background:url(/wp-content/plugins/js_composer/assets/images/icons/chart.png) right center no-repeat}.wpb_chart_pie i.icon,option.wpb_chart_pie{background:url(/wp-content/plugins/js_composer/assets/images/icons/chart-pie.png) right center no-repeat}.wpb_clock i.icon,option.wpb_clock{background:url(/wp-content/plugins/js_composer/assets/images/icons/clock.png) right center no-repeat}.wpb_play i.icon,option.wpb_play{background:url(/wp-content/plugins/js_composer/assets/images/icons/control.png) right center no-repeat}.wpb_fire i.icon,option.wpb_fire{background:url(/wp-content/plugins/js_composer/assets/images/icons/fire.png) right center no-repeat}.wpb_heart i.icon,option.wpb_heart{background:url(/wp-content/plugins/js_composer/assets/images/icons/heart.png) right center no-repeat}.wpb_mail i.icon,option.wpb_mail{background:url(/wp-content/plugins/js_composer/assets/images/icons/mail.png) right center no-repeat}.wpb_shield i.icon,option.wpb_shield{background:url(/wp-content/plugins/js_composer/assets/images/icons/plus-shield.png) right center no-repeat}.wpb_video i.icon,option.wpb_video{background:url(/wp-content/plugins/js_composer/assets/images/icons/video.png) right center no-repeat}.vc_column_container .vc_btn,.vc_column_container .wpb_button{margin-top:5px;margin-bottom:5px}.vc_message_box{border:1px solid transparent;display:block;overflow:hidden;margin:0 0 21.74px;padding:1em 1em 1em 4em;position:relative;font-size:1em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.vc_row.vc_row-flex,.vc_row.vc_row-flex>.vc_column_container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox}#content .wpb_alert p:last-child,#content .wpb_text_column :last-child,#content .wpb_text_column p:last-child,.vc_message_box>p:last-child,.wpb_alert p:last-child,.wpb_text_column :last-child,.wpb_text_column p:last-child{margin-bottom:0}.vc_message_box-icon,.vc_message_box-icon>*{position:absolute;font-weight:400;font-style:normal}.vc_message_box>p:first-child{margin-top:0}.vc_message_box-icon{bottom:0;font-size:1em;left:0;top:0;width:4em}.vc_message_box-icon>*,.vc_message_box-icon>.fa{font-size:1.7em;line-height:1}.vc_message_box-icon>*,.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_simple .vc_toggle_icon::before{left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%)}.vc_message_box-icon>*{transform:translate(-50%,-50%)}.vc_color-blue.vc_message_box{color:#364a8a;border-color:#c5cff0;background-color:#edf1fa}.vc_color-blue.vc_message_box .vc_message_box-icon{color:#5472D2}.vc_color-blue.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#5472D2}.vc_color-blue.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-blue.vc_message_box-outline,.vc_color-blue.vc_message_box-solid-icon{color:#364a8a;border-color:#5472D2;background-color:transparent}.vc_color-blue.vc_message_box-outline .vc_message_box-icon,.vc_color-blue.vc_message_box-solid-icon .vc_message_box-icon{color:#5472D2}.vc_color-blue.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#5472D2}.vc_color-blue.vc_message_box-3d{box-shadow:0 5px 0 #9daee5}.vc_color-turquoise.vc_message_box{color:#085b61;border-color:#c6ecee;background-color:#ebfcfd}.vc_color-turquoise.vc_message_box .vc_message_box-icon{color:#00C1CF}.vc_color-turquoise.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#00C1CF}.vc_color-turquoise.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-turquoise.vc_message_box-outline,.vc_color-turquoise.vc_message_box-solid-icon{color:#085b61;border-color:#00C1CF;background-color:transparent}.vc_color-turquoise.vc_message_box-outline .vc_message_box-icon,.vc_color-turquoise.vc_message_box-solid-icon .vc_message_box-icon{color:#00C1CF}.vc_color-turquoise.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#00C1CF}.vc_color-turquoise.vc_message_box-3d{box-shadow:0 5px 0 #9fdee3}.vc_color-pink.vc_message_box{color:#d82e21;border-color:#ffd8d6;background-color:#fff0ef}.vc_color-pink.vc_message_box .vc_message_box-icon{color:#FE6C61}.vc_color-pink.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#FE6C61}.vc_color-pink.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-pink.vc_message_box-outline,.vc_color-pink.vc_message_box-solid-icon{color:#d82e21;border-color:#FE6C61;background-color:transparent}.vc_color-pink.vc_message_box-outline .vc_message_box-icon,.vc_color-pink.vc_message_box-solid-icon .vc_message_box-icon{color:#FE6C61}.vc_color-pink.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#FE6C61}.vc_color-pink.vc_message_box-3d{box-shadow:0 5px 0 #fea9a3}.vc_color-violet.vc_message_box{color:#5e4a81;border-color:#d4c8e9;background-color:#f0ecf7}.vc_color-violet.vc_message_box .vc_message_box-icon{color:#8D6DC4}.vc_color-violet.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#8D6DC4}.vc_color-violet.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-violet.vc_message_box-outline,.vc_color-violet.vc_message_box-solid-icon{color:#5e4a81;border-color:#8D6DC4;background-color:transparent}.vc_color-violet.vc_message_box-outline .vc_message_box-icon,.vc_color-violet.vc_message_box-solid-icon .vc_message_box-icon{color:#8D6DC4}.vc_color-violet.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#8D6DC4}.vc_color-violet.vc_message_box-3d{box-shadow:0 5px 0 #b8a3da}.vc_color-peacoc.vc_message_box{color:#366a79;border-color:#c2e3ec;background-color:#e9f5f8}.vc_color-peacoc.vc_message_box .vc_message_box-icon{color:#4CADC9}.vc_color-peacoc.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#4CADC9}.vc_color-peacoc.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-peacoc.vc_message_box-outline,.vc_color-peacoc.vc_message_box-solid-icon{color:#366a79;border-color:#4CADC9;background-color:transparent}.vc_color-peacoc.vc_message_box-outline .vc_message_box-icon,.vc_color-peacoc.vc_message_box-solid-icon .vc_message_box-icon{color:#4CADC9}.vc_color-peacoc.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#4CADC9}.vc_color-peacoc.vc_message_box-3d{box-shadow:0 5px 0 #9ad1e1}.vc_color-chino.vc_message_box{color:#978258;border-color:#e5ded2;background-color:#f7f5f2}.vc_color-chino.vc_message_box .vc_message_box-icon{color:#CEC2AB}.vc_color-chino.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#CEC2AB}.vc_color-chino.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-chino.vc_message_box-outline,.vc_color-chino.vc_message_box-solid-icon{color:#978258;border-color:#CEC2AB;background-color:transparent}.vc_color-chino.vc_message_box-outline .vc_message_box-icon,.vc_color-chino.vc_message_box-solid-icon .vc_message_box-icon{color:#CEC2AB}.vc_color-chino.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#CEC2AB}.vc_color-chino.vc_message_box-3d{box-shadow:0 5px 0 #d2c7b1}.vc_color-mulled_wine.vc_message_box{color:#1e1b22;border-color:#d0ccd6;background-color:#eae8ed}.vc_color-mulled_wine.vc_message_box .vc_message_box-icon{color:#50485B}.vc_color-mulled_wine.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#50485B}.vc_color-mulled_wine.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-mulled_wine.vc_message_box-outline,.vc_color-mulled_wine.vc_message_box-solid-icon{color:#1e1b22;border-color:#50485B;background-color:transparent}.vc_color-mulled_wine.vc_message_box-outline .vc_message_box-icon,.vc_color-mulled_wine.vc_message_box-solid-icon .vc_message_box-icon{color:#50485B}.vc_color-mulled_wine.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#50485B}.vc_color-mulled_wine.vc_message_box-3d{box-shadow:0 5px 0 #b6afc0}.vc_color-vista_blue.vc_message_box{color:#3e8e5e;border-color:#bcebcf;background-color:#e3f7eb}.vc_color-vista_blue.vc_message_box .vc_message_box-icon{color:#75D69C}.vc_color-vista_blue.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#75D69C}.vc_color-vista_blue.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-vista_blue.vc_message_box-outline,.vc_color-vista_blue.vc_message_box-solid-icon{color:#3e8e5e;border-color:#75D69C;background-color:transparent}.vc_color-vista_blue.vc_message_box-outline .vc_message_box-icon,.vc_color-vista_blue.vc_message_box-solid-icon .vc_message_box-icon{color:#75D69C}.vc_color-vista_blue.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#75D69C}.vc_color-vista_blue.vc_message_box-3d{box-shadow:0 5px 0 #94dfb3}.vc_color-orange.vc_message_box{color:#c3811c;border-color:#fbe1ba;background-color:#fef6eb}.vc_color-orange.vc_message_box .vc_message_box-icon{color:#F7BE68}.vc_color-orange.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#F7BE68}.vc_color-orange.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-orange.vc_message_box-outline,.vc_color-orange.vc_message_box-solid-icon{color:#c3811c;border-color:#F7BE68;background-color:transparent}.vc_color-orange.vc_message_box-outline .vc_message_box-icon,.vc_color-orange.vc_message_box-solid-icon .vc_message_box-icon{color:#F7BE68}.vc_color-orange.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#F7BE68}.vc_color-orange.vc_message_box-3d{box-shadow:0 5px 0 #f9cd8a}.vc_color-sky.vc_message_box{color:#2a6194;border-color:#bedaf4;background-color:#eaf3fb}.vc_color-sky.vc_message_box .vc_message_box-icon{color:#5AA1E3}.vc_color-sky.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#5AA1E3}.vc_color-sky.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-sky.vc_message_box-outline,.vc_color-sky.vc_message_box-solid-icon{color:#2a6194;border-color:#5AA1E3;background-color:transparent}.vc_color-sky.vc_message_box-outline .vc_message_box-icon,.vc_color-sky.vc_message_box-solid-icon .vc_message_box-icon{color:#5AA1E3}.vc_color-sky.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#5AA1E3}.vc_color-sky.vc_message_box-3d{box-shadow:0 5px 0 #93c1ed}.vc_color-green.vc_message_box{color:#3e562b;border-color:#c2e1a9;background-color:#eaf5e2}.vc_color-green.vc_message_box .vc_message_box-icon{color:#6DAB3C}.vc_color-green.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#6DAB3C}.vc_color-green.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-green.vc_message_box-outline,.vc_color-green.vc_message_box-solid-icon{color:#3e562b;border-color:#6DAB3C;background-color:transparent}.vc_color-green.vc_message_box-outline .vc_message_box-icon,.vc_color-green.vc_message_box-solid-icon .vc_message_box-icon{color:#6DAB3C}.vc_color-green.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#6DAB3C}.vc_color-green.vc_message_box-3d{box-shadow:0 5px 0 #a7d484}.vc_color-juicy_pink.vc_message_box{color:#a3231f;border-color:#fbc7c5;background-color:#fef5f5}.vc_color-juicy_pink.vc_message_box .vc_message_box-icon{color:#F4524D}.vc_color-juicy_pink.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#F4524D}.vc_color-juicy_pink.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-juicy_pink.vc_message_box-outline,.vc_color-juicy_pink.vc_message_box-solid-icon{color:#a3231f;border-color:#F4524D;background-color:transparent}.vc_color-juicy_pink.vc_message_box-outline .vc_message_box-icon,.vc_color-juicy_pink.vc_message_box-solid-icon .vc_message_box-icon{color:#F4524D}.vc_color-juicy_pink.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#F4524D}.vc_color-juicy_pink.vc_message_box-3d{box-shadow:0 5px 0 #f89895}.vc_color-sandy_brown.vc_message_box{color:#c3501c;border-color:#fbceba;background-color:#fef1eb}.vc_color-sandy_brown.vc_message_box .vc_message_box-icon{color:#F79468}.vc_color-sandy_brown.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#F79468}.vc_color-sandy_brown.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-sandy_brown.vc_message_box-outline,.vc_color-sandy_brown.vc_message_box-solid-icon{color:#c3501c;border-color:#F79468;background-color:transparent}.vc_color-sandy_brown.vc_message_box-outline .vc_message_box-icon,.vc_color-sandy_brown.vc_message_box-solid-icon .vc_message_box-icon{color:#F79468}.vc_color-sandy_brown.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#F79468}.vc_color-sandy_brown.vc_message_box-3d{box-shadow:0 5px 0 #f9ac8a}.vc_color-purple.vc_message_box{color:#886389;border-color:#e3cbe3;background-color:#f5ecf5}.vc_color-purple.vc_message_box .vc_message_box-icon{color:#B97EBB}.vc_color-purple.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#B97EBB}.vc_color-purple.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-purple.vc_message_box-outline,.vc_color-purple.vc_message_box-solid-icon{color:#886389;border-color:#B97EBB;background-color:transparent}.vc_color-purple.vc_message_box-outline .vc_message_box-icon,.vc_color-purple.vc_message_box-solid-icon .vc_message_box-icon{color:#B97EBB}.vc_color-purple.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#B97EBB}.vc_color-purple.vc_message_box-3d{box-shadow:0 5px 0 #d1a9d2}.vc_color-black.vc_message_box{color:#fff;border-color:#2A2A2A;background-color:#3c3c3c}.vc_color-black.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#2A2A2A}.vc_color-black.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-black.vc_message_box-outline,.vc_color-black.vc_message_box-solid-icon{border-color:#2A2A2A;background-color:transparent}.vc_color-black.vc_message_box-outline .vc_message_box-icon,.vc_color-black.vc_message_box-solid-icon .vc_message_box-icon{color:#2A2A2A}.vc_color-black.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#2A2A2A}.vc_color-black.vc_message_box-3d{box-shadow:0 5px 0 #101010}.vc_color-grey.vc_message_box{color:#858585;border-color:#d2d2d2;background-color:#EBEBEB}.vc_color-grey.vc_message_box-solid{color:#858585;border-color:transparent;background-color:#EBEBEB}.vc_color-grey.vc_message_box-solid .vc_message_box-icon{color:#858585}.vc_color-grey.vc_message_box-outline,.vc_color-grey.vc_message_box-solid-icon{color:#858585;border-color:#EBEBEB;background-color:transparent}.vc_color-grey.vc_message_box-outline .vc_message_box-icon,.vc_color-grey.vc_message_box-solid-icon .vc_message_box-icon{color:#EBEBEB}.vc_color-grey.vc_message_box-solid-icon .vc_message_box-icon{color:#858585;background-color:#EBEBEB}.vc_color-grey.vc_message_box-3d{box-shadow:0 5px 0 #b8b8b8}.vc_color-white.vc_message_box{color:#b3b3b3;border-color:#e6e6e6;background-color:#FFF}.vc_color-white.vc_message_box-solid{color:#b3b3b3;border-color:transparent;background-color:#FFF}.vc_color-white.vc_message_box-solid .vc_message_box-icon{color:#b3b3b3}.vc_color-white.vc_message_box-outline,.vc_color-white.vc_message_box-solid-icon{border-color:#FFF;background-color:transparent}.vc_color-white.vc_message_box-outline .vc_message_box-icon,.vc_color-white.vc_message_box-solid-icon .vc_message_box-icon{color:#FFF}.vc_color-white.vc_message_box-solid-icon .vc_message_box-icon{color:#b3b3b3;background-color:#FFF}.vc_color-white.vc_message_box-3d{box-shadow:0 5px 0 #ccc}.vc_color-info.vc_message_box-3d,.vc_color-success.vc_message_box-3d{box-shadow:0 5px 0 #9dd6fd}.vc_color-info.vc_message_box{color:#5e7f96;border-color:#cfebfe;background-color:#dff2fe}.vc_color-info.vc_message_box .vc_message_box-icon{color:#56b0ee}.vc_color-info.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#56b0ee}.vc_color-info.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-info.vc_message_box-outline,.vc_color-info.vc_message_box-solid-icon{color:#5e7f96;border-color:#56b0ee;background-color:transparent}.vc_color-info.vc_message_box-outline .vc_message_box-icon,.vc_color-info.vc_message_box-solid-icon .vc_message_box-icon{color:#56b0ee}.vc_color-info.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#56b0ee}.vc_color-success.vc_message_box{color:#5e7f96;border-color:#cfebfe;background-color:#e6fdf8}.vc_color-success.vc_message_box .vc_message_box-icon{color:#1bbc9b}.vc_color-success.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#1bbc9b}.vc_color-success.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-success.vc_message_box-outline,.vc_color-success.vc_message_box-solid-icon{color:#5e7f96;border-color:#1bbc9b;background-color:transparent}.vc_color-success.vc_message_box-outline .vc_message_box-icon,.vc_color-success.vc_message_box-solid-icon .vc_message_box-icon{color:#1bbc9b}.vc_color-success.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#1bbc9b}.vc_color-warning.vc_message_box{color:#9d8967;border-color:#ffeccc;background-color:#fff4e2}.vc_color-warning.vc_message_box .vc_message_box-icon{color:#fcb53f}.vc_color-warning.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#fcb53f}.vc_color-warning.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-warning.vc_message_box-outline,.vc_color-warning.vc_message_box-solid-icon{color:#9d8967;border-color:#fcb53f;background-color:transparent}.vc_color-warning.vc_message_box-outline .vc_message_box-icon,.vc_color-warning.vc_message_box-solid-icon .vc_message_box-icon{color:#fcb53f}.vc_color-warning.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#fcb53f}.vc_color-warning.vc_message_box-3d{box-shadow:0 5px 0 #ffd999}.vc_color-danger.vc_message_box{color:#a85959;border-color:#fedede;background-color:#fdeaea}.vc_color-danger.vc_message_box .vc_message_box-icon{color:#ff7877}.vc_color-danger.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#ff7877}.vc_color-danger.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-danger.vc_message_box-outline,.vc_color-danger.vc_message_box-solid-icon{color:#a85959;border-color:#ff7877;background-color:transparent}.vc_color-danger.vc_message_box-outline .vc_message_box-icon,.vc_color-danger.vc_message_box-solid-icon .vc_message_box-icon{color:#ff7877}.vc_color-danger.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#ff7877}.vc_color-danger.vc_message_box-3d{box-shadow:0 5px 0 #fdacac}.vc_color-alert-info.vc_message_box{color:#31708f;border-color:#bce8f1;background-color:#d9edf7}.vc_color-alert-info.vc_message_box .vc_message_box-icon{color:#67CCE0}.vc_color-alert-info.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#67CCE0}.vc_color-alert-info.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-info.vc_message_box-outline,.vc_color-alert-info.vc_message_box-solid-icon{color:#31708f;border-color:#67CCE0;background-color:transparent}.vc_color-alert-info.vc_message_box-outline .vc_message_box-icon,.vc_color-alert-info.vc_message_box-solid-icon .vc_message_box-icon{color:#67CCE0}.vc_color-alert-info.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#67CCE0}.vc_color-alert-info.vc_message_box-3d{box-shadow:0 5px 0 #91d9e8}.vc_color-alert-success.vc_message_box{color:#3c763d;border-color:#d6e9c6;background-color:#dff0d8}.vc_color-alert-success.vc_message_box .vc_message_box-icon{color:#9AD36A}.vc_color-alert-success.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#9AD36A}.vc_color-alert-success.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-success.vc_message_box-outline,.vc_color-alert-success.vc_message_box-solid-icon{color:#3c763d;border-color:#9AD36A;background-color:transparent}.vc_color-alert-success.vc_message_box-outline .vc_message_box-icon,.vc_color-alert-success.vc_message_box-solid-icon .vc_message_box-icon{color:#9AD36A}.vc_color-alert-success.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#9AD36A}.vc_color-alert-success.vc_message_box-3d{box-shadow:0 5px 0 #bbdba1}.vc_color-alert-warning.vc_message_box{color:#8a6d3b;border-color:#faebcc;background-color:#fcf8e3}.vc_color-alert-warning.vc_message_box .vc_message_box-icon{color:#F9CF79}.vc_color-alert-warning.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#F9CF79}.vc_color-alert-warning.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-warning.vc_message_box-outline,.vc_color-alert-warning.vc_message_box-solid-icon{color:#8a6d3b;border-color:#F9CF79;background-color:transparent}.vc_color-alert-warning.vc_message_box-outline .vc_message_box-icon,.vc_color-alert-warning.vc_message_box-solid-icon .vc_message_box-icon{color:#F9CF79}.vc_color-alert-warning.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#F9CF79}.vc_color-alert-warning.vc_message_box-3d{box-shadow:0 5px 0 #f5d89e}.vc_color-alert-danger.vc_message_box{color:#a94442;border-color:#ebccd1;background-color:#f2dede}.vc_color-alert-danger.vc_message_box .vc_message_box-icon{color:#EF8495}.vc_color-alert-danger.vc_message_box-solid{color:#fff;border-color:transparent;background-color:#EF8495}.vc_color-alert-danger.vc_message_box-solid .vc_message_box-icon{color:#fff}.vc_color-alert-danger.vc_message_box-outline,.vc_color-alert-danger.vc_message_box-solid-icon{color:#a94442;border-color:#EF8495;background-color:transparent}.vc_color-alert-danger.vc_message_box-outline .vc_message_box-icon,.vc_color-alert-danger.vc_message_box-solid-icon .vc_message_box-icon{color:#EF8495}.vc_color-alert-danger.vc_message_box-solid-icon .vc_message_box-icon{color:#fff;background-color:#EF8495}.vc_color-alert-danger.vc_message_box-3d{box-shadow:0 5px 0 #dca7b0}.vc_color-black.vc_message_box .vc_message_box-icon{color:#fff}.vc_color-black.vc_message_box-outline,.vc_color-black.vc_message_box-outline .vc_message_box-icon,.vc_color-black.vc_message_box-solid-icon{color:#2A2A2A}.vc_color-grey.vc_message_box .vc_message_box-icon{color:#858585}.vc_color-white.vc_message_box .vc_message_box-icon{color:#b3b3b3}.vc_color-white.vc_message_box-outline,.vc_color-white.vc_message_box-outline .vc_message_box-icon,.vc_color-white.vc_message_box-solid-icon{color:#FFF}.vc_message_box-outline,.vc_message_box-solid-icon{border-width:2px}.vc_message_box-solid-icon .vc_message_box-icon{width:3.25em}.vc_message_box-rounded{border-radius:5px}.vc_message_box-round{border-radius:4em}.wpb_button,.wpb_content_element,ul.wpb_thumbnails-fluid>li{margin-bottom:35px}.entry-content .twitter-share-button,.fb_like,.twitter-share-button,.wpb_accordion .wpb_content_element,.wpb_googleplus,.wpb_pinterest,.wpb_tab .wpb_content_element{margin-bottom:21.74px}.vc_parallax{position:relative;overflow:hidden}.vc_parallax>*{position:relative;z-index:1}.vc_parallax .vc_parallax-inner{pointer-events:none;position:absolute;left:0;right:0;top:0;background-attachment:scroll;background-color:transparent;background-image:inherit;background-size:cover;z-index:0;background-position:50% 0}.vc_video-bg-container{position:relative}.vc_video-bg{height:100%;overflow:hidden;pointer-events:none;position:absolute;top:0;left:0;width:100%;z-index:0}.vc_row.vc_row-no-padding .vc_column-inner{padding-left:0;padding-right:0}.vc_row[data-vc-full-width]{-webkit-transition:opacity .5s ease;-o-transition:opacity .5s ease;transition:opacity .5s ease;overflow:hidden}.vc_row[data-vc-full-width].vc_hidden{opacity:0}.vc_row-no-padding .vc_inner{margin-left:0;margin-right:0}.vc_row.vc_row-o-full-height{min-height:100vh}.vc_row.vc_row-flex{box-sizing:border-box;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.vc_row.vc_row-flex>.vc_column_container{display:flex}.vc_ie-flexbox-fixer,.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;-webkit-box-orient:vertical;-webkit-box-direction:normal}.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;z-index:1}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner>*{min-height:1em}}.vc_row.vc_row-flex::after,.vc_row.vc_row-flex::before{display:none}.vc_row.vc_row-o-columns-stretch{-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch}.vc_row.vc_row-o-columns-top{-webkit-align-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.vc_row.vc_row-o-columns-bottom{-webkit-align-content:flex-end;-ms-flex-line-pack:end;align-content:flex-end}.vc_row.vc_row-o-columns-middle{-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center}.vc_row.vc_row-o-columns-bottom::after,.vc_row.vc_row-o-columns-middle::after,.vc_row.vc_row-o-columns-top::after{content:'';width:100%;height:0;overflow:hidden;visibility:hidden;display:block}.vc_row.vc_row-o-content-top>.vc_column_container>.vc_column-inner{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_column_container{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.vc_row.vc_row-o-content-bottom>.vc_column_container>.vc_column-inner{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_column_container{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.vc_row.vc_row-o-content-middle>.vc_column_container>.vc_column-inner{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_column_container{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.vc_column-inner::after,.vc_column-inner::before{content:" ";display:table}.vc_ie-flexbox-fixer{display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.vc_ie-flexbox-fixer>.vc_row{-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}.vc_row.vc_column-gap-1{margin-left:-15.5px;margin-right:-15.5px}.vc_row.vc_column-gap-1>.vc_column_container{padding:.5px}.vc_row.vc_column-gap-2{margin-left:-16px;margin-right:-16px}.vc_row.vc_column-gap-2>.vc_column_container{padding:1px}.vc_row.vc_column-gap-3{margin-left:-16.5px;margin-right:-16.5px}.vc_row.vc_column-gap-3>.vc_column_container{padding:1.5px}.vc_row.vc_column-gap-4{margin-left:-17px;margin-right:-17px}.vc_row.vc_column-gap-4>.vc_column_container{padding:2px}.vc_row.vc_column-gap-5{margin-left:-17.5px;margin-right:-17.5px}.vc_row.vc_column-gap-5>.vc_column_container{padding:2.5px}.vc_row.vc_column-gap-10{margin-left:-20px;margin-right:-20px}.vc_row.vc_column-gap-10>.vc_column_container{padding:5px}.vc_row.vc_column-gap-15{margin-left:-22.5px;margin-right:-22.5px}.vc_row.vc_column-gap-15>.vc_column_container{padding:7.5px}.vc_row.vc_column-gap-20{margin-left:-25px;margin-right:-25px}.vc_row.vc_column-gap-20>.vc_column_container{padding:10px}.vc_row.vc_column-gap-25{margin-left:-27.5px;margin-right:-27.5px}.vc_row.vc_column-gap-25>.vc_column_container{padding:12.5px}.vc_row.vc_column-gap-30{margin-left:-30px;margin-right:-30px}.vc_row.vc_column-gap-30>.vc_column_container{padding:15px}.vc_row.vc_column-gap-35{margin-left:-32.5px;margin-right:-32.5px}.vc_row.vc_column-gap-35>.vc_column_container{padding:17.5px}.vc_col-has-fill>.vc_column-inner,.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,.vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,.vc_row-has-fill>.vc_column_container>.vc_column-inner,.vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,.vc_section.vc_section-has-fill,.vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section,.vc_section.vc_section-has-fill+.vc_section{padding-top:35px}.vc_column_container{padding-left:0;padding-right:0}.vc_column_container>.vc_column-inner{box-sizing:border-box;padding-left:15px;padding-right:15px;width:100%}.vc_section{padding-left:15px;padding-right:15px;margin-left:-15px;margin-right:-15px}.vc_section[data-vc-full-width]{-webkit-transition:opacity .5s ease;-o-transition:opacity .5s ease;transition:opacity .5s ease;overflow:hidden}.vc_section[data-vc-full-width].vc_hidden{opacity:0}.vc_section[data-vc-full-width]>.vc_row{margin-left:0;margin-right:0}.vc_section[data-vc-stretch-content]{padding-left:0;padding-right:0}.vc_section.vc_row-o-full-height{min-height:100vh}.vc_section.vc_section-flex{box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-ms-flex-flow:column nowrap;flex-flow:column nowrap}.vc_section.vc_section-flex .vc_vc_row{width:100%}.vc_section.vc_section-flex::after,.vc_section.vc_section-flex::before{display:none}.vc_section.vc_section-o-content-top{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.vc_section.vc_section-o-content-bottom{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.vc_section.vc_section-o-content-middle{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.vc_section.vc_section-o-content-bottom::after,.vc_section.vc_section-o-content-middle::after,.vc_section.vc_section-o-content-top::after{content:'';width:100%;height:0;overflow:hidden;visibility:hidden;display:block}.vc_row.vc_column-gap-1>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-1>.vc_vc_column_inner>.vc_column_container{padding-left:.5px;padding-right:.5px}.vc_row.vc_column-gap-2>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-2>.vc_vc_column_inner>.vc_column_container{padding-left:1px;padding-right:1px}.vc_row.vc_column-gap-3>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-3>.vc_vc_column_inner>.vc_column_container{padding-left:1.5px;padding-right:1.5px}.vc_row.vc_column-gap-4>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-4>.vc_vc_column_inner>.vc_column_container{padding-left:2px;padding-right:2px}.vc_row.vc_column-gap-5>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-5>.vc_vc_column_inner>.vc_column_container{padding-left:2.5px;padding-right:2.5px}.vc_row.vc_column-gap-10>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-10>.vc_vc_column_inner>.vc_column_container{padding-left:5px;padding-right:5px}.vc_row.vc_column-gap-15>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-15>.vc_vc_column_inner>.vc_column_container{padding-left:7.5px;padding-right:7.5px}.vc_row.vc_column-gap-20>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-20>.vc_vc_column_inner>.vc_column_container{padding-left:10px;padding-right:10px}.vc_row.vc_column-gap-25>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-25>.vc_vc_column_inner>.vc_column_container{padding-left:12.5px;padding-right:12.5px}.vc_row.vc_column-gap-30>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-30>.vc_vc_column_inner>.vc_column_container{padding-left:15px;padding-right:15px}.vc_row.vc_column-gap-35>.vc_vc_column>.vc_column_container,.vc_row.vc_column-gap-35>.vc_vc_column_inner>.vc_column_container{padding-left:17.5px;padding-right:17.5px}.vc_vc_column,.vc_vc_column_inner{padding-left:0;padding-right:0}.vc_row.vc_row-flex>.vc_vc_column,.vc_row.vc_row-flex>.vc_vc_column_inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.vc_row.vc_row-flex>.vc_vc_column>.vc_column_container,.vc_row.vc_row-flex>.vc_vc_column_inner>.vc_column_container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%}.vc_row.vc_row-flex>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row.vc_row-flex>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.vc_row.vc_row-o-equal-height>.vc_column_container{-webkit-box-align:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch}.vc_row.vc_row-o-content-top>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row.vc_row-o-content-top>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.vc_row.vc_row-o-content-bottom>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row.vc_row-o-content-bottom>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container{-webkit-box-align:end;-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.vc_row.vc_row-o-content-middle>.vc_vc_column>.vc_column_container>.vc_column-inner,.vc_row.vc_row-o-content-middle>.vc_vc_column_inner>.vc_column_container>.vc_column-inner{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.vc_empty-element>.vc_column-inner{min-height:100px}.fb_type_standard,.fb_type_standard iframe{height:25px}.fb_type_button_count,.fb_type_button_count iframe{height:20px}.fb_type_box_count,.fb_type_box_count iframe{height:62px}.wpb_googleplus_type_standard{height:25px}.wpb_googleplus_type_small{height:19px}.wpb_googleplus_type_medium,.wpb_googleplus_type_tall{height:21px}.wpb_googleplus_type_tall.vc_googleplus-annotation-bubble{height:62px}.wpb_pinterest_type_horizontal,.wpb_pinterest_type_none{height:21px}.wpb_pinterest a{border-bottom:0}.wpb_pinterest_type_vertical{box-sizing:content-box;padding-top:29px;height:21px}iframe.twitter-share-button{margin:0}.vc_toggle{display:block;margin:0 0 21.74px;padding:0;font-size:1em}.vc_toggle:last-of-type{margin-bottom:35px}.vc_toggle_title{cursor:pointer;display:block;margin:0;padding:0;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-weight:400}.vc_toggle_title>h4{display:inline}.vc_toggle_icon{display:none;position:relative;vertical-align:middle}.vc_toggle_content{display:none;margin-bottom:21.74px;margin-top:1em;overflow:hidden;padding:0}.vc_toggle.vc_toggle_active>.vc_toggle_content{display:block}.vc_toggle_simple .vc_toggle_icon{border:0 solid transparent;border-radius:0;display:inline-block;height:22px;width:22px;background-color:transparent;margin-left:2px}.vc_toggle_simple.vc_toggle_active .vc_toggle_icon::after{visibility:hidden}.vc_toggle_simple .vc_toggle_icon::before{height:2px;width:10px}.vc_toggle_simple .vc_toggle_icon::after{height:10px;width:2px}.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_simple .vc_toggle_icon::before{content:'';display:block;position:absolute;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transform:translate(-50%,-50%);background-color:#2A2A2A}.vc_toggle_round .vc_toggle_icon::after,.vc_toggle_round .vc_toggle_icon::before,.vc_toggle_rounded .vc_toggle_icon::after,.vc_toggle_rounded .vc_toggle_icon::before{-moz-box-sizing:border-box;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);content:'';left:50%;position:absolute;top:50%}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#444}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_round .vc_toggle_icon{border:2px solid transparent;border-radius:50%;display:inline-block;height:22px;width:22px;background-color:#2A2A2A}.vc_toggle_round.vc_toggle_active .vc_toggle_icon::after{visibility:hidden}.vc_toggle_round .vc_toggle_icon::before{height:2px;width:10px}.vc_toggle_round .vc_toggle_icon::after{height:10px;width:2px}.vc_toggle_round .vc_toggle_icon::after,.vc_toggle_round .vc_toggle_icon::before{display:block;-webkit-box-sizing:border-box;box-sizing:border-box;transform:translate(-50%,-50%);background-color:#FFF}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#2A2A2A}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#2A2A2A}.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#444}.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#444}.vc_toggle_rounded .vc_toggle_icon{border:2px solid transparent;border-radius:20%;display:inline-block;height:22px;width:22px;background-color:#2A2A2A}.vc_toggle_rounded.vc_toggle_active .vc_toggle_icon::after{visibility:hidden}.vc_toggle_rounded .vc_toggle_icon::before{height:2px;width:10px}.vc_toggle_rounded .vc_toggle_icon::after{height:10px;width:2px}.vc_toggle_rounded .vc_toggle_icon::after,.vc_toggle_rounded .vc_toggle_icon::before{display:block;-webkit-box-sizing:border-box;box-sizing:border-box;transform:translate(-50%,-50%);background-color:#FFF}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#2A2A2A}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#2A2A2A}.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#444}.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#444}.vc_toggle_square .vc_toggle_icon{border:2px solid transparent;border-radius:0;display:inline-block;height:22px;width:22px;background-color:#2A2A2A}.vc_toggle_square.vc_toggle_active .vc_toggle_icon::after{visibility:hidden}.vc_toggle_square .vc_toggle_icon::before{height:2px;width:10px}.vc_toggle_square .vc_toggle_icon::after{height:10px;width:2px}.vc_toggle_square .vc_toggle_icon::after,.vc_toggle_square .vc_toggle_icon::before{content:'';display:block;left:50%;position:absolute;top:50%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#FFF}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#2A2A2A}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#2A2A2A}.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#444}.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#444}.vc_toggle_text_only .vc_toggle_icon{display:none}.vc_toggle_arrow .vc_toggle_icon{display:inline-block}.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_arrow .vc_toggle_icon::before{content:'';border-style:solid;display:block;left:50%;position:absolute;top:50%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.vc_toggle_arrow .vc_toggle_icon::before{border-left:none;border-top:none}.vc_toggle_arrow .vc_toggle_icon::after{border-right:none;border-bottom:none;visibility:hidden}.vc_toggle_arrow.vc_toggle_active .vc_toggle_icon::before{visibility:hidden}.vc_toggle_arrow.vc_toggle_active .vc_toggle_icon::after{visibility:visible}.vc_toggle.vc_toggle_arrow .vc_toggle_icon{height:22px;width:22px;background:0 0}.vc_toggle.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle.vc_toggle_arrow .vc_toggle_icon::before{border-width:2px;height:10px;margin-left:-5px;width:10px;border-color:#2A2A2A;background:0 0}.vc_toggle.vc_toggle_arrow .vc_toggle_icon::before{margin-top:-10px}.vc_toggle.vc_toggle_arrow .vc_toggle_icon::after{margin-top:-5px}.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#444;background:0 0}.vc_toggle_default .vc_toggle_icon{background:#bababa;border:1px solid #acacac;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-o-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_toggle_default .vc_toggle_icon::after,.vc_toggle_default .vc_toggle_icon::before{content:'';display:block;left:50%;position:absolute;top:50%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#bababa}.vc_toggle_default .vc_toggle_icon::before{border:1px solid #acacac}.vc_toggle_default.vc_toggle_active .vc_toggle_icon::after,.vc_toggle_default.vc_toggle_active .vc_toggle_icon::before{visibility:hidden}.vc_toggle.vc_toggle_default .vc_toggle_icon{display:inline-block;width:10px;margin-left:5px;height:4px}.vc_toggle.vc_toggle_default .vc_toggle_icon::before{height:10px;width:4px}.vc_toggle.vc_toggle_default .vc_toggle_icon::after{width:8px;height:2px}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon::before{background-color:#5472D2}.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#7c93dd}.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_blue .vc_toggle_icon{background-color:#5472D2;border-color:transparent}.vc_toggle_color_blue .vc_toggle_icon::after,.vc_toggle_color_blue .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#5472D2}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#5472D2}.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon{background-color:#7c93dd}.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#7c93dd}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon::before{border-color:#3354c0;background:#5472D2}.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#7c93dd}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#5472d2;background:#7c93dd}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon::after{background:#5472D2}.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#7c93dd}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon::before{border-color:#5472D2;background:0 0}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#7c93dd;background:0 0}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon::before{background-color:#00C1CF}.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#00919c}.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_turquoise .vc_toggle_icon{background-color:#00C1CF;border-color:transparent}.vc_toggle_color_turquoise .vc_toggle_icon::after,.vc_toggle_color_turquoise .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#00C1CF}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon::before{border-color:#00919c;background:#00C1CF}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#00C1CF}.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon{background-color:#00919c}.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#00919c}.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#00919c}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#006269;background:#00919c}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon::after{background:#00C1CF}.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#00919c}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon::before{border-color:#00C1CF;background:0 0}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#00919c;background:0 0}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon::before{background-color:#FE6C61}.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#fe9b94}.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_pink .vc_toggle_icon{background-color:#FE6C61;border-color:transparent}.vc_toggle_color_pink .vc_toggle_icon::after,.vc_toggle_color_pink .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#FE6C61}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#FE6C61}.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon{background-color:#fe9b94}.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#fe9b94}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon::before{border-color:#fe3d2e;background:#FE6C61}.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#fe9b94}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#fe6c61;background:#fe9b94}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon::after{background:#FE6C61}.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#fe9b94}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon::before{border-color:#FE6C61;background:0 0}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#fe9b94;background:0 0}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon::before{background-color:#8D6DC4}.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#a991d3}.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_violet .vc_toggle_icon{background-color:#8D6DC4;border-color:transparent}.vc_toggle_color_violet .vc_toggle_icon::after,.vc_toggle_color_violet .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#8D6DC4}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#8D6DC4}.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon{background-color:#a991d3}.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#a991d3}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon::before{border-color:#7149b5;background:#8D6DC4}.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#a991d3}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#8d6dc4;background:#a991d3}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon::after{background:#8D6DC4}.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#a991d3}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon::before{border-color:#8D6DC4;background:0 0}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#a991d3;background:0 0}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon::before{background-color:#4CADC9}.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_peacoc .vc_toggle_icon{background-color:#4CADC9;border-color:transparent}.vc_toggle_color_peacoc .vc_toggle_icon::after,.vc_toggle_color_peacoc .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#4CADC9}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#4CADC9}.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon{background-color:#73bfd5}.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon::before{border-color:#3492ae;background:#4CADC9}.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#4cadc9;background:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon::after{background:#4CADC9}.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#73bfd5}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon::before{border-color:#4CADC9;background:0 0}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#73bfd5;background:0 0}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon::before{background-color:#CEC2AB}.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#e1d9cb}.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_chino .vc_toggle_icon{background-color:#CEC2AB;border-color:transparent}.vc_toggle_color_chino .vc_toggle_icon::after,.vc_toggle_color_chino .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#CEC2AB}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#CEC2AB}.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon{background-color:#e1d9cb}.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#e1d9cb}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon::before{border-color:#bbab8b;background:#CEC2AB}.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#e1d9cb}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#cec2ab;background:#e1d9cb}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon::after{background:#CEC2AB}.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#e1d9cb}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon::before{border-color:#CEC2AB;background:0 0}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#e1d9cb;background:0 0}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon::before{background-color:#50485B}.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_mulled_wine .vc_toggle_icon{background-color:#50485B;border-color:transparent}.vc_toggle_color_mulled_wine .vc_toggle_icon::after,.vc_toggle_color_mulled_wine .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#50485B}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#50485B}.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon{background-color:#695f77}.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon::before{border-color:#37313f;background:#50485B}.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#50485b;background:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon::after{background:#50485B}.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#695f77}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon::before{border-color:#50485B;background:0 0}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#695f77;background:0 0}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon::before{background-color:#75D69C}.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_vista_blue .vc_toggle_icon{background-color:#75D69C;border-color:transparent}.vc_toggle_color_vista_blue .vc_toggle_icon::after,.vc_toggle_color_vista_blue .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#75D69C}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#75D69C}.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon{background-color:#9ce2b8}.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon::before{border-color:#4eca80;background:#75D69C}.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#75d69c;background:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon::after{background:#75D69C}.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#9ce2b8}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon::before{border-color:#75D69C;background:0 0}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#9ce2b8;background:0 0}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon::before{background-color:#2A2A2A}.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#444}.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_black .vc_toggle_icon{background-color:#2A2A2A;border-color:transparent}.vc_toggle_color_black .vc_toggle_icon::after,.vc_toggle_color_black .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#2A2A2A}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#2A2A2A}.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon{background-color:#444}.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#444}.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon::before{border-color:#101010;background:#2A2A2A}.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#444}.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#2a2a2a;background:#444}.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon::after{background:#2A2A2A}.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#444}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon::before{border-color:#2A2A2A;background:0 0}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#444;background:0 0}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon::before{background-color:#EBEBEB}.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#d2d2d2}.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_grey .vc_toggle_icon{background-color:#EBEBEB;border-color:transparent}.vc_toggle_color_grey .vc_toggle_icon::after,.vc_toggle_color_grey .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#EBEBEB}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon::before{border-color:#d2d2d2;background:#EBEBEB}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#EBEBEB}.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon{background-color:#d2d2d2}.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#d2d2d2}.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#d2d2d2}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#b8b8b8;background:#d2d2d2}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon::after{background:#EBEBEB}.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#d2d2d2}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon::before{border-color:#EBEBEB;background:0 0}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#d2d2d2;background:0 0}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon::before{background-color:#F7BE68}.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#fad398}.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_orange .vc_toggle_icon{background-color:#F7BE68;border-color:transparent}.vc_toggle_color_orange .vc_toggle_icon::after,.vc_toggle_color_orange .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#F7BE68}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#F7BE68}.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon{background-color:#fad398}.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#fad398}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon::before{border-color:#f4a938;background:#F7BE68}.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#fad398}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#f7be68;background:#fad398}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon::after{background:#F7BE68}.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#fad398}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon::before{border-color:#F7BE68;background:0 0}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#fad398;background:0 0}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon::before{background-color:#5AA1E3}.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#86baea}.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_sky .vc_toggle_icon{background-color:#5AA1E3;border-color:transparent}.vc_toggle_color_sky .vc_toggle_icon::after,.vc_toggle_color_sky .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#5AA1E3}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#5AA1E3}.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon{background-color:#86baea}.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#86baea}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon::before{border-color:#2e88dc;background:#5AA1E3}.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#86baea}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#5aa1e3;background:#86baea}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon::after{background:#5AA1E3}.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#86baea}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon::before{border-color:#5AA1E3;background:0 0}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#86baea;background:0 0}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon::before{background-color:#6DAB3C}.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#87c456}.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_green .vc_toggle_icon{background-color:#6DAB3C;border-color:transparent}.vc_toggle_color_green .vc_toggle_icon::after,.vc_toggle_color_green .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#6DAB3C}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#6DAB3C}.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon{background-color:#87c456}.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#87c456}.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon::before{border-color:#55852f;background:#6DAB3C}.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#87c456}.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#6dab3c;background:#87c456}.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon::after{background:#6DAB3C}.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#87c456}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon::before{border-color:#6DAB3C;background:0 0}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#87c456;background:0 0}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon::before{background-color:#F4524D}.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_juicy_pink .vc_toggle_icon{background-color:#F4524D;border-color:transparent}.vc_toggle_color_juicy_pink .vc_toggle_icon::after,.vc_toggle_color_juicy_pink .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#F4524D}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#F4524D}.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon{background-color:#f7817d}.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon::before{border-color:#f1231d;background:#F4524D}.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#f4524d;background:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon::after{background:#F4524D}.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#f7817d}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon::before{border-color:#F4524D;background:0 0}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#f7817d;background:0 0}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon::before{background-color:#F79468}.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_sandy_brown .vc_toggle_icon{background-color:#F79468;border-color:transparent}.vc_toggle_color_sandy_brown .vc_toggle_icon::after,.vc_toggle_color_sandy_brown .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#F79468}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#F79468}.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon{background-color:#fab698}.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon::before{border-color:#f47238;background:#F79468}.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#f79468;background:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon::after{background:#F79468}.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#fab698}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon::before{border-color:#F79468;background:0 0}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#fab698;background:0 0}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon::before{background-color:#B97EBB}.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#cb9fcd}.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_purple .vc_toggle_icon{background-color:#B97EBB;border-color:transparent}.vc_toggle_color_purple .vc_toggle_icon::after,.vc_toggle_color_purple .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#B97EBB}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#B97EBB}.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon{background-color:#cb9fcd}.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#cb9fcd}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon::before{border-color:#a75da9;background:#B97EBB}.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#cb9fcd}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#b97ebb;background:#cb9fcd}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon::after{background:#B97EBB}.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#cb9fcd}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon::before{border-color:#B97EBB;background:0 0}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#cb9fcd;background:0 0}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#e6e6e6}.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:transparent}.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:transparent}.vc_toggle_color_white .vc_toggle_icon{background-color:#FFF;border-color:transparent}.vc_toggle_color_white .vc_toggle_icon::after,.vc_toggle_color_white .vc_toggle_icon::before{background-color:#2A2A2A}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon{background-color:transparent;border-color:#FFF}.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon,.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon::before{border-color:#e6e6e6;background:#FFF}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon::before{background-color:#FFF}.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon{background-color:#e6e6e6}.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#2A2A2A}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon{background-color:transparent;border-color:#e6e6e6}.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before{background-color:#e6e6e6}.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon,.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#ccc;background:#e6e6e6}.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon::after{background:#FFF}.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after{background:#e6e6e6}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon{background:0 0}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon::before{border-color:#FFF;background:0 0}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon{background:0 0}.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before{border-color:#e6e6e6;background:0 0}.vc_toggle_size_sm .vc_toggle_icon{height:16px;width:16px}.vc_toggle_size_sm .vc_toggle_icon::before{height:2px;width:8px}.vc_toggle_size_sm .vc_toggle_icon::after{height:8px;width:2px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon{display:inline-block;width:8px;margin-left:4px;height:2px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon::before{height:8px;width:2px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon::after{width:6px;height:0}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon{height:16px;width:16px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::before{border-width:2px;height:8px;margin-left:-4px;width:8px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::before{margin-top:-8px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::after{margin-top:-4px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_title{padding-left:24px}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_round .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_sm.vc_toggle_square .vc_toggle_title .vc_toggle_icon{position:absolute;left:0;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-o-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content,.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title{padding-left:17.6px}.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon{margin-left:8px}.vc_toggle_size_md .vc_toggle_icon{height:22px;width:22px}.vc_toggle_size_md .vc_toggle_icon::before{height:2px;width:10px}.vc_toggle_size_md .vc_toggle_icon::after{height:10px;width:2px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon{display:inline-block;width:10px;margin-left:5px;height:4px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon::before{height:10px;width:4px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon::after{width:8px;height:2px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon{height:22px;width:22px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::before{border-width:2px;height:10px;margin-left:-5px;width:10px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::before{margin-top:-10px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::after{margin-top:-5px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_content,.vc_toggle_size_md.vc_toggle_default .vc_toggle_title,.vc_toggle_size_md.vc_toggle_round .vc_toggle_content,.vc_toggle_size_md.vc_toggle_round .vc_toggle_title,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_md.vc_toggle_square .vc_toggle_content,.vc_toggle_size_md.vc_toggle_square .vc_toggle_title{padding-left:33px}.vc_toggle_size_md.vc_toggle_default .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_default .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_round .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_round .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_square .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_md.vc_toggle_square .vc_toggle_title .vc_toggle_icon{position:absolute;left:0;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-o-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_toggle_size_md.vc_toggle_default .vc_toggle_content,.vc_toggle_size_md.vc_toggle_default .vc_toggle_title{padding-left:24.2px}.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon{margin-left:11px}.vc_toggle_size_lg .vc_toggle_icon{height:28px;width:28px}.vc_toggle_size_lg .vc_toggle_icon::before{height:2px;width:14px}.vc_toggle_size_lg .vc_toggle_icon::after{height:14px;width:2px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon{display:inline-block;width:14px;margin-left:7px;height:4px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon::before{height:14px;width:4px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon::after{width:12px;height:2px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon{height:28px;width:28px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::after,.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::before{border-width:2px;height:14px;margin-left:-7px;width:14px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::before{margin-top:-14px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::after{margin-top:-7px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_title,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_title{padding-left:42px}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_round .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_content .vc_toggle_icon,.vc_toggle_size_lg.vc_toggle_square .vc_toggle_title .vc_toggle_icon{position:absolute;left:0;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-o-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content,.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title{padding-left:30.8px}.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon{margin-left:14px}.vc_toggle_default .vc_toggle_content,.vc_toggle_default .vc_toggle_title,.vc_toggle_round .vc_toggle_content,.vc_toggle_round .vc_toggle_title,.vc_toggle_rounded .vc_toggle_content,.vc_toggle_rounded .vc_toggle_title,.vc_toggle_simple .vc_toggle_content,.vc_toggle_simple .vc_toggle_title,.vc_toggle_square .vc_toggle_content,.vc_toggle_square .vc_toggle_title{padding-left:33px}.vc_toggle_default .vc_toggle_content .vc_toggle_icon,.vc_toggle_default .vc_toggle_title .vc_toggle_icon,.vc_toggle_round .vc_toggle_content .vc_toggle_icon,.vc_toggle_round .vc_toggle_title .vc_toggle_icon,.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,.vc_toggle_square .vc_toggle_content .vc_toggle_icon,.vc_toggle_square .vc_toggle_title .vc_toggle_icon{position:absolute;left:0;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-o-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_toggle_default .vc_toggle_content,.vc_toggle_default .vc_toggle_title{padding-left:24.2px}.vc_toggle_arrow .vc_toggle_icon{margin-left:11px}.wpb_widgetised_column .wpb_wrapper>ul{margin:0}.wpb_widgetised_column .wpb_wrapper>ul>li{margin-left:0;background-image:none;list-style:none!important}.wpb_widgetised_column .wpb_wrapper>ul>li:after,.wpb_widgetised_column .wpb_wrapper>ul>li:before{display:none!important}.wpb_button{display:inline-block;padding:4px 10px;margin-bottom:0;margin-top:0;font-size:13px;line-height:18px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,.75);vertical-align:middle;cursor:pointer;background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-color:rgba(0,0,0,.1)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_black .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_blue .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_orange .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_red .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_turquoise .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-blue .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-chino .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-mulled-wine .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-peacoc .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-pink .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-violet .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista-blue .vc_label,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista_blue .vc_label,.vc_progress_bar.vc_progress-bar-color-bar_black .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-bar_blue .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-bar_green .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-bar_orange .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-bar_red .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-bar_turquoise .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-black .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-blue .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-chino .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-mulled-wine .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-peacoc .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-pink .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-turquoise .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-violet .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-vista-blue .vc_single_bar .vc_label,.vc_progress_bar.vc_progress-bar-color-vista_blue .vc_single_bar .vc_label{text-shadow:0 -1px 0 rgba(0,0,0,.25);color:#fff}.wpb_button.active,.wpb_button.disabled,.wpb_button:active,.wpb_button:hover,.wpb_button[disabled]{background-color:#eaeaea}.vc_vc_button .vc_btn,.vc_vc_button2 .vc_btn{margin-top:5px;margin-bottom:5px}.wpb_button:hover{color:#333;background-color:#e6e6e6;-webkit-transition:background-color .1s linear;-o-transition:background-color .1s linear;transition:background-color .1s linear;background-image:none}.wpb_button:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.wpb_button.active,.wpb_button:active{background-color:#e6e6e6;background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}button.wpb_btn-large,span.wpb_btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}button.wpb_btn-large [class^=icon-],span.wpb_btn-large [class^=icon-]{margin-top:1px}button.wpb_btn-small,span.wpb_btn-small{padding:5px 9px;font-size:11px;line-height:16px}button.wpb_btn-small [class^=icon-],span.wpb_btn-small [class^=icon-]{margin-top:-1px}button.wpb_btn-mini,span.wpb_btn-mini{padding:2px 6px;font-size:11px;line-height:14px}.wpb_btn-danger,.wpb_btn-danger:hover,.wpb_btn-info,.wpb_btn-info:hover,.wpb_btn-inverse,.wpb_btn-inverse:hover,.wpb_btn-primary,.wpb_btn-primary:hover,.wpb_btn-success,.wpb_btn-success:hover,.wpb_btn-warning,.wpb_btn-warning:hover{color:#FFF;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.wpb_btn-danger.active,.wpb_btn-info.active,.wpb_btn-inverse.active,.wpb_btn-primary.active,.wpb_btn-success.active,.wpb_btn-warning.active{color:rgba(255,255,255,.75)}.wpb_btn-primary{background-color:#08c}.wpb_btn-primary.active,.wpb_btn-primary.disabled,.wpb_btn-primary:active,.wpb_btn-primary:hover,.wpb_btn-primary[disabled]{background-color:#0077b3}.wpb_btn-warning{background-color:#F90}.wpb_btn-warning.active,.wpb_btn-warning.disabled,.wpb_btn-warning:active,.wpb_btn-warning:hover,.wpb_btn-warning[disabled]{background-color:#e68a00}.wpb_btn-danger{background-color:#FF675B}.wpb_btn-danger.active,.wpb_btn-danger.disabled,.wpb_btn-danger:active,.wpb_btn-danger:hover,.wpb_btn-danger[disabled]{background-color:#ff4f42}.wpb_btn-success{background-color:#6AB165}.wpb_btn-success.active,.wpb_btn-success.disabled,.wpb_btn-success:active,.wpb_btn-success:hover,.wpb_btn-success[disabled]{background-color:#5aa855}.wpb_btn-info{background-color:#58B9DA}.wpb_btn-info.active,.wpb_btn-info.disabled,.wpb_btn-info:active,.wpb_btn-info:hover,.wpb_btn-info[disabled]{background-color:#43b0d5}.wpb_btn-inverse{background-color:#555}.wpb_btn-inverse.active,.wpb_btn-inverse.disabled,.wpb_btn-inverse:active,.wpb_btn-inverse:hover,.wpb_btn-inverse[disabled]{background-color:#484848}button.wpb_button::-moz-focus-inner,input[type=submit].wpb_button::-moz-focus-inner{padding:0;border:0}a.wpb_button_a{border:none}.vc_btn3-container{display:block;margin-bottom:21.74px;max-width:100%}.vc_btn3-container.vc_btn3-inline{display:inline-block;vertical-align:top}.vc_general.vc_btn3{display:inline-block;margin-bottom:0;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;background-color:transparent;color:#5472D2;border:1px solid transparent;box-sizing:border-box;word-wrap:break-word;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;top:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;line-height:normal;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;font-size:14px;padding:14px 20px}.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a,.wpb_gallery .wpb_flexslider .flex-caption{cursor:default}.wpb_call_to_action,.wpb_call_to_action .wpb_button{-webkit-box-sizing:border-box;-moz-box-sizing:border-box}.vc_general.vc_btn3.vc_btn3-style-outline,.vc_general.vc_btn3.vc_btn3-style-outline-custom{padding:13px 19px}.vc_general.vc_btn3.active,.vc_general.vc_btn3:active,.vc_general.vc_btn3:focus{outline:0}.vc_general.vc_btn3:focus,.vc_general.vc_btn3:hover{border:1px solid transparent;text-decoration:none;color:#4868cf}.vc_general.vc_btn3 .vc_btn3-icon{vertical-align:top;height:14px;line-height:1;font-size:16px}.vc_general.vc_btn3 .vc_btn3-icon-inner{display:block;position:absolute;top:50%;left:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_general.vc_btn3 .vc_btn3-placeholder{display:inline-block;vertical-align:top;width:0}.vc_btn3.vc_btn3-icon-left,.vc_btn3.vc_btn3-icon-right{position:relative}.vc_btn3.vc_btn3-icon-left .vc_btn3-icon,.vc_btn3.vc_btn3-icon-right .vc_btn3-icon{display:block;position:absolute;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-o-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_btn3.vc_btn3-icon-left{text-align:left}.vc_btn3.vc_btn3-icon-right{text-align:right}.vc_btn3.vc_btn3-icon-right:not(.vc_btn3-block) .vc_btn3-icon-inner{-webkit-transform:translate(-75%,-50%);-ms-transform:translate(-75%,-50%);transform:translate(-75%,-50%)}.vc_btn3.vc_btn3-o-empty .vc_btn3-icon{-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.vc_btn3.vc_btn3-o-empty:not(.vc_btn3-block) .vc_btn3-icon-inner{-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.vc_btn3.vc_btn3-style-classic{border-color:rgba(0,0,0,.1)}.vc_btn3.vc_btn3-style-modern{background-image:-webkit-linear-gradient(top,rgba(255,255,255,.2) 0,rgba(255,255,255,.01) 100%);background-image:-o-linear-gradient(top,rgba(255,255,255,.2) 0,rgba(255,255,255,.01) 100%);background-image:linear-gradient(to bottom,rgba(255,255,255,.2) 0,rgba(255,255,255,.01) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#33ffffff', endColorstr='#03ffffff', GradientType=0)}.vc_btn3.vc_btn3-style-outline,.vc_btn3.vc_btn3-style-outline-custom,.vc_btn3.vc_btn3-style-outline-custom:focus,.vc_btn3.vc_btn3-style-outline-custom:hover,.vc_btn3.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-style-outline:hover{border-width:2px}.vc_btn3.vc_btn3-style-custom{background-image:-webkit-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.1) 50%,rgba(0,0,0,.1));background-image:-o-linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.1) 50%,rgba(0,0,0,.1));background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.1) 50%,rgba(0,0,0,.1));filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);background-repeat:repeat-x;background-size:200%;background-position:0 -100%}.vc_btn3.vc_btn3-style-custom:focus,.vc_btn3.vc_btn3-style-custom:hover{background-position:0 100%}.vc_btn3.vc_btn3-block{display:block;width:100%;text-align:inherit}.vc_btn3.vc_btn3-shape-square{border-radius:0}.vc_btn3.vc_btn3-shape-rounded{border-radius:5px}.vc_btn3.vc_btn3-shape-round{border-radius:2em}.vc_btn3.vc_btn3-size-xs{font-size:11px;padding:8px 12px}.vc_btn3.vc_btn3-size-xs.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-xs.vc_btn3-style-outline-custom{padding:7px 11px}.vc_btn3.vc_btn3-size-xs .vc_btn3-icon{font-size:14px;height:11px;line-height:11px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:31px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:12px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:31px}.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:12px}.vc_btn3.vc_btn3-size-sm{font-size:12px;padding:11px 16px}.vc_btn3.vc_btn3-size-sm.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-sm.vc_btn3-style-outline-custom{padding:10px 15px}.vc_btn3.vc_btn3-size-sm .vc_btn3-icon{font-size:14px;height:12px;line-height:12px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:39px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:16px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:39px}.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:16px}.vc_btn3.vc_btn3-size-md{font-size:14px;padding:14px 20px}.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline-custom{padding:13px 19px}.vc_btn3.vc_btn3-size-md .vc_btn3-icon{font-size:16px;height:14px;line-height:14px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:48px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:20px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:48px}.vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:20px}.vc_btn3.vc_btn3-size-lg{font-size:16px;padding:18px 25px}.vc_btn3.vc_btn3-size-lg.vc_btn3-style-outline,.vc_btn3.vc_btn3-size-lg.vc_btn3-style-outline-custom{padding:17px 24px}.vc_btn3.vc_btn3-size-lg .vc_btn3-icon{font-size:20px;height:16px;line-height:16px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-left:not(.vc_btn3-o-empty){padding-left:60px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{left:25px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty){padding-right:60px}.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{right:25px}.vc_btn3.vc_btn3-color-blue,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat{color:#fff;background-color:#5472D2}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-blue:focus,.vc_btn3.vc_btn3-color-blue:hover{color:#f7f7f7;background-color:#3c5ecc}.vc_btn3.vc_btn3-color-blue.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-blue:active{color:#f2f2f2;background-color:#3558c8}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline{color:#5472D2;border-color:#5472D2;background-color:transparent}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:hover{color:#fff;border-color:#5472D2;background-color:#5472D2}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d{color:#fff;background-color:#5472D2;box-shadow:0 5px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#5472D2;top:3px;box-shadow:0 2px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#5472D2}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #3253bc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern{color:#fff;border-color:#5472D2;background-color:#5472D2}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#3c5ecc;background-color:#3c5ecc}.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#3558c8;background-color:#3558c8}.vc_btn3.vc_btn3-color-turquoise,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat{color:#fff;background-color:#00C1CF}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-turquoise:focus,.vc_btn3.vc_btn3-color-turquoise:hover{color:#f7f7f7;background-color:#00a4b0}.vc_btn3.vc_btn3-color-turquoise.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-turquoise:active{color:#f2f2f2;background-color:#009ba6}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline{color:#00C1CF;border-color:#00C1CF;background-color:transparent}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:hover{color:#fff;border-color:#00C1CF;background-color:#00C1CF}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d{color:#fff;background-color:#00C1CF;box-shadow:0 5px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#00C1CF;top:3px;box-shadow:0 2px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#00C1CF}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #008d97}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern{color:#fff;border-color:#00C1CF;background-color:#00C1CF}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#00a4b0;background-color:#00a4b0}.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#009ba6;background-color:#009ba6}.vc_btn3.vc_btn3-color-pink,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat{color:#fff;background-color:#FE6C61}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-pink:focus,.vc_btn3.vc_btn3-color-pink:hover{color:#f7f7f7;background-color:#fe5043}.vc_btn3.vc_btn3-color-pink.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-pink:active{color:#f2f2f2;background-color:#fe4638}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline{color:#FE6C61;border-color:#FE6C61;background-color:transparent}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:hover{color:#fff;border-color:#FE6C61;background-color:#FE6C61}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d{color:#fff;background-color:#FE6C61;box-shadow:0 5px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#FE6C61;top:3px;box-shadow:0 2px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#FE6C61}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #fe3829}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern{color:#fff;border-color:#FE6C61;background-color:#FE6C61}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#fe5043;background-color:#fe5043}.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#fe4638;background-color:#fe4638}.vc_btn3.vc_btn3-color-violet,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat{color:#fff;background-color:#8D6DC4}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-violet:focus,.vc_btn3.vc_btn3-color-violet:hover{color:#f7f7f7;background-color:#7c57bb}.vc_btn3.vc_btn3-color-violet.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-violet:active{color:#f2f2f2;background-color:#7650b8}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline{color:#8D6DC4;border-color:#8D6DC4;background-color:transparent}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:hover{color:#fff;border-color:#8D6DC4;background-color:#8D6DC4}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d{color:#fff;background-color:#8D6DC4;box-shadow:0 5px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#8D6DC4;top:3px;box-shadow:0 2px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#8D6DC4}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #6e48b1}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern{color:#fff;border-color:#8D6DC4;background-color:#8D6DC4}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#7c57bb;background-color:#7c57bb}.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#7650b8;background-color:#7650b8}.vc_btn3.vc_btn3-color-peacoc,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat{color:#fff;background-color:#4CADC9}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-peacoc:focus,.vc_btn3.vc_btn3-color-peacoc:hover{color:#f7f7f7;background-color:#39a0bd}.vc_btn3.vc_btn3-color-peacoc.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-peacoc:active{color:#f2f2f2;background-color:#3799b5}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline{color:#4CADC9;border-color:#4CADC9;background-color:transparent}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:hover{color:#fff;border-color:#4CADC9;background-color:#4CADC9}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d{color:#fff;background-color:#4CADC9;box-shadow:0 5px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#4CADC9;top:3px;box-shadow:0 2px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#4CADC9}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #338faa}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern{color:#fff;border-color:#4CADC9;background-color:#4CADC9}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#39a0bd;background-color:#39a0bd}.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#3799b5;background-color:#3799b5}.vc_btn3.vc_btn3-color-chino,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat{color:#fff;background-color:#CEC2AB}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-chino:focus,.vc_btn3.vc_btn3-color-chino:hover{color:#f7f7f7;background-color:#c3b498}.vc_btn3.vc_btn3-color-chino.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-chino:active{color:#f2f2f2;background-color:#bfaf91}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline{color:#CEC2AB;border-color:#CEC2AB;background-color:transparent}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:hover{color:#fff;border-color:#CEC2AB;background-color:#CEC2AB}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d{color:#fff;background-color:#CEC2AB;box-shadow:0 5px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#CEC2AB;top:3px;box-shadow:0 2px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#CEC2AB}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #b9a888}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern{color:#fff;border-color:#CEC2AB;background-color:#CEC2AB}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#c3b498;background-color:#c3b498}.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#bfaf91;background-color:#bfaf91}.vc_btn3.vc_btn3-color-mulled-wine,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat{color:#fff;background-color:#50485B}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-mulled-wine:focus,.vc_btn3.vc_btn3-color-mulled-wine:hover{color:#f7f7f7;background-color:#413a4a}.vc_btn3.vc_btn3-color-mulled-wine.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-mulled-wine:active{color:#f2f2f2;background-color:#3c3644}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline{color:#50485B;border-color:#50485B;background-color:transparent}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:hover{color:#fff;border-color:#50485B;background-color:#50485B}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d{color:#fff;background-color:#50485B;box-shadow:0 5px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#50485B;top:3px;box-shadow:0 2px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#50485B}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #342f3c}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern{color:#fff;border-color:#50485B;background-color:#50485B}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#413a4a;background-color:#413a4a}.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#3c3644;background-color:#3c3644}.vc_btn3.vc_btn3-color-vista-blue,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat{color:#fff;background-color:#75D69C}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-vista-blue:focus,.vc_btn3.vc_btn3-color-vista-blue:hover{color:#f7f7f7;background-color:#5dcf8b}.vc_btn3.vc_btn3-color-vista-blue.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-vista-blue:active{color:#f2f2f2;background-color:#56cd85}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline{color:#75D69C;border-color:#75D69C;background-color:transparent}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:hover{color:#fff;border-color:#75D69C;background-color:#75D69C}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d{color:#fff;background-color:#75D69C;box-shadow:0 5px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#75D69C;top:3px;box-shadow:0 2px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#75D69C}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #4ac97d}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern{color:#fff;border-color:#75D69C;background-color:#75D69C}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#5dcf8b;background-color:#5dcf8b}.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#56cd85;background-color:#56cd85}.vc_btn3.vc_btn3-color-orange,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat{color:#fff;background-color:#F7BE68}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-orange:focus,.vc_btn3.vc_btn3-color-orange:hover{color:#f7f7f7;background-color:#f5b14b}.vc_btn3.vc_btn3-color-orange.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-orange:active{color:#f2f2f2;background-color:#f5ad41}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline{color:#F7BE68;border-color:#F7BE68;background-color:transparent}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:hover{color:#fff;border-color:#F7BE68;background-color:#F7BE68}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d{color:#fff;background-color:#F7BE68;box-shadow:0 5px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#F7BE68;top:3px;box-shadow:0 2px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#F7BE68}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #f4a733}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern{color:#fff;border-color:#F7BE68;background-color:#F7BE68}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#f5b14b;background-color:#f5b14b}.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#f5ad41;background-color:#f5ad41}.vc_btn3.vc_btn3-color-sky,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat{color:#fff;background-color:#5AA1E3}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-sky:focus,.vc_btn3.vc_btn3-color-sky:hover{color:#f7f7f7;background-color:#4092df}.vc_btn3.vc_btn3-color-sky.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-sky:active{color:#f2f2f2;background-color:#378ddd}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline{color:#5AA1E3;border-color:#5AA1E3;background-color:transparent}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:hover{color:#fff;border-color:#5AA1E3;background-color:#5AA1E3}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d{color:#fff;background-color:#5AA1E3;box-shadow:0 5px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#5AA1E3;top:3px;box-shadow:0 2px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#5AA1E3}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #2a86db}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern{color:#fff;border-color:#5AA1E3;background-color:#5AA1E3}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#4092df;background-color:#4092df}.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#378ddd;background-color:#378ddd}.vc_btn3.vc_btn3-color-green,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat{color:#fff;background-color:#6DAB3C}.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-green:focus,.vc_btn3.vc_btn3-color-green:hover{color:#f7f7f7;background-color:#5f9434}.vc_btn3.vc_btn3-color-green.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-green:active{color:#f2f2f2;background-color:#5a8d31}.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline{color:#6DAB3C;border-color:#6DAB3C;background-color:transparent}.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:hover{color:#fff;border-color:#6DAB3C;background-color:#6DAB3C}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d{color:#fff;background-color:#6DAB3C;box-shadow:0 5px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#6DAB3C;top:3px;box-shadow:0 2px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#6DAB3C}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #53812d}.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern{color:#fff;border-color:#6DAB3C;background-color:#6DAB3C}.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#5f9434;background-color:#5f9434}.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#5a8d31;background-color:#5a8d31}.vc_btn3.vc_btn3-color-juicy-pink,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat{color:#fff;background-color:#F4524D}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-juicy-pink:focus,.vc_btn3.vc_btn3-color-juicy-pink:hover{color:#f7f7f7;background-color:#f23630}.vc_btn3.vc_btn3-color-juicy-pink.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-juicy-pink:active{color:#f2f2f2;background-color:#f22d27}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline{color:#F4524D;border-color:#F4524D;background-color:transparent}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:hover{color:#fff;border-color:#F4524D;background-color:#F4524D}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d{color:#fff;background-color:#F4524D;box-shadow:0 5px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#F4524D;top:3px;box-shadow:0 2px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#F4524D}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #f11f18}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern{color:#fff;border-color:#F4524D;background-color:#F4524D}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#f23630;background-color:#f23630}.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#f22d27;background-color:#f22d27}.vc_btn3.vc_btn3-color-sandy-brown,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat{color:#fff;background-color:#F79468}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-sandy-brown:focus,.vc_btn3.vc_btn3-color-sandy-brown:hover{color:#f7f7f7;background-color:#f57f4b}.vc_btn3.vc_btn3-color-sandy-brown.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-sandy-brown:active{color:#f2f2f2;background-color:#f57941}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline{color:#F79468;border-color:#F79468;background-color:transparent}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:hover{color:#fff;border-color:#F79468;background-color:#F79468}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d{color:#fff;background-color:#F79468;box-shadow:0 5px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#F79468;top:3px;box-shadow:0 2px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#F79468}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #f46e33}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern{color:#fff;border-color:#F79468;background-color:#F79468}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#f57f4b;background-color:#f57f4b}.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#f57941;background-color:#f57941}.vc_btn3.vc_btn3-color-purple,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat{color:#fff;background-color:#B97EBB}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-purple:focus,.vc_btn3.vc_btn3-color-purple:hover{color:#f7f7f7;background-color:#ae6ab0}.vc_btn3.vc_btn3-color-purple.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-purple:active{color:#f2f2f2;background-color:#ab63ad}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline{color:#B97EBB;border-color:#B97EBB;background-color:transparent}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:hover{color:#fff;border-color:#B97EBB;background-color:#B97EBB}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d{color:#fff;background-color:#B97EBB;box-shadow:0 5px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#B97EBB;top:3px;box-shadow:0 2px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#B97EBB}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #a559a8}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern{color:#fff;border-color:#B97EBB;background-color:#B97EBB}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#ae6ab0;background-color:#ae6ab0}.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#ab63ad;background-color:#ab63ad}.vc_btn3.vc_btn3-color-black,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat{color:#fff;background-color:#2A2A2A}.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-black:focus,.vc_btn3.vc_btn3-color-black:hover{color:#f7f7f7;background-color:#1b1b1b}.vc_btn3.vc_btn3-color-black.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-black:active{color:#f2f2f2;background-color:#161616}.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline{border-color:#2A2A2A;background-color:transparent}.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:hover{color:#fff;border-color:#2A2A2A;background-color:#2A2A2A}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d{color:#fff;background-color:#2A2A2A;box-shadow:0 5px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#2A2A2A;top:3px;box-shadow:0 2px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#2A2A2A}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #0e0e0e}.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern{color:#fff;border-color:#2A2A2A;background-color:#2A2A2A}.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#1b1b1b;background-color:#1b1b1b}.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#161616;background-color:#161616}.vc_btn3.vc_btn3-color-grey,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat{color:#666;background-color:#EBEBEB}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-grey:focus,.vc_btn3.vc_btn3-color-grey:hover{color:#5e5e5e;background-color:#dcdcdc}.vc_btn3.vc_btn3-color-grey.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-grey:active{color:#595959;background-color:#d7d7d7}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline{border-color:#EBEBEB;background-color:transparent}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:hover{color:#666;border-color:#EBEBEB;background-color:#EBEBEB}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d{color:#666;background-color:#EBEBEB;box-shadow:0 5px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:hover{color:#5e5e5e;background-color:#EBEBEB;top:3px;box-shadow:0 2px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:active{color:#595959;background-color:#EBEBEB}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #cfcfcf}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern{color:#666;border-color:#EBEBEB;background-color:#EBEBEB}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover{color:#5e5e5e;border-color:#dcdcdc;background-color:#dcdcdc}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:active{color:#595959;border-color:#d7d7d7;background-color:#d7d7d7}.vc_btn3.vc_btn3-color-white,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat{color:#666;background-color:#FFF}.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-white:focus,.vc_btn3.vc_btn3-color-white:hover{color:#5e5e5e;background-color:#f0f0f0}.vc_btn3.vc_btn3-color-white.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-white:active{color:#595959;background-color:#ebebeb}.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline{border-color:#FFF;background-color:transparent}.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:hover{color:#666;border-color:#FFF;background-color:#FFF}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d{color:#666;background-color:#FFF;box-shadow:0 5px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:hover{color:#5e5e5e;background-color:#FFF;top:3px;box-shadow:0 2px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:active{color:#595959;background-color:#FFF}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #e3e3e3}.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern{color:#666;border-color:#FFF;background-color:#FFF;background-image:-webkit-linear-gradient(top,rgba(0,0,0,.01) 0,rgba(0,0,0,.02) 100%);background-image:-o-linear-gradient(top,rgba(0,0,0,.01) 0,rgba(0,0,0,.02) 100%);background-image:linear-gradient(to bottom,rgba(0,0,0,.01) 0,rgba(0,0,0,.02) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#03000000', endColorstr='#05000000', GradientType=0)}.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:hover{color:#5e5e5e;border-color:#f0f0f0;background-color:#f0f0f0}.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:active{color:#595959;border-color:#ebebeb;background-color:#ebebeb}.vc_btn3.vc_btn3-color-default,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat{color:#333;background-color:#f7f7f7}.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-default:focus,.vc_btn3.vc_btn3-color-default:hover{color:#2b2b2b;background-color:#e8e8e8}.vc_btn3.vc_btn3-color-default.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-default:active{color:#262626;background-color:#e3e3e3}.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline{color:#f7f7f7;border-color:#f7f7f7;background-color:transparent}.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:hover{color:#333;border-color:#f7f7f7;background-color:#f7f7f7}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d{color:#333;background-color:#f7f7f7;box-shadow:0 5px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:hover{color:#2b2b2b;background-color:#f7f7f7;top:3px;box-shadow:0 2px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:active{color:#262626;background-color:#f7f7f7}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #dbdbdb}.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern{color:#333;border-color:#f7f7f7;background-color:#f7f7f7}.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:hover{color:#2b2b2b;border-color:#e8e8e8;background-color:#e8e8e8}.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:active{color:#262626;border-color:#e3e3e3;background-color:#e3e3e3}.vc_btn3.vc_btn3-color-primary,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat{color:#FFF;background-color:#08c}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-primary:focus,.vc_btn3.vc_btn3-color-primary:hover{color:#f7f7f7;background-color:#0074ad}.vc_btn3.vc_btn3-color-primary.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-primary:active{color:#f2f2f2;background-color:#006da3}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline{color:#08c;border-color:#08c;background-color:transparent}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:hover{color:#FFF;border-color:#08c;background-color:#08c}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d{color:#FFF;background-color:#08c;box-shadow:0 5px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#08c;top:3px;box-shadow:0 2px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#08c}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #006394}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern{color:#FFF;border-color:#08c;background-color:#08c}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#0074ad;background-color:#0074ad}.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#006da3;background-color:#006da3}.vc_btn3.vc_btn3-color-info,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat{color:#FFF;background-color:#58B9DA}.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-info:focus,.vc_btn3.vc_btn3-color-info:hover{color:#f7f7f7;background-color:#3fafd4}.vc_btn3.vc_btn3-color-info.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-info:active{color:#f2f2f2;background-color:#37abd3}.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline{color:#58B9DA;border-color:#58B9DA;background-color:transparent}.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:hover{color:#FFF;border-color:#58B9DA;background-color:#58B9DA}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d{color:#FFF;background-color:#58B9DA;box-shadow:0 5px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#58B9DA;top:3px;box-shadow:0 2px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#58B9DA}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #2da4cd}.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern{color:#FFF;border-color:#58B9DA;background-color:#58B9DA}.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#3fafd4;background-color:#3fafd4}.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#37abd3;background-color:#37abd3}.vc_btn3.vc_btn3-color-success,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat{color:#fff;background-color:#6AB165}.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-success:focus,.vc_btn3.vc_btn3-color-success:hover{color:#f7f7f7;background-color:#59a453}.vc_btn3.vc_btn3-color-success.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-success:active{color:#f2f2f2;background-color:#559d50}.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline{color:#6AB165;border-color:#6AB165;background-color:transparent}.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:hover{color:#fff;border-color:#6AB165;background-color:#6AB165}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d{color:#fff;background-color:#6AB165;box-shadow:0 5px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#6AB165;top:3px;box-shadow:0 2px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#6AB165}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #4f934b}.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern{color:#fff;border-color:#6AB165;background-color:#6AB165}.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#59a453;background-color:#59a453}.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#559d50;background-color:#559d50}.vc_btn3.vc_btn3-color-warning,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat{color:#FFF;background-color:#F90}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-warning:focus,.vc_btn3.vc_btn3-color-warning:hover{color:#f7f7f7;background-color:#e08700}.vc_btn3.vc_btn3-color-warning.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-warning:active{color:#f2f2f2;background-color:#d68100}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline{color:#F90;border-color:#F90;background-color:transparent}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:hover{color:#FFF;border-color:#F90;background-color:#F90}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d{color:#FFF;background-color:#F90;box-shadow:0 5px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#F90;top:3px;box-shadow:0 2px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#F90}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #c77700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern{color:#FFF;border-color:#F90;background-color:#F90}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#e08700;background-color:#e08700}.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#d68100;background-color:#d68100}.vc_btn3.vc_btn3-color-danger,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat{color:#FFF;background-color:#FF675B}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-danger:focus,.vc_btn3.vc_btn3-color-danger:hover{color:#f7f7f7;background-color:#ff4b3c}.vc_btn3.vc_btn3-color-danger.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-danger:active{color:#f2f2f2;background-color:#ff4132}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline{color:#FF675B;border-color:#FF675B;background-color:transparent}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:hover{color:#FFF;border-color:#FF675B;background-color:#FF675B}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d{color:#FFF;background-color:#FF675B;box-shadow:0 5px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#FF675B;top:3px;box-shadow:0 2px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#FF675B}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #ff3323}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern{color:#FFF;border-color:#FF675B;background-color:#FF675B}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#ff4b3c;background-color:#ff4b3c}.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#ff4132;background-color:#ff4132}.vc_btn3.vc_btn3-color-inverse,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat{color:#FFF;background-color:#555}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:hover,.vc_btn3.vc_btn3-color-inverse:focus,.vc_btn3.vc_btn3-color-inverse:hover{color:#f7f7f7;background-color:#464646}.vc_btn3.vc_btn3-color-inverse.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:active,.vc_btn3.vc_btn3-color-inverse:active{color:#f2f2f2;background-color:#414141}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline{color:#555;border-color:#555;background-color:transparent}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:hover{color:#FFF;border-color:#555;background-color:#555}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d{color:#FFF;background-color:#555;box-shadow:0 5px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:hover{color:#f7f7f7;background-color:#555;top:3px;box-shadow:0 2px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:active{color:#f2f2f2;background-color:#555}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs{box-shadow:0 3px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs:hover{top:1px;box-shadow:0 2px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm{box-shadow:0 4px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm:hover{top:2px;box-shadow:0 2px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg{box-shadow:0 5px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg:hover{top:3px;box-shadow:0 2px 0 #393939}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern{color:#FFF;border-color:#555;background-color:#555}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:focus,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:hover{color:#f7f7f7;border-color:#464646;background-color:#464646}.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern.active,.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:active{color:#f2f2f2;border-color:#414141;background-color:#414141}.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline{color:#2A2A2A}.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline{color:#EBEBEB}.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline{color:#FFF}.vc_general.vc_cta3.vc_cta3-style-3d .vc_cta3-content-header h2,.vc_general.vc_cta3.vc_cta3-style-3d .vc_cta3-content-header h4,.vc_general.vc_cta3.vc_cta3-style-classic:not(.vc_cta3-color-classic) .vc_cta3-content-header h2,.vc_general.vc_cta3.vc_cta3-style-classic:not(.vc_cta3-color-classic) .vc_cta3-content-header h4,.vc_general.vc_cta3.vc_cta3-style-flat .vc_cta3-content-header h2,.vc_general.vc_cta3.vc_cta3-style-flat .vc_cta3-content-header h4,.vc_general.vc_cta3.vc_cta3-style-outline:not(.vc_cta3-color-classic) .vc_cta3-content-header h2,.vc_general.vc_cta3.vc_cta3-style-outline:not(.vc_cta3-color-classic) .vc_cta3-content-header h4{color:inherit}.vc_btn3-container.vc_btn3-center{text-align:center}.vc_btn3-container.vc_btn3-left{text-align:left}.vc_btn3-container.vc_btn3-right{text-align:right}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-left .vc_btn3-icon,.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-right .vc_btn3-icon{display:inline-block;position:static;-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);min-width:1em}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon{margin-right:.5em}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon{margin-left:.5em}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-xs{font-size:11px;padding:8px 12px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-xs.vc_btn3-style-outline,.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-xs.vc_btn3-style-outline-custom{padding:7px 11px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-sm{font-size:12px;padding:11px 16px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-sm.vc_btn3-style-outline,.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-sm.vc_btn3-style-outline-custom{padding:10px 15px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-md{font-size:14px;padding:14px 20px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-md.vc_btn3-style-outline,.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-md.vc_btn3-style-outline-custom{padding:13px 19px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg{font-size:16px;padding:18px 25px}.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg.vc_btn3-style-outline,.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg.vc_btn3-style-outline-custom{padding:17px 24px}.vc_btn3-container .vc_btn3-block.vc_btn3-icon-left,.vc_btn3-container .vc_btn3-block.vc_btn3-icon-right{text-align:inherit}.vc_custom_heading a,.vc_custom_heading a:focus,.vc_custom_heading a:hover,.vc_custom_heading a:visited{border:none;text-decoration:inherit;color:inherit}.vc_custom_heading a{-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;opacity:1}.vc_custom_heading a:hover{opacity:.85}.vc_call_to_action{background-color:#EBEBEB;border:2px solid #EBEBEB;padding:2em;border-radius:5px}.vc_call_to_action :last-child{margin-bottom:0}.vc_call_to_action.vc_cta_square{border-radius:0}.vc_call_to_action.vc_cta_square_outlined{border-radius:0;background:0 0!important}.vc_call_to_action.vc_cta_round{border-radius:50px}.vc_call_to_action.vc_cta_outlined{background:0 0!important}.vc_call_to_action hgroup h2,.vc_call_to_action hgroup h4{margin:0;clear:none}.vc_call_to_action hgroup+p{margin-top:1em}.vc_call_to_action.vc_cta_btn_pos_right .vc_cta_btn{float:right;margin-left:2em}.vc_call_to_action.vc_cta_btn_pos_left .vc_cta_btn{float:left;margin-right:2em}.wpb_call_to_action{position:relative;background-color:#f7f7f7;padding:35px;border:1px solid #F0F0F0;box-sizing:border-box}.wpb_call_to_action .wpb_button{margin:0;box-sizing:border-box}.cta_align_left .wpb_button{float:left}.cta_align_right .wpb_button{float:right}.cta_align_left .wpb_button,.cta_align_right .wpb_button{max-width:27.5%}.cta_align_left .wpb_call_text,.cta_align_right .wpb_call_text{width:70%;float:left;clear:none}.cta_align_left .wpb_call_text{float:right}#content .wpb_call_to_action .wpb_call_text,.wpb_call_to_action .wpb_call_text{margin:0;padding-top:0}.cta_align_bottom{text-align:center}.cta_align_bottom .wpb_button{position:static;margin-top:21.74px;display:inline-block}.cta_no_button .wpb_call_text{width:auto;float:none}@media (max-width:600px){.vc_responsive .cta_align_left .wpb_button,.vc_responsive .cta_align_right .wpb_button{max-width:70%;width:70%;float:none;display:block;margin:3% auto}.vc_responsive .cta_align_left .wpb_call_text,.vc_responsive .cta_align_right .wpb_call_text{width:auto;max-width:none;text-align:center}}.vc_cta3-container{margin-bottom:35px;margin-left:auto;margin-right:auto}.vc_cta3-container::after,.vc_cta3-container::before{display:table;content:' '}.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3-icons .vc_icon_element,.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3-icons .vc_icon_element{display:inline-block}.vc_cta3-container.vc_cta3-size-xs{width:50%}.vc_cta3-container.vc_cta3-size-sm{width:60%}.vc_cta3-container.vc_cta3-size-md{width:70%}.vc_cta3-container.vc_cta3-size-lg{width:80%}.vc_cta3-container.vc_cta3-size-xl{width:90%}.vc_general.vc_cta3{border:1px solid transparent;font-size:1em;padding:28px;word-wrap:break-word}.vc_general.vc_cta3.vc_cta3-style-classic,.vc_general.vc_cta3.vc_cta3-style-custom{border-color:#F0F0F0;background-color:#f7f7f7}.vc_general.vc_cta3 .vc_cta3-content{vertical-align:top}.vc_general.vc_cta3 .vc_cta3-content>:last-child,.vc_general.vc_cta3 .vc_cta3-icons>:last-child{margin-bottom:0}.vc_general.vc_cta3 .vc_cta3-actions{vertical-align:middle;white-space:nowrap}@media (min-width:768px){.vc_general.vc_cta3 .vc_cta3-actions .vc_btn3-container{margin:0}}.vc_general.vc_cta3 .vc_cta3-icons{vertical-align:middle}.vc_general.vc_cta3 h2,.vc_general.vc_cta3 h4{margin-top:0;margin-left:0;margin-right:0}.vc_general.vc_cta3.vc_cta3-align-left .vc_cta3-content{text-align:left}.vc_general.vc_cta3.vc_cta3-align-right .vc_cta3-content{text-align:right}.vc_general.vc_cta3.vc_cta3-align-center .vc_cta3-content{text-align:center}.vc_general.vc_cta3.vc_cta3-align-justify .vc_cta3-content{text-align:justify}.separator_align_center,.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3-icons,.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3-icons,.vc_pie_chart{text-align:center}.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3_content-container{padding-top:1em}.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3_content-container{padding-bottom:1em}.vc_general.vc_cta3.vc_cta3-icons-left .vc_cta3-icons{display:table-cell}.vc_general.vc_cta3.vc_cta3-icons-left .vc_cta3_content-container{display:table-cell;padding-left:1em}.vc_general.vc_cta3.vc_cta3-icons-right .vc_cta3-icons{display:table-cell}.vc_general.vc_cta3.vc_cta3-icons-right .vc_cta3_content-container{display:table-cell;padding-right:1em}.vc_general.vc_cta3.vc_cta3-icons-on-border{position:relative}.vc_general.vc_cta3.vc_cta3-icons-on-border .vc_cta3-icons{position:absolute}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right .vc_cta3-icons{right:0;top:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs{margin-right:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-right:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm{margin-right:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md{margin-right:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg{margin-right:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-right:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl{margin-right:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-right:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left .vc_cta3-icons{left:0;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs{margin-left:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-left:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm{margin-left:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md{margin-left:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg{margin-left:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-left:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl{margin-left:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-left:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top .vc_cta3-icons{left:50%;top:0;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs{margin-top:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-top:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm{margin-top:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md{margin-top:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg{margin-top:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-top:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl{margin-top:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-top:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom .vc_cta3-icons{left:50%;bottom:0;-webkit-transform:translate(-50%,50%);-ms-transform:translate(-50%,50%);transform:translate(-50%,50%)}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs{margin-bottom:17px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs .vc_cta3_content-container{padding-bottom:0}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:7px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm{margin-bottom:22px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:14px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md{margin-bottom:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:21px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg{margin-bottom:35px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container,.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl .vc_cta3_content-container{padding-bottom:28px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl{margin-bottom:50px}.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container{padding-bottom:35px}.vc_general.vc_cta3.vc_cta3-actions-top .vc_cta3-content{margin-top:1em}.vc_general.vc_cta3.vc_cta3-actions-bottom .vc_cta3-content{margin-bottom:1em}@media (min-width:768px){.vc_general.vc_cta3.vc_cta3-actions-left .vc_cta3-actions,.vc_general.vc_cta3.vc_cta3-actions-right .vc_cta3-actions{max-width:30%;display:table-cell}.vc_general.vc_cta3.vc_cta3-actions-left .vc_cta3-content{padding-left:28px;display:table-cell}.vc_general.vc_cta3.vc_cta3-actions-right .vc_cta3-content{padding-right:28px;display:table-cell}}.vc_general.vc_cta3.vc_cta3-style-outline{border-width:3px}.vc_general.vc_cta3.vc_cta3-shape-square{border-radius:0}.vc_general.vc_cta3.vc_cta3-shape-rounded{border-radius:5px}.vc_general.vc_cta3.vc_cta3-shape-round{border-radius:4em}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-classic .vc_cta3-content-header{color:#5472D2}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-flat{color:#c9d2f0;border-color:transparent;background-color:#5472D2}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-3d{box-shadow:0 5px 0 #3253bc;color:#c9d2f0;border-color:transparent;background-color:#5472D2}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-outline{border-color:#5472D2;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-outline .vc_cta3-content-header{color:#5472D2}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-classic .vc_cta3-content-header{color:#00C1CF}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-flat{color:#d3f5f1;border-color:transparent;background-color:#00C1CF}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-3d{box-shadow:0 5px 0 #008d97;color:#d3f5f1;border-color:transparent;background-color:#00C1CF}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-outline{border-color:#00C1CF;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-outline .vc_cta3-content-header{color:#00C1CF}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-classic .vc_cta3-content-header{color:#FE6C61}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-flat{color:#fcdbd7;border-color:transparent;background-color:#FE6C61}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-3d{box-shadow:0 5px 0 #fe3829;color:#fcdbd7;border-color:transparent;background-color:#FE6C61}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-outline{border-color:#FE6C61;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-outline .vc_cta3-content-header{color:#FE6C61}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-classic .vc_cta3-content-header{color:#8D6DC4}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-flat{color:#e1d5f5;border-color:transparent;background-color:#8D6DC4}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-3d{box-shadow:0 5px 0 #6e48b1;color:#e1d5f5;border-color:transparent;background-color:#8D6DC4}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-outline{border-color:#8D6DC4;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-outline .vc_cta3-content-header{color:#8D6DC4}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-classic .vc_cta3-content-header{color:#4CADC9}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-flat{color:#d0edf5;border-color:transparent;background-color:#4CADC9}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-3d{box-shadow:0 5px 0 #338faa;color:#d0edf5;border-color:transparent;background-color:#4CADC9}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-outline{border-color:#4CADC9;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-outline .vc_cta3-content-header{color:#4CADC9}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-classic .vc_cta3-content-header{color:#CEC2AB}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-flat{color:#f7f3eb;border-color:transparent;background-color:#CEC2AB}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-3d{box-shadow:0 5px 0 #b9a888;color:#f7f3eb;border-color:transparent;background-color:#CEC2AB}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-outline{border-color:#CEC2AB;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-outline .vc_cta3-content-header{color:#CEC2AB}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-classic .vc_cta3-content-header{color:#50485B}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-flat{color:#e2ddeb;border-color:transparent;background-color:#50485B}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-3d{box-shadow:0 5px 0 #342f3c;color:#e2ddeb;border-color:transparent;background-color:#50485B}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-outline{border-color:#50485B;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-outline .vc_cta3-content-header{color:#50485B}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-classic .vc_cta3-content-header{color:#75D69C}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-flat{color:#e1f5e9;border-color:transparent;background-color:#75D69C}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-3d{box-shadow:0 5px 0 #4ac97d;color:#e1f5e9;border-color:transparent;background-color:#75D69C}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-outline{border-color:#75D69C;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-outline .vc_cta3-content-header{color:#75D69C}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-classic .vc_cta3-content-header{color:#F7BE68}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-flat{color:#faf0e1;border-color:transparent;background-color:#F7BE68}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-3d{box-shadow:0 5px 0 #f4a733;color:#faf0e1;border-color:transparent;background-color:#F7BE68}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-outline{border-color:#F7BE68;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-outline .vc_cta3-content-header{color:#F7BE68}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-classic .vc_cta3-content-header{color:#5AA1E3}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-flat{color:#dce9f5;border-color:transparent;background-color:#5AA1E3}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-3d{box-shadow:0 5px 0 #2a86db;color:#dce9f5;border-color:transparent;background-color:#5AA1E3}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-outline{border-color:#5AA1E3;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-outline .vc_cta3-content-header{color:#5AA1E3}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-classic .vc_cta3-content-header{color:#6DAB3C}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-flat{color:#e5f2da;border-color:transparent;background-color:#6DAB3C}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-3d{box-shadow:0 5px 0 #53812d;color:#e5f2da;border-color:transparent;background-color:#6DAB3C}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-outline{border-color:#6DAB3C;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-outline .vc_cta3-content-header{color:#6DAB3C}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-classic .vc_cta3-content-header{color:#F4524D}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-flat{color:#fce2e1;border-color:transparent;background-color:#F4524D}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-3d{box-shadow:0 5px 0 #f11f18;color:#fce2e1;border-color:transparent;background-color:#F4524D}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-outline{border-color:#F4524D;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-outline .vc_cta3-content-header{color:#F4524D}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-classic .vc_cta3-content-header{color:#F79468}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-flat{color:#f7e1d7;border-color:transparent;background-color:#F79468}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-3d{box-shadow:0 5px 0 #f46e33;color:#f7e1d7;border-color:transparent;background-color:#F79468}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-outline{border-color:#F79468;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-outline .vc_cta3-content-header{color:#F79468}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-classic .vc_cta3-content-header{color:#B97EBB}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-flat{color:#f4dff5;border-color:transparent;background-color:#B97EBB}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-3d{box-shadow:0 5px 0 #a559a8;color:#f4dff5;border-color:transparent;background-color:#B97EBB}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-outline{border-color:#B97EBB;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-outline .vc_cta3-content-header{color:#B97EBB}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-classic .vc_cta3-content-header{color:#2A2A2A}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-flat{color:#d9d9d9;border-color:transparent;background-color:#2A2A2A}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-flat .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-3d{box-shadow:0 5px 0 #0e0e0e;color:#d9d9d9;border-color:transparent;background-color:#2A2A2A}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-3d .vc_cta3-content-header{color:#fff}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-outline{border-color:#2A2A2A;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-outline .vc_cta3-content-header{color:#2A2A2A}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-classic .vc_cta3-content-header{color:#EBEBEB}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-flat{color:#9d9d9e;border-color:transparent;background-color:#EBEBEB}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-flat .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-3d{box-shadow:0 5px 0 #cfcfcf;color:#9d9d9e;border-color:transparent;background-color:#EBEBEB}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-3d .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-outline{border-color:#EBEBEB;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-outline .vc_cta3-content-header{color:#EBEBEB}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-classic .vc_cta3-content-header{color:#FFF}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-flat{color:#9d9d9e;border-color:transparent;background-color:#FFF}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-flat .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-3d{box-shadow:0 5px 0 #e3e3e3;color:#9d9d9e;border-color:transparent;background-color:#FFF}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-3d .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-outline{border-color:#FFF;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-outline .vc_cta3-content-header{color:#FFF}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-flat{color:#9d9d9e;border-color:transparent;background-color:#F0F0F0}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-flat .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-3d{box-shadow:0 5px 0 #d4d4d4;color:#9d9d9e;border-color:transparent;background-color:#F0F0F0}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-3d .vc_cta3-content-header{color:#666}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-outline{border-color:#F0F0F0;background-color:transparent}.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-outline .vc_cta3-content-header{color:#F0F0F0}.vc_cta3.vc_cta3-icon-size-xs .vc_icon_element .vc_icon_element-inner{height:1em;width:1em}.vc_cta3.vc_cta3-icon-size-sm .vc_icon_element .vc_icon_element-inner{height:2em;width:2em}.vc_cta3.vc_cta3-icon-size-md .vc_icon_element .vc_icon_element-inner{height:3em;width:3em}.vc_cta3.vc_cta3-icon-size-lg .vc_icon_element .vc_icon_element-inner{height:4em;width:4em}.vc_cta3.vc_cta3-icon-size-xl .vc_icon_element .vc_icon_element-inner{height:5em;width:5em}.wpb_gmaps_widget .wpb_wrapper{background-color:#f7f7f7;padding:5px}.wpb_gmaps_widget .wpb_map_wraper iframe{margin-bottom:0;padding:0;display:block;width:100%;border:none}.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper{position:relative;padding-bottom:56.25%;height:0}.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper iframe{position:absolute;top:0;left:0;height:100%}.wpb_accordion_section .wpb_accordion_header a:focus,.wpb_content_element .wpb_tabs_nav li a:focus,.wpb_tour_next_prev_nav a:focus{outline:0}.wpb_content_element .wpb_tabs_nav,.wpb_content_element .wpb_tour_tabs_wrapper{padding:0}.wpb_content_element .wpb_tabs_nav{margin:0;padding-left:0!important;text-indent:inherit!important}#content .wpb_content_element .wpb_tabs_nav{margin:0}.wpb_content_element .wpb_tabs_nav li{background-color:#FFF;white-space:nowrap;padding:0;background-image:none;list-style:none!important}.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header,.wpb_content_element .wpb_tabs_nav li.ui-tabs-active,.wpb_content_element .wpb_tabs_nav li:hover,.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab{background-color:#f7f7f7}.wpb_content_element .wpb_tabs_nav li:after,.wpb_content_element .wpb_tabs_nav li:before{display:none!important}.wpb_content_element .wpb_tour_tabs_wrapper .wpb_ui-tabs-hide{display:none}.wpb_content_element .wpb_accordion_header a,.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a{border-bottom:none;text-decoration:none;display:block;padding:.5em 1em}.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content,.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab{padding:1em}.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content .wpb_row:last-child>div>div.wpb_wrapper .wpb_content_element:last-child,.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content>.wpb_content_element:last-child,.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab .wpb_row:last-child>div>div.wpb_wrapper .wpb_content_element:last-child,.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab>.wpb_content_element:last-child{margin-bottom:0}.wpb_tabs .wpb_tabs_nav li{float:left;margin:0 1px 0 0}.wpb_tour .wpb_tabs_nav{float:left;width:31.66666667%}.wpb_tour .wpb_tabs_nav li{margin:0 0 1px;clear:left;width:100%}.wpb_tour .wpb_tabs_nav a{width:100%}.wpb_tour .wpb_tour_tabs_wrapper .wpb_tab{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:none;float:left;width:68.33333333%;padding:0 0 0 21.74px}.wpb_tour_next_prev_nav{margin-left:31.66666667%;padding-left:21.74px;font-size:80%}.wpb_tour_next_prev_nav a{border-bottom:1px dotted;text-decoration:none}.wpb_tour_next_prev_nav a:hover{text-decoration:none;border-bottom:none}.wpb_tour_next_prev_nav span{width:48%;display:inline-block;padding-top:1em;float:left}.wpb_tour_next_prev_nav span.wpb_next_slide{text-align:right;float:right}.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header{margin:0 0 1px;padding-top:0;position:relative;text-transform:none;font-weight:inherit;font-size:inherit;font-family:inherit;line-height:inherit;letter-spacing:inherit}.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a{padding-left:1em}.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon,.wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon{display:block;width:16px;height:16px;background-image:url(/wp-content/plugins/js_composer/assets/images/toggle_open.png);background-repeat:no-repeat;position:absolute;right:.7em;top:.7em}.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon{background-image:url(/wp-content/plugins/js_composer/assets/images/toggle_close.png)}@media (max-width:480px){.vc_responsive .wpb_tour .wpb_tab,.vc_responsive .wpb_tour .wpb_tour_tabs_wrapper .wpb_tabs_nav,.vc_responsive .wpb_tour_next_prev_nav{width:100%;float:none;margin-left:0}.vc_responsive .wpb_tour_next_prev_nav{width:auto;padding:0 1em}.vc_responsive #content .wpb_tour .wpb_tour_tabs_wrapper .wpb_tabs_nav{margin-bottom:1em}.vc_responsive .wpb_tour .wpb_tab{padding-left:1em;padding-right:1em}}.grid_layout-thumbnail .post-thumb,body ul.wpb_thumbnails-fluid li .entry-content :last-child{margin-bottom:0}.wpb_column .wpb_wrapper .wpb_teaser_grid{float:none}body ul.wpb_thumbnails-fluid li{padding:0;margin-left:0;background-image:none;list-style:none!important}body ul.wpb_thumbnails-fluid li:after,body ul.wpb_thumbnails-fluid li:before{display:none!important}.wpb_row .wpb_filtered_grid ul.wpb_thumbnails-fluid,.wpb_row .wpb_grid ul.wpb_thumbnails-fluid{padding:0;overflow:visible!important}.wpb_teaser_grid .entry-content{margin:0;padding:0;width:100%}.grid_layout-thumbnail .post-thumb img{max-width:100%}.wpb_carousel .wpb_wrapper{position:relative}.wpb_carousel .next,.wpb_carousel .prev{position:absolute;top:3px;background-color:#f7f7f7;padding:0 6px;font-size:12px;z-index:10;text-decoration:none;transition:all .2s linear;-moz-transition:all .2s linear;-webkit-transition:all .2s linear;-o-transition:all .2s linear}.wpb_carousel .next:hover,.wpb_carousel .prev:hover{background-color:#F0F0F0}.wpb_carousel .next:focus,.wpb_carousel .prev:focus{outline:0;text-decoration:none}.wpb_carousel .prev{right:30px}.wpb_carousel .next{right:0}.wpb_carousel .wpb_thumbnails-fluid{width:100%}.wpb_carousel .wpb_thumbnails-fluid>[class*=vc_span]{height:auto!important}.wpb_categories_filter,.wpb_teaser_grid .categories_filter{list-style:none;padding:0;margin:0 0 10px}.wpb_categories_filter li,.wpb_teaser_grid .categories_filter li{display:block;float:left;margin:0 10px 10px 0;background-image:none;list-style:none!important}.wpb_categories_filter li:after,.wpb_categories_filter li:before,.wpb_teaser_grid .categories_filter li:after,.wpb_teaser_grid .categories_filter li:before{display:none!important}.wpb_categories_filter li a,.wpb_teaser_grid .categories_filter li a{border:none;text-decoration:none}.wpb_categories_filter li a:hover,.wpb_categories_filter li.active a,.wpb_teaser_grid .categories_filter li a:hover,.wpb_teaser_grid .categories_filter li.active a{border-bottom:1px dotted}@media (max-width:480px){.vc_responsive .wpb_row ul.wpb_thumbnails-fluid{margin-left:0;width:auto}.vc_responsive .wpb_row .wpb_teaser_grid ul.wpb_thumbnails-fluid [class*=vc_col-]{width:100%;float:none;display:block;margin-left:0;margin-right:0}}.wpb_image_grid .wpb_image_grid_ul{margin:0;padding:0}.wpb_image_grid .wpb_image_grid_ul>li{background-image:none;list-style:none!important}.wpb_image_grid .wpb_image_grid_ul>li:after,.wpb_image_grid .wpb_image_grid_ul>li:before{display:none!important}.wpb_image_grid .wpb_image_grid_ul .isotope-item{list-style:none;margin:0 1px 1px 0;max-width:100%;float:left}.wpb_image_grid .wpb_image_grid_ul a{display:block}.wpb_image_grid .wpb_image_grid_ul img{display:block;max-width:100%;height:auto}.wpb_gallery .theme-default .nivoSlider{margin-bottom:0}.wpb_gallery .theme-default .nivo-controlNav{padding:10px 0 3px}.wpb_gallery .wpb_flexslider .flex-control-nav{bottom:auto;top:100%;margin-top:15px}.wpb_gallery .wpb_flexslider .flex-direction-nav a{border:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wpb_gallery .wpb_flexslider .flex-direction-nav a:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.wpb_gallery .wpb_flexslider .flex-direction-nav a:before{line-height:1}.wpb_gallery .wpb_flexslider .flex-control-paging{z-index:10}#content .wpb_gallery_slides ul.flex-direction-nav,#content .wpb_gallery_slides ul.slides,.content .wpb_gallery_slides ul.flex-direction-nav,.content .wpb_gallery_slides ul.slides,.wpb_content_element .wpb_gallery_slides ul li,.wpb_gallery_slides ul.flex-direction-nav,.wpb_gallery_slides ul.slides,body .wpb_gallery_slides ul li{list-style:none;padding:0;background-image:none;margin:0}.flickr_badge_image{margin:0 10px 10px 0;width:72px;height:72px;float:left;background:0 0;padding:0}.flickr_badge_image a{border:none}.flickr_badge_image img{margin:0;overflow:hidden;position:relative;width:100%;height:100%;max-width:100%;max-height:100%}.wpb_flickr_widget p.flickr_stream_wrap{clear:both;margin-bottom:0;font-size:80%}.wpb_flickr_widget p.flickr_stream_wrap a{background-image:url(/wp-content/plugins/js_composer/assets/images/flickr.png);background-repeat:no-repeat;background-position:left center;padding-left:25px;display:inline-block}.wpb_video_widget.vc_video-el-width-10 .wpb_wrapper{width:10%}.wpb_video_widget.vc_video-el-width-20 .wpb_wrapper{width:20%}.wpb_video_widget.vc_video-el-width-30 .wpb_wrapper{width:30%}.wpb_video_widget.vc_video-el-width-40 .wpb_wrapper{width:40%}.wpb_video_widget.vc_video-el-width-50 .wpb_wrapper{width:50%}.wpb_video_widget.vc_video-el-width-60 .wpb_wrapper{width:60%}.wpb_video_widget.vc_video-el-width-70 .wpb_wrapper{width:70%}.wpb_video_widget.vc_video-el-width-80 .wpb_wrapper{width:80%}.wpb_video_widget.vc_video-el-width-90 .wpb_wrapper{width:90%}.wpb_video_widget.vc_video-el-width-100 .wpb_wrapper{width:100%}.wpb_video_widget .wpb_video_wrapper{padding-top:56.25%;position:relative;width:100%}.wpb_video_widget .wpb_video_wrapper>div{padding-top:0!important;position:static}.wpb_video_widget.vc_video-aspect-ratio-169 .wpb_video_wrapper{padding-top:56.25%}.wpb_video_widget.vc_video-aspect-ratio-43 .wpb_video_wrapper{padding-top:75%}.wpb_video_widget.vc_video-aspect-ratio-235 .wpb_video_wrapper{padding-top:42.55319149%}.wpb_video_widget.vc_video-align-left .wpb_wrapper{float:left}.wpb_video_widget.vc_video-align-center .wpb_wrapper{margin:0 auto}.wpb_video_widget.vc_video-align-right .wpb_wrapper{float:right}.wpb_video_widget .wpb_wrapper{position:relative}.wpb_video_widget .wpb_wrapper iframe{width:100%;height:100%;display:block;position:absolute;margin:0;top:0;left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.wpb_video_wrapper .fluid-width-video-wrapper{padding-top:0!important;position:static}.wpb_posts_slider .flex-caption,.wpb_posts_slider .nivo-caption{background-color:#f7f7f7;opacity:1;filter:alpha(opacity=100);color:inherit;padding:10px 15px;position:static}.wpb_posts_slider .wpb_gallery_slides>ul>li{background-image:none;list-style:none!important}.wpb_posts_slider .wpb_gallery_slides>ul>li:after,.wpb_posts_slider .wpb_gallery_slides>ul>li:before{display:none!important}.vc_progress_bar .vc_single_bar{background:#f7f7f7;position:relative;margin-bottom:11.67px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.1) inset;box-shadow:0 1px 2px rgba(0,0,0,.1) inset;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.vc_progress_bar .vc_single_bar:last-child{margin-bottom:0}.vc_progress_bar .vc_single_bar .vc_label{display:block;padding:.5em 1em;position:relative;z-index:1}.vc_progress_bar .vc_single_bar .vc_bar{display:block;position:absolute;height:100%;background-color:#e0e0e0;width:0%;top:0;left:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;transition:width 1s linear;-moz-transition:width 1s linear;-webkit-transition:width 1s linear;-o-transition:width 1s linear}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_blue .vc_bar,.vc_progress_bar.vc_progress-bar-color-bar_blue .vc_single_bar .vc_bar{background-color:#0074CC}.vc_progress_bar .vc_single_bar .vc_bar.striped{background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(.25,rgba(255,255,255,.15)),color-stop(.25,transparent),color-stop(.5,transparent),color-stop(.5,rgba(255,255,255,.15)),color-stop(.75,rgba(255,255,255,.15)),color-stop(.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px}.vc_progress_bar .vc_single_bar .vc_bar.animated{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_turquoise .vc_bar,.vc_progress_bar.vc_progress-bar-color-bar_turquoise .vc_single_bar .vc_bar{background-color:#49afcd}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_bar,.vc_progress_bar.vc_progress-bar-color-bar_green .vc_single_bar .vc_bar{background-color:#5bb75b}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_orange .vc_bar,.vc_progress_bar.vc_progress-bar-color-bar_orange .vc_single_bar .vc_bar{background-color:#faa732}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_red .vc_bar,.vc_progress_bar.vc_progress-bar-color-bar_red .vc_single_bar .vc_bar{background-color:#da4f49}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_black .vc_bar,.vc_progress_bar.vc_progress-bar-color-bar_black .vc_single_bar .vc_bar{background-color:#414141}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-blue .vc_bar,.vc_progress_bar.vc_progress-bar-color-blue .vc_single_bar .vc_bar{background-color:#5472D2}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-turquoise .vc_bar,.vc_progress_bar.vc_progress-bar-color-turquoise .vc_single_bar .vc_bar{background-color:#00C1CF}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-pink .vc_bar,.vc_progress_bar.vc_progress-bar-color-pink .vc_single_bar .vc_bar{background-color:#FE6C61}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-turquoise .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-violet .vc_bar,.vc_progress_bar.vc_progress-bar-color-violet .vc_single_bar .vc_bar{background-color:#8D6DC4}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-peacoc .vc_bar,.vc_progress_bar.vc_progress-bar-color-peacoc .vc_single_bar .vc_bar{background-color:#4CADC9}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-chino .vc_bar,.vc_progress_bar.vc_progress-bar-color-chino .vc_single_bar .vc_bar{background-color:#CEC2AB}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-mulled-wine .vc_bar,.vc_progress_bar.vc_progress-bar-color-mulled-wine .vc_single_bar .vc_bar{background-color:#50485B}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista-blue .vc_bar,.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista_blue .vc_bar,.vc_progress_bar.vc_progress-bar-color-vista-blue .vc_single_bar .vc_bar,.vc_progress_bar.vc_progress-bar-color-vista_blue .vc_single_bar .vc_bar{background-color:#75D69C}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-black .vc_bar,.vc_progress_bar.vc_progress-bar-color-black .vc_single_bar .vc_bar{background-color:#2A2A2A}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-grey .vc_bar,.vc_progress_bar.vc_progress-bar-color-grey .vc_single_bar .vc_bar{background-color:#EBEBEB}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-black .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-grey .vc_label,.vc_progress_bar.vc_progress-bar-color-grey .vc_single_bar .vc_label{color:#666;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-orange .vc_bar,.vc_progress_bar.vc_progress-bar-color-orange .vc_single_bar .vc_bar{background-color:#F7BE68}.vc_progress_bar.vc_progress-bar-color-orange .vc_single_bar .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sky .vc_bar,.vc_progress_bar.vc_progress-bar-color-sky .vc_single_bar .vc_bar{background-color:#5AA1E3}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-orange .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar.vc_progress-bar-color-sky .vc_single_bar .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-green .vc_bar,.vc_progress_bar.vc_progress-bar-color-green .vc_single_bar .vc_bar{background-color:#6DAB3C}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sky .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar.vc_progress-bar-color-green .vc_single_bar .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-juicy-pink .vc_bar,.vc_progress_bar.vc_progress-bar-color-juicy-pink .vc_single_bar .vc_bar{background-color:#F4524D}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-green .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar.vc_progress-bar-color-juicy-pink .vc_single_bar .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sandy-brown .vc_bar,.vc_progress_bar.vc_progress-bar-color-sandy-brown .vc_single_bar .vc_bar{background-color:#F79468}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-juicy-pink .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar.vc_progress-bar-color-sandy-brown .vc_single_bar .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-purple .vc_bar,.vc_progress_bar.vc_progress-bar-color-purple .vc_single_bar .vc_bar{background-color:#B97EBB}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sandy-brown .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar.vc_progress-bar-color-purple .vc_single_bar .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-white .vc_bar,.vc_progress_bar.vc_progress-bar-color-white .vc_single_bar .vc_bar{background-color:#FFF}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-purple .vc_label{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-white .vc_label,.vc_progress_bar.vc_progress-bar-color-white .vc_single_bar .vc_label{color:#666;text-shadow:0 -1px 0 rgba(0,0,0,.25)}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.vc_pie_chart{z-index:0;opacity:0;filter:alpha(opacity=0)}.vc_pie_chart.vc_ready{opacity:1;filter:alpha(opacity=100)}.vc_pie_chart .vc_pie_wrapper{position:relative;margin:0 auto}.vc_pie_chart canvas{position:relative;z-index:1}.vc_pie_chart .vc_pie_chart_value,.vc_pie_chart_back{display:block;position:absolute;width:100%;height:100%;top:0;left:0}.vc_pie_chart .vc_pie_chart_value{font-size:200%;text-align:center}.vc_pie_chart_back{border:6px solid #f7f7f7;border-radius:50%;opacity:.3;filter:alpha(opacity=30);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.vc_images_carousel .vc_carousel-control{border:none}.vc_carousel .vc_carousel-control{text-shadow:none;border:none;transition:all .2s linear;-moz-transition:all .2s linear;-webkit-transition:all .2s linear;-o-transition:all .2s linear}.vc_carousel .vc_carousel-control:active,.vc_carousel .vc_carousel-control:focus{outline:0}.vc_carousel .vc_carousel-indicators li{width:5px;height:5px;margin:0;border-color:#f7f7f7;transition:all .2s linear;-moz-transition:all .2s linear;-webkit-transition:all .2s linear;-o-transition:all .2s linear}.vc_separator{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.vc_separator h4{line-height:1em;font-size:100%;margin:0;word-wrap:break-word;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.vc_separator h4 .normal{font-size:12px;font-weight:400}.vc_separator .vc_sep_holder{height:1px;position:relative;-webkit-box-flex:1;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;min-width:10%}.vc_separator .vc_sep_holder .vc_sep_line{height:1px;border-top:1px solid #EBEBEB;display:block;position:relative;top:1px;width:100%}.vc_separator.vc_separator_align_left .vc_sep_holder.vc_sep_holder_l,.vc_separator.vc_separator_align_right .vc_sep_holder.vc_sep_holder_r{display:none}.vc_separator.vc_separator_align_center h4{padding:0 .8em}.vc_separator.vc_separator_align_left h4{padding:0 .8em 0 0}.vc_separator.vc_separator_align_right h4{padding:0 0 0 .8em;margin:0!important}.vc_separator.vc_sep_double{height:3px}.vc_separator.vc_sep_double .vc_sep_line{border-bottom:1px solid #EBEBEB;border-top:1px solid #EBEBEB;height:3px}.vc_separator.vc_sep_dashed .vc_sep_line{border-top-style:dashed}.vc_separator.vc_sep_dotted .vc_sep_line{border-top-style:dotted}.vc_separator.vc_sep_shadow .vc_sep_line{border:none;position:relative;height:20px;top:0;overflow:hidden}.vc_separator.vc_sep_shadow .vc_sep_line::after{content:'';display:block;position:absolute;left:0;top:-20px;right:0;height:10px;border-radius:100%}.vc_separator.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{right:-100%;box-shadow:10px 10px 10px 1px}.vc_separator.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{left:-100%;box-shadow:-10px 10px 10px 1px}.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_l{width:100%}.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_r{display:none}.vc_separator .vc_icon_element{margin-bottom:0}.vc_separator .vc_icon_element:not(.vc_icon_element-have-style)+h4{padding-left:0}.vc_separator .vc_icon_element:not(.vc_icon_element-have-style) .vc_icon_element-size-xl{margin-left:.8em;margin-right:.8em}.vc_separator.vc_separator-has-text.vc_separator_align_center .vc_icon_element.vc_icon_element-have-style,.vc_separator.vc_separator-has-text.vc_separator_align_right .vc_icon_element.vc_icon_element-have-style{margin-left:.8em}.vc_separator.vc_separator_align_left .vc_icon_element.vc_icon_element-have-style+h4{padding-left:.8em}.vc_separator.vc_sep_border_width_1 .vc_sep_holder .vc_sep_line{border-top-width:1px}.vc_separator.vc_sep_border_width_1.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:1px;top:0}.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_line{top:0}.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 1px}.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 1px}.vc_separator.vc_sep_border_width_2 .vc_sep_holder .vc_sep_line{border-top-width:2px}.vc_separator.vc_sep_border_width_2.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:2px;top:-1px}.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_line{top:-1px}.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 2px}.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 2px}.vc_separator.vc_sep_border_width_3 .vc_sep_holder .vc_sep_line{border-top-width:3px}.vc_separator.vc_sep_border_width_3.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:3px;top:-1px}.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_line{top:-1px}.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 3px}.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 3px}.vc_separator.vc_sep_border_width_4 .vc_sep_holder .vc_sep_line{border-top-width:4px}.vc_separator.vc_sep_border_width_4.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:4px;top:-2px}.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_line{top:-2px}.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 4px}.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 4px}.vc_separator.vc_sep_border_width_5 .vc_sep_holder .vc_sep_line{border-top-width:5px}.vc_separator.vc_sep_border_width_5.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:5px;top:-2px}.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_line{top:-2px}.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 5px}.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 5px}.vc_separator.vc_sep_border_width_6 .vc_sep_holder .vc_sep_line{border-top-width:6px}.vc_separator.vc_sep_border_width_6.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:6px;top:-3px}.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_line{top:-3px}.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 6px}.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 6px}.vc_separator.vc_sep_border_width_7 .vc_sep_holder .vc_sep_line{border-top-width:7px}.vc_separator.vc_sep_border_width_7.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:7px;top:-3px}.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_line{top:-3px}.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 7px}.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 7px}.vc_separator.vc_sep_border_width_8 .vc_sep_holder .vc_sep_line{border-top-width:8px}.vc_separator.vc_sep_border_width_8.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:8px;top:-4px}.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_line{top:-4px}.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 8px}.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 8px}.vc_separator.vc_sep_border_width_9 .vc_sep_holder .vc_sep_line{border-top-width:9px}.vc_separator.vc_sep_border_width_9.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:9px;top:-4px}.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_line{top:-4px}.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 9px}.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 9px}.vc_separator.vc_sep_border_width_10 .vc_sep_holder .vc_sep_line{border-top-width:10px}.vc_separator.vc_sep_border_width_10.vc_sep_double .vc_sep_holder .vc_sep_line{border-bottom-width:10px;top:-5px}.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_line{top:-5px}.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after{box-shadow:10px 10px 10px 10px}.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after{box-shadow:-10px 10px 10px 10px}.vc_separator.vc_sep_color_blue .vc_sep_line{border-color:#5472D2}.vc_separator.vc_sep_color_blue.vc_sep_shadow .vc_sep_holder{color:#5472D2}.vc_separator.vc_sep_color_turquoise .vc_sep_line{border-color:#00C1CF}.vc_separator.vc_sep_color_turquoise.vc_sep_shadow .vc_sep_holder{color:#00C1CF}.vc_separator.vc_sep_color_pink .vc_sep_line{border-color:#FE6C61}.vc_separator.vc_sep_color_pink.vc_sep_shadow .vc_sep_holder{color:#FE6C61}.vc_separator.vc_sep_color_violet .vc_sep_line{border-color:#8D6DC4}.vc_separator.vc_sep_color_violet.vc_sep_shadow .vc_sep_holder{color:#8D6DC4}.vc_separator.vc_sep_color_peacoc .vc_sep_line{border-color:#4CADC9}.vc_separator.vc_sep_color_peacoc.vc_sep_shadow .vc_sep_holder{color:#4CADC9}.vc_separator.vc_sep_color_chino .vc_sep_line{border-color:#CEC2AB}.vc_separator.vc_sep_color_chino.vc_sep_shadow .vc_sep_holder{color:#CEC2AB}.vc_separator.vc_sep_color_mulled_wine .vc_sep_line{border-color:#50485B}.vc_separator.vc_sep_color_mulled_wine.vc_sep_shadow .vc_sep_holder{color:#50485B}.vc_separator.vc_sep_color_vista_blue .vc_sep_line{border-color:#75D69C}.vc_separator.vc_sep_color_vista_blue.vc_sep_shadow .vc_sep_holder{color:#75D69C}.vc_separator.vc_sep_color_black .vc_sep_line{border-color:#2A2A2A}.vc_separator.vc_sep_color_black.vc_sep_shadow .vc_sep_holder{color:#2A2A2A}.vc_separator.vc_sep_color_grey .vc_sep_line{border-color:#EBEBEB}.vc_separator.vc_sep_color_grey.vc_sep_shadow .vc_sep_holder{color:#EBEBEB}.vc_separator.vc_sep_color_orange .vc_sep_line{border-color:#F7BE68}.vc_separator.vc_sep_color_orange.vc_sep_shadow .vc_sep_holder{color:#F7BE68}.vc_separator.vc_sep_color_sky .vc_sep_line{border-color:#5AA1E3}.vc_separator.vc_sep_color_sky.vc_sep_shadow .vc_sep_holder{color:#5AA1E3}.vc_separator.vc_sep_color_green .vc_sep_line{border-color:#6DAB3C}.vc_separator.vc_sep_color_green.vc_sep_shadow .vc_sep_holder{color:#6DAB3C}.vc_separator.vc_sep_color_juicy_pink .vc_sep_line{border-color:#F4524D}.vc_separator.vc_sep_color_juicy_pink.vc_sep_shadow .vc_sep_holder{color:#F4524D}.vc_separator.vc_sep_color_sandy_brown .vc_sep_line{border-color:#F79468}.vc_separator.vc_sep_color_sandy_brown.vc_sep_shadow .vc_sep_holder{color:#F79468}.vc_separator.vc_sep_color_purple .vc_sep_line{border-color:#B97EBB}.vc_separator.vc_sep_color_purple.vc_sep_shadow .vc_sep_holder{color:#B97EBB}.vc_separator.vc_sep_color_white .vc_sep_line{border-color:#FFF}.vc_separator.vc_sep_color_white.vc_sep_shadow .vc_sep_holder{color:#FFF}.vc_text_separator,.wpb_separator{border-bottom:1px solid #EBEBEB;clear:both;height:1px}.vc_sep_width_10{width:10%}.vc_sep_width_20{width:20%}.vc_sep_width_30{width:30%}.vc_sep_width_40{width:40%}.vc_sep_width_50{width:50%}.vc_sep_width_60{width:60%}.vc_sep_width_70{width:70%}.vc_sep_width_80{width:80%}.vc_sep_width_90{width:90%}.vc_sep_width_100,.wpb_single_image img.vc_img-placeholder{width:100%}.vc_sep_pos_align_center{margin-left:auto;margin-right:auto}.vc_sep_pos_align_left{margin-left:0;margin-right:auto}.vc_sep_pos_align_right{margin-left:auto;margin-right:0}.vc_text_separator div{display:inline-block;background-color:#FFF;padding:1px 1em;position:relative;top:-9px}.separator_align_left{text-align:left}.separator_align_right{text-align:right}.vc-zigzag-wrapper{text-align:center}.vc-zigzag-wrapper.vc-zigzag-align-left{text-align:left}.vc-zigzag-wrapper.vc-zigzag-align-right{text-align:right}.vc-zigzag-inner{display:inline-block}.wpb_single_image a{border:none;outline:0}.wpb_single_image img{height:auto;max-width:100%;vertical-align:top}.wpb_single_image .vc_single_image-wrapper{display:inline-block;vertical-align:top;max-width:100%}.wpb_single_image .vc_single_image-wrapper.vc_box_rounded,.wpb_single_image .vc_single_image-wrapper.vc_box_rounded img{border-radius:4px;-webkit-box-shadow:none;box-shadow:none}.wpb_single_image .vc_single_image-wrapper.vc_box_outline,.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle{border-radius:0;-webkit-box-shadow:none;box-shadow:none;padding:6px;border:1px solid #EBEBEB}.wpb_single_image .vc_single_image-wrapper.vc_box_outline img,.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle img{border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:1px solid #EBEBEB}.wpb_single_image .vc_single_image-wrapper.vc_box_border,.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle{border-radius:0;-webkit-box-shadow:none;box-shadow:none;padding:6px;border:none}.wpb_single_image .vc_single_image-wrapper.vc_box_border img,.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle img{border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:none}.wpb_single_image .vc_single_image-wrapper.vc_box_shadow,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow img,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border img,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img{border-radius:0;-webkit-box-shadow:0 0 5px rgba(0,0,0,.1);box-shadow:0 0 5px rgba(0,0,0,.1)}.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle{padding:6px}.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d{border-radius:0;-webkit-box-shadow:none;box-shadow:none;margin-bottom:15px}.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d img{border-radius:0;-webkit-box-shadow:none;box-shadow:none}.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle img,.wpb_single_image .vc_single_image-wrapper.vc_box_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_circle img,.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle img,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img{border-radius:50%;-webkit-box-shadow:none;box-shadow:none;overflow:hidden}.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle,.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img{-webkit-box-shadow:0 0 5px rgba(0,0,0,.1);box-shadow:0 0 5px rgba(0,0,0,.1)}.wpb_single_image.vc_align_center{text-align:center}.wpb_single_image.vc_align_right{text-align:right}.wpb_single_image.vc_align_left{text-align:left}.wpb_single_image .vc_box_shadow_3d{position:relative;z-index:0;display:inline-block;max-width:100%}.wpb_single_image .vc_box_shadow_3d:after,.wpb_single_image .vc_box_shadow_3d:before{content:"";position:absolute;-webkit-box-shadow:0 15px 10px rgba(0,0,0,.6);box-shadow:0 15px 10px rgba(0,0,0,.6);left:5px;right:50%;bottom:8px;height:30%;z-index:-1;border-radius:inherit;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transform:skewY(-6deg);-ms-transform:skewY(-6deg);transform:skewY(-6deg)}.wpb_single_image .vc_box_shadow_3d:after{left:50%;right:5px;-webkit-transform:skewY(6deg);-ms-transform:skewY(6deg);transform:skewY(6deg);-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.wpb_single_image .vc_figure{display:inline-block;vertical-align:top;margin:0;max-width:100%}.wpb_single_image .vc_figure-caption{margin-top:.2em;font-size:.8em}.wpb_single_image .vc_box_outline.vc_box_border_blue,.wpb_single_image .vc_box_outline_circle.vc_box_border_blue{border-color:#5472D2}.wpb_single_image .vc_box_border.vc_box_border_blue,.wpb_single_image .vc_box_border_circle.vc_box_border_blue{background-color:#5472D2}.wpb_single_image .vc_box_outline.vc_box_border_turquoise,.wpb_single_image .vc_box_outline_circle.vc_box_border_turquoise{border-color:#00C1CF}.wpb_single_image .vc_box_border.vc_box_border_turquoise,.wpb_single_image .vc_box_border_circle.vc_box_border_turquoise{background-color:#00C1CF}.wpb_single_image .vc_box_outline.vc_box_border_pink,.wpb_single_image .vc_box_outline_circle.vc_box_border_pink{border-color:#FE6C61}.wpb_single_image .vc_box_border.vc_box_border_pink,.wpb_single_image .vc_box_border_circle.vc_box_border_pink{background-color:#FE6C61}.wpb_single_image .vc_box_outline.vc_box_border_violet,.wpb_single_image .vc_box_outline_circle.vc_box_border_violet{border-color:#8D6DC4}.wpb_single_image .vc_box_border.vc_box_border_violet,.wpb_single_image .vc_box_border_circle.vc_box_border_violet{background-color:#8D6DC4}.wpb_single_image .vc_box_outline.vc_box_border_peacoc,.wpb_single_image .vc_box_outline_circle.vc_box_border_peacoc{border-color:#4CADC9}.wpb_single_image .vc_box_border.vc_box_border_peacoc,.wpb_single_image .vc_box_border_circle.vc_box_border_peacoc{background-color:#4CADC9}.wpb_single_image .vc_box_outline.vc_box_border_chino,.wpb_single_image .vc_box_outline_circle.vc_box_border_chino{border-color:#CEC2AB}.wpb_single_image .vc_box_border.vc_box_border_chino,.wpb_single_image .vc_box_border_circle.vc_box_border_chino{background-color:#CEC2AB}.wpb_single_image .vc_box_outline.vc_box_border_mulled_wine,.wpb_single_image .vc_box_outline_circle.vc_box_border_mulled_wine{border-color:#50485B}.wpb_single_image .vc_box_border.vc_box_border_mulled_wine,.wpb_single_image .vc_box_border_circle.vc_box_border_mulled_wine{background-color:#50485B}.wpb_single_image .vc_box_outline.vc_box_border_vista_blue,.wpb_single_image .vc_box_outline_circle.vc_box_border_vista_blue{border-color:#75D69C}.wpb_single_image .vc_box_border.vc_box_border_vista_blue,.wpb_single_image .vc_box_border_circle.vc_box_border_vista_blue{background-color:#75D69C}.wpb_single_image .vc_box_outline.vc_box_border_black,.wpb_single_image .vc_box_outline_circle.vc_box_border_black{border-color:#2A2A2A}.wpb_single_image .vc_box_border.vc_box_border_black,.wpb_single_image .vc_box_border_circle.vc_box_border_black{background-color:#2A2A2A}.wpb_single_image .vc_box_outline.vc_box_border_grey,.wpb_single_image .vc_box_outline_circle.vc_box_border_grey{border-color:#EBEBEB}.wpb_single_image .vc_box_border.vc_box_border_grey,.wpb_single_image .vc_box_border_circle.vc_box_border_grey{background-color:#EBEBEB}.wpb_single_image .vc_box_outline.vc_box_border_orange,.wpb_single_image .vc_box_outline_circle.vc_box_border_orange{border-color:#F7BE68}.wpb_single_image .vc_box_border.vc_box_border_orange,.wpb_single_image .vc_box_border_circle.vc_box_border_orange{background-color:#F7BE68}.wpb_single_image .vc_box_outline.vc_box_border_sky,.wpb_single_image .vc_box_outline_circle.vc_box_border_sky{border-color:#5AA1E3}.wpb_single_image .vc_box_border.vc_box_border_sky,.wpb_single_image .vc_box_border_circle.vc_box_border_sky{background-color:#5AA1E3}.wpb_single_image .vc_box_outline.vc_box_border_green,.wpb_single_image .vc_box_outline_circle.vc_box_border_green{border-color:#6DAB3C}.wpb_single_image .vc_box_border.vc_box_border_green,.wpb_single_image .vc_box_border_circle.vc_box_border_green{background-color:#6DAB3C}.wpb_single_image .vc_box_outline.vc_box_border_juicy_pink,.wpb_single_image .vc_box_outline_circle.vc_box_border_juicy_pink{border-color:#F4524D}.wpb_single_image .vc_box_border.vc_box_border_juicy_pink,.wpb_single_image .vc_box_border_circle.vc_box_border_juicy_pink{background-color:#F4524D}.wpb_single_image .vc_box_outline.vc_box_border_sandy_brown,.wpb_single_image .vc_box_outline_circle.vc_box_border_sandy_brown{border-color:#F79468}.wpb_single_image .vc_box_border.vc_box_border_sandy_brown,.wpb_single_image .vc_box_border_circle.vc_box_border_sandy_brown{background-color:#F79468}.wpb_single_image .vc_box_outline.vc_box_border_purple,.wpb_single_image .vc_box_outline_circle.vc_box_border_purple{border-color:#B97EBB}.wpb_single_image .vc_box_border.vc_box_border_purple,.wpb_single_image .vc_box_border_circle.vc_box_border_purple{background-color:#B97EBB}.wpb_single_image .vc_box_outline.vc_box_border_white,.wpb_single_image .vc_box_outline_circle.vc_box_border_white{border-color:#FFF}.wpb_single_image .vc_box_border.vc_box_border_white,.wpb_single_image .vc_box_border_circle.vc_box_border_white{background-color:#FFF}.vc_icon_element{line-height:0;font-size:14px;margin-bottom:35px}.vc_icon_element.vc_icon_element-outer{box-sizing:border-box;text-align:center}.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-left{text-align:left}.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center{text-align:center}.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-right{text-align:right}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner{text-align:center;display:inline-block;border:2px solid transparent;width:4em;height:4em;box-sizing:content-box;position:relative}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon{font-size:2.15em;font-style:normal;font-weight:400;line-height:1!important;font-size-adjust:none;font-stretch:normal;-webkit-font-feature-settings:normal;font-feature-settings:normal;-webkit-font-language-override:normal;font-language-override:normal;-webkit-font-kerning:auto;font-kerning:auto;font-synthesis:weight style;font-variant:normal;text-rendering:auto;display:inline-block;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon:before{font-style:normal;font-weight:400;display:inline-block;text-decoration:inherit;width:inherit;height:inherit;font-size:1em;text-align:center;text-rendering:optimizelegibility}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_gitem-link,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-link{width:100%;height:100%;display:block;position:absolute;top:0;box-sizing:content-box;border:none}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs{max-width:100%!important;line-height:1.2em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs.vc_icon_element-have-style-inner{width:2.5em!important;height:2.5em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs .vc_icon_element-icon{font-size:1.2em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm{max-width:100%!important;line-height:1.6em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm.vc_icon_element-have-style-inner{width:3.15em!important;height:3.15em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm .vc_icon_element-icon{font-size:1.6em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md{max-width:100%!important;line-height:2.15em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md.vc_icon_element-have-style-inner{width:4em!important;height:4em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md .vc_icon_element-icon{font-size:2.15em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg{max-width:100%!important;line-height:2.85em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg.vc_icon_element-have-style-inner{width:5em!important;height:5em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg .vc_icon_element-icon{font-size:2.85em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl{max-width:100%!important;line-height:5em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl.vc_icon_element-have-style-inner{width:7.15em!important;height:7.15em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl .vc_icon_element-icon{font-size:5em!important}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded .vc_gitem-link,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded .vc_icon_element-link,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline .vc_gitem-link,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline .vc_icon_element-link{border-radius:50%}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less .vc_gitem-link,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less .vc_icon_element-link,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline .vc_gitem-link,.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline .vc_icon_element-link{border-radius:5px}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-blue .vc_icon_element-icon{color:#5472D2}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-turquoise .vc_icon_element-icon{color:#00C1CF}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-pink .vc_icon_element-icon{color:#FE6C61}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-violet .vc_icon_element-icon{color:#8D6DC4}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-peacoc .vc_icon_element-icon{color:#4CADC9}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-chino .vc_icon_element-icon{color:#CEC2AB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-mulled_wine .vc_icon_element-icon{color:#50485B}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-vista_blue .vc_icon_element-icon{color:#75D69C}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-black .vc_icon_element-icon{color:#2A2A2A}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-grey .vc_icon_element-icon{color:#EBEBEB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-orange .vc_icon_element-icon{color:#F7BE68}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sky .vc_icon_element-icon{color:#5AA1E3}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-green .vc_icon_element-icon{color:#6DAB3C}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-juicy_pink .vc_icon_element-icon{color:#F4524D}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sandy_brown .vc_icon_element-icon{color:#F79468}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-purple .vc_icon_element-icon{color:#B97EBB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-white .vc_icon_element-icon{color:#FFF}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-outline{border-color:#5472D2}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-background{background-color:#5472D2}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-outline{border-color:#00C1CF}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-background{background-color:#00C1CF}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-outline{border-color:#FE6C61}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-background{background-color:#FE6C61}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-outline{border-color:#8D6DC4}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-background{background-color:#8D6DC4}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-outline{border-color:#4CADC9}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-background{background-color:#4CADC9}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-outline{border-color:#CEC2AB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-background{background-color:#CEC2AB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-outline{border-color:#50485B}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-background{background-color:#50485B}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-outline{border-color:#75D69C}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-background{background-color:#75D69C}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-outline{border-color:#2A2A2A}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-background{background-color:#2A2A2A}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-outline{border-color:#EBEBEB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-background{background-color:#EBEBEB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-outline{border-color:#F7BE68}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-background{background-color:#F7BE68}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-outline{border-color:#5AA1E3}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-background{background-color:#5AA1E3}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-outline{border-color:#6DAB3C}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-background{background-color:#6DAB3C}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-outline{border-color:#F4524D}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-background{background-color:#F4524D}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-outline{border-color:#F79468}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-background{background-color:#F79468}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-outline{border-color:#B97EBB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-background{background-color:#B97EBB}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-outline{border-color:#FFF}.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background{background-color:#FFF}.vc_chart .vc_chart-legend{font-size:14px;margin:0;padding:0}.vc_chart .vc_chart-legend li{line-height:1.3em;list-style:none;margin:0 0 .3em;min-height:1.3em}.vc_chart .vc_chart-legend span{border-radius:.3em;display:inline-block;height:1.3em;left:0;margin-right:.5em;vertical-align:middle;width:1.3em}@media (min-width:768px){.vc_chart .vc_chart-legend{display:inline-block;vertical-align:middle;width:40%}.vc_chart .vc_chart-legend li{margin-left:1em}.vc_chart .vc_chart-with-legend{display:inline-block;vertical-align:middle;width:60%}}.vc_line-chart .vc_chart-with-legend{width:75%}.vc_line-chart .vc_chart-legend{width:25%}.wpb_single_image .wpb_wrapper .vc_single_image-wrapper .zoomImg{border-radius:0}.wpb_single_image [class*='_circle'] .vc-zoom-wrapper{border-radius:50%}.wpb_single_image [class*='_rounded'] .vc-zoom-wrapper{border-radius:4px}.vc_general.vc_pagination{display:block;margin:0;padding:0;text-align:center}.vc_general.vc_pagination .vc_pagination-item{display:inline-block;margin:0;padding:0;vertical-align:middle}.vc_general.vc_pagination .vc_pagination-trigger{display:block;text-decoration:none;cursor:pointer;height:10px;width:10px;margin:5px 7px;background:0 0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;border:none}.vc_gitem-zone,.vc_gitem_row .vc_gitem-col{background-repeat:no-repeat;background-position:50% 50%;background-size:cover;box-sizing:border-box}.vc_general.vc_pagination .vc_pagination-trigger:focus{outline:0}.vc_general.vc_pagination .vc_active .vc_pagination-trigger{cursor:default}.vc_pagination.vc_pagination-style-outline .vc_pagination-trigger{border:3px solid transparent}.vc_pagination.vc_pagination-style-flat .vc_pagination-trigger{opacity:.6}.vc_pagination.vc_pagination-style-flat .vc_active .vc_pagination-trigger,.vc_pagination.vc_pagination-style-flat .vc_pagination-trigger:hover{opacity:1}.vc_pagination.vc_pagination-shape-round .vc_pagination-trigger{border-radius:50%}.vc_pagination.vc_pagination-shape-rounded .vc_pagination-trigger{border-radius:3px}.vc_pagination-color-blue.vc_pagination-style-outline .vc_pagination-trigger{border-color:#5472D2}.vc_pagination-color-blue.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-blue.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-blue.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#5472D2}.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_pagination-trigger{border-color:#00C1CF}.vc_pagination-color-turquoise.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#00C1CF}.vc_pagination-color-pink.vc_pagination-style-outline .vc_pagination-trigger{border-color:#FE6C61}.vc_pagination-color-pink.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-pink.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-pink.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#FE6C61}.vc_pagination-color-violet.vc_pagination-style-outline .vc_pagination-trigger{border-color:#8D6DC4}.vc_pagination-color-violet.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-violet.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-violet.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#8D6DC4}.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_pagination-trigger{border-color:#4CADC9}.vc_pagination-color-peacoc.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#4CADC9}.vc_pagination-color-chino.vc_pagination-style-outline .vc_pagination-trigger{border-color:#CEC2AB}.vc_pagination-color-chino.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-chino.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-chino.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#CEC2AB}.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_pagination-trigger{border-color:#50485B}.vc_pagination-color-mulled-wine.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#50485B}.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_pagination-trigger{border-color:#75D69C}.vc_pagination-color-vista-blue.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#75D69C}.vc_pagination-color-orange.vc_pagination-style-outline .vc_pagination-trigger{border-color:#F7BE68}.vc_pagination-color-orange.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-orange.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-orange.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#F7BE68}.vc_pagination-color-sky.vc_pagination-style-outline .vc_pagination-trigger{border-color:#5AA1E3}.vc_pagination-color-sky.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-sky.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-sky.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#5AA1E3}.vc_pagination-color-green.vc_pagination-style-outline .vc_pagination-trigger{border-color:#6DAB3C}.vc_pagination-color-green.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-green.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-green.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#6DAB3C}.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_pagination-trigger{border-color:#F4524D}.vc_pagination-color-juicy-pink.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#F4524D}.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_pagination-trigger{border-color:#F79468}.vc_pagination-color-sandy-brown.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#F79468}.vc_pagination-color-purple.vc_pagination-style-outline .vc_pagination-trigger{border-color:#B97EBB}.vc_pagination-color-purple.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-purple.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-purple.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#B97EBB}.vc_pagination-color-black.vc_pagination-style-outline .vc_pagination-trigger{border-color:#2A2A2A}.vc_pagination-color-black.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-black.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-black.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#2A2A2A}.vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger{border-color:#EBEBEB}.vc_pagination-color-grey.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-grey.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#EBEBEB}.vc_pagination-color-white.vc_pagination-style-outline .vc_pagination-trigger{border-color:#FFF}.vc_pagination-color-white.vc_pagination-style-flat .vc_pagination-trigger,.vc_pagination-color-white.vc_pagination-style-outline .vc_active .vc_pagination-trigger,.vc_pagination-color-white.vc_pagination-style-outline .vc_pagination-trigger:hover{background-color:#FFF}.vc_grid.vc_row{padding-left:0;padding-right:0;margin-left:0;margin-right:0}.vc-row[data-vc-full-width] .vc_grid.vc_row{overflow:hidden}.vc_grid.vc_row.vc_grid-gutter-1px{margin-bottom:-1px}.vc_grid.vc_row.vc_grid-gutter-1px .vc_pageable-slide-wrapper{margin-right:-1px}.vc_grid.vc_row.vc_grid-gutter-1px .vc_grid-item{padding-right:1px;padding-bottom:1px}.vc_grid.vc_row.vc_grid-gutter-2px{margin-bottom:-2px}.vc_grid.vc_row.vc_grid-gutter-2px .vc_pageable-slide-wrapper{margin-right:-2px}.vc_grid.vc_row.vc_grid-gutter-2px .vc_grid-item{padding-right:2px;padding-bottom:2px}.vc_grid.vc_row.vc_grid-gutter-3px{margin-bottom:-3px}.vc_grid.vc_row.vc_grid-gutter-3px .vc_pageable-slide-wrapper{margin-right:-3px}.vc_grid.vc_row.vc_grid-gutter-3px .vc_grid-item{padding-right:3px;padding-bottom:3px}.vc_grid.vc_row.vc_grid-gutter-4px{margin-bottom:-4px}.vc_grid.vc_row.vc_grid-gutter-4px .vc_pageable-slide-wrapper{margin-right:-4px}.vc_grid.vc_row.vc_grid-gutter-4px .vc_grid-item{padding-right:4px;padding-bottom:4px}.vc_grid.vc_row.vc_grid-gutter-5px{margin-bottom:-5px}.vc_grid.vc_row.vc_grid-gutter-5px .vc_pageable-slide-wrapper{margin-right:-5px}.vc_grid.vc_row.vc_grid-gutter-5px .vc_grid-item{padding-right:5px;padding-bottom:5px}.vc_grid.vc_row.vc_grid-gutter-10px{margin-bottom:-10px}.vc_grid.vc_row.vc_grid-gutter-10px .vc_pageable-slide-wrapper{margin-right:-10px}.vc_grid.vc_row.vc_grid-gutter-10px .vc_grid-item{padding-right:10px;padding-bottom:10px}.vc_grid.vc_row.vc_grid-gutter-15px{margin-bottom:-15px}.vc_grid.vc_row.vc_grid-gutter-15px .vc_pageable-slide-wrapper{margin-right:-15px}.vc_grid.vc_row.vc_grid-gutter-15px .vc_grid-item{padding-right:15px;padding-bottom:15px}.vc_grid.vc_row.vc_grid-gutter-20px{margin-bottom:-20px}.vc_grid.vc_row.vc_grid-gutter-20px .vc_pageable-slide-wrapper{margin-right:-20px}.vc_grid.vc_row.vc_grid-gutter-20px .vc_grid-item{padding-right:20px;padding-bottom:20px}.vc_grid.vc_row.vc_grid-gutter-25px{margin-bottom:-25px}.vc_grid.vc_row.vc_grid-gutter-25px .vc_pageable-slide-wrapper{margin-right:-25px}.vc_grid.vc_row.vc_grid-gutter-25px .vc_grid-item{padding-right:25px;padding-bottom:25px}.vc_grid.vc_row.vc_grid-gutter-30px{margin-bottom:-30px}.vc_grid.vc_row.vc_grid-gutter-30px .vc_pageable-slide-wrapper{margin-right:-30px}.vc_grid.vc_row.vc_grid-gutter-30px .vc_grid-item{padding-right:30px;padding-bottom:30px}.vc_grid.vc_row.vc_grid-gutter-35px{margin-bottom:-35px}.vc_grid.vc_row.vc_grid-gutter-35px .vc_pageable-slide-wrapper{margin-right:-35px}.vc_grid.vc_row.vc_grid-gutter-35px .vc_grid-item{padding-right:35px;padding-bottom:35px}.vc_grid.vc_row .vc_pageable-slide-wrapper .vc_grid-item.vc_visible-item:hover{z-index:3}.vc_grid.vc_row .vc_grid-item{display:none;padding:0;vertical-align:top;float:none;box-sizing:border-box;z-index:1}.vc_grid.vc_row .vc_grid-item .vc_grid-item-mini .vc_grid-item-content{overflow:hidden}.vc_grid.vc_row .vc_grid-item .vc_btn,.vc_grid.vc_row .vc_grid-item .vc_icon_element,.vc_grid.vc_row .vc_grid-item .wpb_content_element{margin-bottom:15px}.vc_gitem_row,.vc_gitem_row .vc_gitem_row{margin-bottom:0}.vc_grid.vc_row .vc_grid-item .vc_btn a,.vc_grid.vc_row .vc_grid-item .vc_icon_element a,.vc_grid.vc_row .vc_grid-item .wpb_content_element a{text-decoration:none;border-bottom:0}.vc_grid .vc_gitem-link{border-bottom:none;outline:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.vc_masonry_grid .vc_grid.vc_row .vc_grid-item,.vc_masonry_media_grid .vc_grid.vc_row .vc_grid-item{position:static}.vc_basic_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item,.vc_masonry_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item,.vc_masonry_media_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item,.vc_media_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item{display:block}@media (min-width:768px){.vc_basic_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item,.vc_media_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item{display:inline-block}}@-moz-document url-prefix(){.vc_masonry_grid .vc_grid-item,.vc_masonry_media_grid .vc_grid-item{margin-left:-.01px}}.vc_gitem-zone-b{display:none;overflow:hidden}.vc_gitem-float-none{float:none}.vc_gitem-float-left{float:left}.vc_gitem-float-right{float:right}.vc_gitem-align-center{text-align:center}.vc_gitem-align-right{text-align:right}.vc_gitem-align-justify{text-align:justify}.vc_gitem-block{position:relative;overflow:hidden}.vc_gitem-is-link{cursor:pointer}.vc_gitem-link{text-decoration:none}.vc_gitem_row{margin-left:0;margin-right:0;padding:inherit;box-sizing:border-box}.vc_gitem-zone-a .vc_gitem-row-position-top,.vc_gitem-zone-b .vc_gitem-row-position-top{position:absolute;left:0;right:0;top:0}.vc_gitem-zone-a .vc_gitem-row-position-middle,.vc_gitem-zone-b .vc_gitem-row-position-middle{position:absolute;left:0;right:0;top:50%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-o-transform:translate(0,-50%);transform:translate(0,-50%)}.vc_gitem-zone-a .vc_gitem-row-position-bottom,.vc_gitem-zone-b .vc_gitem-row-position-bottom{position:absolute;left:0;right:0;bottom:0}.vc_gitem_row .vc_gitem-col{padding:10px}.vc_gitem-zone{position:relative;background-clip:border-box;overflow:hidden}.vc_gitem-zone .vc-zone-link{display:block;position:absolute;top:0;right:0;left:0;bottom:0;z-index:5}.vc_gitem-zone-img{width:100%;display:block;visibility:hidden;height:auto}.vc_gitem-zone-a .vc_gitem-zone-mini{box-sizing:border-box;padding:inherit;position:static;top:0;left:0;bottom:0;right:0}.vc_gitem-zone-b .vc_gitem-zone-mini{position:static;padding:inherit;top:0;left:0;right:0;bottom:0;margin:0}.vc_grid-item-zone-c-left .vc_gitem-animated-block{float:right;width:50%}.vc_grid-item-zone-c-left .vc_gitem-zone-c,.vc_grid-item-zone-c-right .vc_gitem-animated-block{float:left;width:50%}.vc_grid-item-zone-c-right .vc_gitem-zone-c{float:right;width:50%}.vc-gitem-zone-height-mode-auto .vc_gitem-zone-img{display:none!important}.vc-gitem-zone-height-mode-auto:before{content:"";display:block;padding-top:100%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-4-3:before{padding-top:75%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-3-4:before{padding-top:133.33333333%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-16-9:before{padding-top:56.25%}.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-9-16:before{padding-top:177.77777778%}.vc_gitem-animated-block{position:relative}.vc_gitem-animate .vc_btn{-webkit-transition:all 0s ease;-o-transition:all 0s ease;transition:all 0s ease}.vc_gitem-animate .vc_gitem-zone-b{z-index:199}.vc_gitem-animate-none .vc_gitem-zone-b{display:block;position:absolute;top:0;left:0;bottom:0;right:0;margin:0;opacity:0;filter:alpha(opacity=0);box-sizing:border-box}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-none .vc_gitem-zone-b{opacity:1;filter:alpha(opacity=100)}.vc_gitem-animate-blurOut .vc_gitem-zone-b,.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b,.vc_gitem-animate-fadeIn .vc_gitem-zone-b,.vc_gitem-animate-scaleIn .vc_gitem-zone-b,.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b{display:block;position:absolute;top:0;left:0;bottom:0;right:0;margin:0;opacity:0;filter:alpha(opacity=0);-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;box-sizing:border-box}.vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_separator,.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_separator,.vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_separator,.vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_separator,.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_separator{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;width:0}.vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_btn,.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_btn,.vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_btn,.vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_btn,.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_btn{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0)}.vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title,.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title,.vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title,.vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title,.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title{display:inline-block;opacity:0;filter:alpha(opacity=0);-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);-webkit-perspective:1000;-webkit-backface-visibility:hidden;-webkit-transition:-webkit-transform 1s cubic-bezier(0,.275,.125,1),opacity .5s cubic-bezier(0,.275,.125,1);-moz-transition:-moz-transform 1s cubic-bezier(0,.275,.125,1),opacity .5s cubic-bezier(0,.275,.125,1);transition:transform 1s cubic-bezier(0,.275,.125,1),opacity .5s cubic-bezier(0,.275,.125,1)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title .vc_separator{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;width:50%}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title .vc_btn{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title .vc_post-title{opacity:1;filter:alpha(opacity=100);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b{opacity:1;filter:alpha(opacity=100)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_separator,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_separator{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;width:50%}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_btn,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_btn{-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title{opacity:1;filter:alpha(opacity=100);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.vc_gitem-animate-scaleIn{overflow:hidden}.vc_gitem-animate-scaleIn .vc_gitem-zone-a{-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .3s ease-in-out;-moz-transition:-moz-transform .3s ease-in-out;-o-transition:-o-transform .3s ease-in-out;transition:transform .3s ease-in-out}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-a{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}.vc_gitem-animate-scaleRotateIn{overflow:hidden}.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-a{-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .3s ease-in-out;-moz-transition:-moz-transform .3s ease-in-out;-o-transition:-o-transform .3s ease-in-out;transition:transform .3s ease-in-out}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-a{-webkit-transform:scale(1.5) rotate(10deg);-moz-transform:scale(1.5) rotate(10deg);-ms-transform:scale(1.5) rotate(10deg);-o-transform:scale(1.5) rotate(10deg);transform:scale(1.5) rotate(10deg)}.vc_gitem-animate-blurOut .vc_gitem-zone-a,.vc_gitem-animate-blurScaleOut .vc_gitem-zone-a{-webkit-filter:blur(0);-moz-filter:blur(0);-ms-filter:blur(0);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-perspective:1000;-webkit-backface-visibility:hidden;webkit-transition:filter .5s cubic-bezier(0,.275,.125,1),-webkit-transform .5s cubic-bezier(0,.275,.125,1);-moz-transition:filter .5s cubic-bezier(0,.275,.125,1),-moz-transform .5s cubic-bezier(0,.275,.125,1);transition:filter .5s cubic-bezier(0,.275,.125,1),transform .5s cubic-bezier(0,.275,.125,1)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-a,.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-a{-webkit-filter:blur(2px);-moz-filter:blur(2px);-ms-filter:blur(2px);filter:blur(2px);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0')}.vc_gitem-animate-blurScaleOut{overflow:hidden}.vc_gitem-animate-blurScaleOut .vc_gitem-zone-a{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-a{-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.vc_gitem-animate-slideInRight{overflow:hidden}.vc_gitem-animate-slideInRight .vc_gitem-zone-b{display:block;position:absolute;top:0;left:0;right:0;bottom:0;margin:0;opacity:0;filter:alpha(opacity=0);-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}.vc_gitem-animate-slideBottom .vc_gitem-zone-b,.vc_gitem-animate-slideInLeft .vc_gitem-zone-b{-webkit-transition:all 1s ease;-o-transition:all 1s ease;left:0;right:0;display:block;margin:0}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideInRight .vc_gitem-zone-b{opacity:1;filter:alpha(opacity=100);-webkit-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.vc_gitem-animate-slideInLeft{overflow:hidden}.vc_gitem-animate-slideInLeft .vc_gitem-zone-b{position:absolute;top:0;bottom:0;transition:all 1s ease;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%);opacity:0;filter:alpha(opacity=0)}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideInLeft .vc_gitem-zone-b{opacity:1;filter:alpha(opacity=100);-webkit-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.vc_gitem-animate-slideBottom{overflow:hidden;position:relative}.vc_gitem-animate-slideBottom .vc_gitem-zone-b{transition:all 1s ease;z-index:1000;position:absolute;top:100%;height:100%}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideBottom .vc_gitem-zone-b{top:0}.vc_gitem-animate-slideTop{overflow:hidden;position:relative}.vc_gitem-animate-slideTop .vc_gitem-zone-b{display:block;-webkit-transition:all 1s ease;-o-transition:all 1s ease;transition:all 1s ease;z-index:1000;position:absolute;top:-100%;height:100%;left:0;right:0;margin:0}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideTop .vc_gitem-zone-b{top:0}.vc_gitem-animate-flipFadeIn{overflow:hidden}.vc_gitem-animate-flipFadeIn .vc_gitem-zone-a{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipFadeIn .vc_gitem-zone-a{-webkit-transform:rotateX(180deg);-ms-transform:rotateX(180deg);-o-transform:rotateX(180deg);transform:rotateX(180deg)}.vc_gitem-animate-flipFadeIn .vc_gitem-zone-b{display:block;top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;filter:alpha(opacity=0);-webkit-transition:all .6s ease;-o-transition:all .6s ease;transition:all .6s ease;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateX(180deg);-ms-transform:rotateX(180deg);-o-transform:rotateX(180deg);transform:rotateX(180deg);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipFadeIn .vc_gitem-zone-b{opacity:1;filter:alpha(opacity=100);-webkit-transform:rotateX(0);-ms-transform:rotateX(0);-o-transform:rotateX(0);transform:rotateX(0)}.vc_gitem-animate-flipHorizontalFadeIn{overflow:hidden}.vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-a{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-a{-webkit-transform:rotateY(180deg);-ms-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg)}.vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-b{display:block;top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;filter:alpha(opacity=0);-webkit-transition:all .6s ease;-o-transition:all .6s ease;transition:all .6s ease;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateY(180deg);-ms-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg);-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-b{opacity:1;filter:alpha(opacity=100);-webkit-transform:rotateY(0);-ms-transform:rotateY(0);-o-transform:rotateY(0);transform:rotateY(0)}.vc_gitem-animate-goTop20{overflow:hidden}.vc_gitem-animate-goTop20 .vc_gitem-zone-a{position:relative;-webkit-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0);-webkit-transition:-webkit-transform .5s ease;-moz-transition:-moz-transform .5s ease;-o-transition:-o-transform .5s ease;transition:transform .5s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goTop20 .vc_gitem-zone-a{-webkit-transform:translateY(-20%);-ms-transform:translateY(-20%);-o-transform:translateY(-20%);transform:translateY(-20%)}.vc_gitem-animate-goTop20 .vc_gitem-zone-b{display:block;-webkit-transition:bottom .5s ease;-o-transition:bottom .5s ease;transition:bottom .5s ease;bottom:-100%;z-index:1000;position:absolute;width:100%;margin:0}.vc_gitem-animate-goTop20 .vc_gitem-zone-b .vc_gitem-zone-mini{position:static;-webkit-transform:none;-ms-transform:none;transform:none}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goTop20 .vc_gitem-zone-b{bottom:0}.vc_gitem-animate-goBottom20{overflow:hidden}.vc_gitem-animate-goBottom20 .vc_gitem-zone-a{position:relative;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-webkit-transition:-webkit-transform .5s ease;-moz-transition:-moz-transform .5s ease;-o-transition:-o-transform .5s ease;transition:transform .5s ease}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goBottom20 .vc_gitem-zone-a{-webkit-transform:translateY(20%);-ms-transform:translateY(20%);transform:translateY(20%)}.vc_gitem-animate-goBottom20 .vc_gitem-zone-b{display:block;-webkit-transition:top .5s ease;-o-transition:top .5s ease;transition:top .5s ease;top:-100%;z-index:1000;position:absolute;width:100%;margin:0}.vc_gitem-animate-goBottom20 .vc_gitem-zone-b .vc_gitem-zone-mini{position:static;-webkit-transform:none;-ms-transform:none;transform:none}.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goBottom20 .vc_gitem-zone-b{top:0}.vc_gitem-post-data{margin-bottom:15px}.vc_gitem-post-data h2{margin:0}.vc_gitem-post-category-name .vc_gitem-link{color:inherit}.vc_grid .vc_pageable-load-more-btn{text-align:center;margin-top:25px}.vc_grid .vc_pageable-load-more-btn>.vc_btn{outline:0}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots{display:none;margin-top:20px;text-align:center;-webkit-tap-highlight-color:transparent}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots .vc_grid-owl-dot{cursor:pointer;display:inline-block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots .vc_grid-owl-dot span{width:10px;height:10px;margin:5px 7px;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity .2s ease;-o-transition:opacity .2s ease;transition:opacity .2s ease}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots .vc_grid-owl-dot span{border:3px solid;-webkit-transition:background-color .2s ease;-o-transition:background-color .2s ease;transition:background-color .2s ease}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots .vc_grid-owl-dot span{border:3px solid;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;-webkit-transition:background-color .2s ease;-o-transition:background-color .2s ease;transition:background-color .2s ease}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots .vc_grid-owl-dot span{-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px;opacity:.6;filter:alpha(opacity=60)}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots .vc_grid-owl-dot:hover span{opacity:1;filter:alpha(opacity=100)}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot span{width:10px;height:10px;margin:5px 7px;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity .2s ease;-o-transition:opacity .2s ease;transition:opacity .2s ease;opacity:.6;filter:alpha(opacity=60)}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot:hover span{opacity:1;filter:alpha(opacity=100)}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots{display:block}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot span{width:10px;height:10px;margin:5px 7px;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity .2s ease;-o-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;opacity:.6;filter:alpha(opacity=60)}.vc-hoverbox-block,.vc-hoverbox-block-inner *{backface-visibility:hidden}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme:hover .vc_grid-owl-nav{opacity:1;filter:alpha(opacity=100)}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span{border-color:#5472D2!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot:hover span{background-color:#5472D2!important;border-color:#5472D2!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span{border-color:#00C1CF!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot:hover span{background-color:#00C1CF!important;border-color:#00C1CF!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span{border-color:#FE6C61!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot:hover span{background-color:#FE6C61!important;border-color:#FE6C61!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span{border-color:#8D6DC4!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot:hover span{background-color:#8D6DC4!important;border-color:#8D6DC4!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span{border-color:#4CADC9!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot:hover span{background-color:#4CADC9!important;border-color:#4CADC9!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span{border-color:#CEC2AB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot:hover span{background-color:#CEC2AB!important;border-color:#CEC2AB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span{border-color:#50485B!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot:hover span{background-color:#50485B!important;border-color:#50485B!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span{border-color:#75D69C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot:hover span{background-color:#75D69C!important;border-color:#75D69C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span{border-color:#2A2A2A!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot:hover span{background-color:#2A2A2A!important;border-color:#2A2A2A!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span{border-color:#EBEBEB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover span{background-color:#EBEBEB!important;border-color:#EBEBEB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span{border-color:#F7BE68!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot:hover span{background-color:#F7BE68!important;border-color:#F7BE68!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span{border-color:#5AA1E3!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot:hover span{background-color:#5AA1E3!important;border-color:#5AA1E3!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span{border-color:#6DAB3C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot:hover span{background-color:#6DAB3C!important;border-color:#6DAB3C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span{border-color:#F4524D!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot:hover span{background-color:#F4524D!important;border-color:#F4524D!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span{border-color:#F79468!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot:hover span{background-color:#F79468!important;border-color:#F79468!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span{border-color:#B97EBB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot:hover span{background-color:#B97EBB!important;border-color:#B97EBB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span{border-color:#FFF!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot:hover span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot.active span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot:hover span{background-color:#FFF!important;border-color:#FFF!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span{background-color:#5472D2!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span{background-color:#00C1CF!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span{background-color:#FE6C61!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span{background-color:#8D6DC4!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span{background-color:#4CADC9!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span{background-color:#CEC2AB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span{background-color:#50485B!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span{background-color:#75D69C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span{background-color:#2A2A2A!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span{background-color:#EBEBEB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span{background-color:#F7BE68!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span{background-color:#5AA1E3!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span{background-color:#6DAB3C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span{background-color:#F4524D!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span{background-color:#F79468!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span{background-color:#B97EBB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span,.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span{background-color:#FFF!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav{cursor:pointer;opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity .3s ease-in 0s;-o-transition:opacity .3s ease-in 0s;transition:opacity .3s ease-in 0s;-webkit-tap-highlight-color:transparent}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .disabled{display:none!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev{position:absolute;top:50%;margin-top:-12.5px;opacity:.5;filter:alpha(opacity=50);font-size:25px;line-height:25px;height:25px;display:inline-block;text-decoration:none;cursor:pointer;-webkit-transition:opacity .3s ease-in 0s;-o-transition:opacity .3s ease-in 0s;transition:opacity .3s ease-in 0s}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next:hover,.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev:hover{opacity:1;filter:alpha(opacity=100)}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev{left:5px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev.vc_grid-nav-prev-outside{left:-30px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next{right:5px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next.vc_grid-nav-next-outside{right:-30px}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-blue{color:#5472D2!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-turquoise{color:#00C1CF!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-pink{color:#FE6C61!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-violet{color:#8D6DC4!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-peacoc{color:#4CADC9!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-chino{color:#CEC2AB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-mulled_wine{color:#50485B!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-vista_blue{color:#75D69C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-black{color:#2A2A2A!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-grey{color:#EBEBEB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-orange{color:#F7BE68!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-sky{color:#5AA1E3!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-green{color:#6DAB3C!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-juicy_pink{color:#F4524D!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-sandy_brown{color:#F79468!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-purple{color:#B97EBB!important}.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-white{color:#FFF!important}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-1px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-1px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-13px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-2px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-2px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-13.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-3px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-3px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-14px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-4px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-4px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-14.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-5px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-5px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-15px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-10px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-10px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-17.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-15px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-15px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-20px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-20px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-20px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-22.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-25px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-25px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-25px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-30px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-30px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-27.5px}.vc_grid.vc_grid-owl-theme.vc_grid-gutter-35px .vc_grid-owl-nav .vc_grid-owl-next,.vc_grid.vc_grid-owl-theme.vc_grid-gutter-35px .vc_grid-owl-nav .vc_grid-owl-prev{margin-top:-30px}.vc_grid-pagination .vc_grid-pagination-list{outline:0;display:block;padding-left:0;text-align:center;margin:20px 0 0!important;border-radius:2px}.vc_grid-pagination .vc_grid-pagination-list>li{display:inline-block;margin:0;border:0 solid transparent}.vc_grid-pagination .vc_grid-pagination-list>li>a,.vc_grid-pagination .vc_grid-pagination-list>li>span{color:#fff;background-color:#428bca;border:1px solid #428bca;-webkit-transition:opacity .3s ease-in 0s;-o-transition:opacity .3s ease-in 0s;transition:opacity .3s ease-in 0s;position:relative;float:left;padding:3px 10px;line-height:1.42857143;text-decoration:none;opacity:.5;filter:alpha(opacity=50);margin-left:-1px;font-size:10px}.vc_grid-pagination .vc_grid-pagination-list>li:first-child>a,.vc_grid-pagination .vc_grid-pagination-list>li:first-child>span{margin-left:0}.vc_grid-pagination .vc_grid-pagination-list>li:focus a,.vc_grid-pagination .vc_grid-pagination-list>li:focus span,.vc_grid-pagination .vc_grid-pagination-list>li:hover a,.vc_grid-pagination .vc_grid-pagination-list>li:hover span{opacity:1;filter:alpha(opacity=100)}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-prev>a:after{font-family:vc_grid_v1;display:inline-block;content:"\e61b"}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-next>a:after{font-family:vc_grid_v1;display:inline-block;content:"\e61a"}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-first>a:after{font-family:vc_grid_v1;display:inline-block;content:"\e618"}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-last>a:after{font-family:vc_grid_v1;display:inline-block;content:"\e619"}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a:hover,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span:hover{z-index:2;opacity:1;filter:alpha(opacity=100);cursor:default}.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a:hover,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span:focus,.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span:hover{display:none}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li{border-color:#5472D2!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li>span{background-color:#5472D2!important;border-color:#5472D2!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li{border-color:#00C1CF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li>span{background-color:#00C1CF!important;border-color:#00C1CF!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li{border-color:#FE6C61!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li>span{background-color:#FE6C61!important;border-color:#FE6C61!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li{border-color:#8D6DC4!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li>span{background-color:#8D6DC4!important;border-color:#8D6DC4!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li{border-color:#4CADC9!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li>span{background-color:#4CADC9!important;border-color:#4CADC9!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li{border-color:#CEC2AB!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li>span{background-color:#CEC2AB!important;border-color:#CEC2AB!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li{border-color:#50485B!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li>span{background-color:#50485B!important;border-color:#50485B!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li{border-color:#75D69C!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li>span{background-color:#75D69C!important;border-color:#75D69C!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li{border-color:#2A2A2A!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li>span{background-color:#2A2A2A!important;border-color:#2A2A2A!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li{border-color:#EBEBEB!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li>span{background-color:#EBEBEB!important;border-color:#EBEBEB!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li{border-color:#F7BE68!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li>span{background-color:#F7BE68!important;border-color:#F7BE68!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li{border-color:#5AA1E3!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li>span{background-color:#5AA1E3!important;border-color:#5AA1E3!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li{border-color:#6DAB3C!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li>span{background-color:#6DAB3C!important;border-color:#6DAB3C!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li{border-color:#F4524D!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li>span{background-color:#F4524D!important;border-color:#F4524D!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li{border-color:#F79468!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li>span{background-color:#F79468!important;border-color:#F79468!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li{border-color:#B97EBB!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li>span{background-color:#B97EBB!important;border-color:#B97EBB!important;color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li{border-color:#FFF!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li>span{background-color:#FFF!important;border-color:#FFF!important;color:#2A2A2A!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>span{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-width:28px;min-height:22px}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:first-child>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:first-child>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:first-child>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:first-child>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:first-child>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:first-child>span{border-bottom-left-radius:2px;border-top-left-radius:2px}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:last-child>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:last-child>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:last-child>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:last-child>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:last-child>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>span{margin-left:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-height:22px;min-width:22px;padding:3px}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span{margin-left:5px;border-radius:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-height:22px;min-width:22px;padding:3px}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;min-height:22px;min-width:22px;padding:3px}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>span{background-color:transparent!important;color:#000!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>span{background-color:transparent!important;color:#fff!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li{border-left-width:1px!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li>a,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li>a{border-width:0;background:rgba(0,0,0,0)!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark li.vc_grid-disabled+li,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li:first-child,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light li.vc_grid-disabled+li,.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li:first-child{border-width:0!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li>a{color:#000!important}.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li>a{color:#fff!important}.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover>span{color:#FFF}.vc_grid-loading{margin:2em auto;font-size:10px;position:relative;text-indent:-9999em}.vc_grid-loading,.vc_grid-loading:after,.vc_grid-loading:before{border-radius:50%;width:12px;height:12px;-webkit-animation:load7 1.8s infinite ease-in-out;animation:load7 1.8s infinite ease-in-out}.vc_grid-loading:before{left:-20px}.vc_grid-loading:after{left:20px;-webkit-animation-delay:.32s;animation-delay:.32s}.vc_grid-loading:after,.vc_grid-loading:before{content:'';position:absolute;top:0}@-webkit-keyframes load7{0%,100%,80%{box-shadow:0 2.5em 0 -1.3em rgba(235,235,235,.75)}40%{box-shadow:0 2.5em 0 0 rgba(235,235,235,.75)}}@keyframes load7{0%,100%,80%{box-shadow:0 2.5em 0 -1.3em rgba(235,235,235,.75)}40%{box-shadow:0 2.5em 0 0 rgba(235,235,235,.75)}}.vc_grid-filter{margin-left:0;margin-bottom:20px;list-style:none;padding:0}.vc_grid-filter.vc_grid-filter-center{text-align:center}.vc_grid-filter.vc_grid-filter-right{text-align:right}.vc_grid-filter.vc_grid-filter-left{text-align:left}.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item:hover{background-color:#5472D2}.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover{background-color:#00C1CF}.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item:hover{background-color:#FE6C61}.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item:hover{background-color:#8D6DC4}.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover{background-color:#4CADC9}.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item:hover{background-color:#CEC2AB}.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover{background-color:#50485B}.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover{background-color:#75D69C}.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item:hover{background-color:#2A2A2A}.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item:hover{background-color:#EBEBEB}.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item:hover>span{color:#666}.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item:hover>span{color:#FFF}.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item:hover{background-color:#F7BE68}.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item:hover{background-color:#5AA1E3}.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item:hover{background-color:#6DAB3C}.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover{background-color:#F4524D}.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover{background-color:#F79468}.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item:hover{background-color:#B97EBB}.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item:hover{background-color:#FFF}.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item:hover>span{color:#666}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item>span{color:#FFF}.vc_grid-filter>.vc_grid-filter-item{cursor:pointer;display:inline-block;background:0 0;padding:4px 10px;-webkit-transition:background-color .1s linear;-o-transition:background-color .1s linear;transition:background-color .1s linear}.vc_grid-filter-dropdown .vc_grid-styled-select .vc_arrow-icon-navicon,.vc_grid-filter-select,.vc_grid-filter-select .vc_grid-styled-select .vc_arrow-icon-navicon{display:none}.vc_grid-filter>.vc_grid-filter-item:first-child{margin-left:0!important}.vc_grid-filter>.vc_grid-filter-item>span{-webkit-transition:color .1s linear;-o-transition:color .1s linear;transition:color .1s linear;outline:0;padding:0;text-decoration:none}.vc_grid-filter>.vc_grid-filter-item.vc_active>span,.vc_grid-filter>.vc_grid-filter-item:hover>span{text-decoration:none}.vc_grid-filter.vc_grid-filter-default>.vc_grid-filter-item{margin:0 5px 5px 0;border-radius:30px}.vc_grid-filter.vc_grid-filter- .vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-comma .vc_grid-filter-item{padding:0!important}.vc_grid-filter.vc_grid-filter-default-less-rounded>.vc_grid-filter-item{margin:0 5px 5px 0;border-radius:5px}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item{margin:0;border:1px solid rgba(235,235,235,.8);border-collapse:collapse}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:nth-child(n+2),.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:nth-child(n+2),.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:nth-child(n+2){margin-left:-1px;margin-top:-1px}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:hover{position:relative;z-index:1;border-color:transparent}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item.vc_active>a,.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:hover>a,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item.vc_active>a,.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:hover>a,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item.vc_active>a,.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:hover>a{text-decoration:none}.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:first-child{border-top-left-radius:30px;border-bottom-left-radius:30px}.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:last-child{border-top-right-radius:30px;border-bottom-right-radius:30px}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item{background-color:#7c93dd}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item:hover{background-color:#5472D2}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item{background-color:#00919c}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover{background-color:#00C1CF}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item{background-color:#fe9b94}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item:hover{background-color:#FE6C61}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item{background-color:#a991d3}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item:hover{background-color:#8D6DC4}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item{background-color:#73bfd5}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item>span{color:#FFF}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover{background-color:#4CADC9}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item{background-color:#e1d9cb}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item:hover{background-color:#CEC2AB}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item{background-color:#695f77}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover{background-color:#50485B}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item{background-color:#9ce2b8}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover{background-color:#75D69C}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item{background-color:#444}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item:hover{background-color:#2A2A2A}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item>span{color:#666}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item{background-color:#d2d2d2}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item:hover{background-color:#EBEBEB}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item>span{color:#FFF}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item{background-color:#fad398}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item:hover{background-color:#F7BE68}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item{background-color:#86baea}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item:hover{background-color:#5AA1E3}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item{background-color:#87c456}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item:hover{background-color:#6DAB3C}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item:hover>span{color:#FFF}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item{background-color:#f7817d}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover{background-color:#F4524D}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item{background-color:#fab698}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover{background-color:#F79468}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item{background-color:#cb9fcd}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item:hover{background-color:#B97EBB}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item:hover>span,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item>span{color:#666}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item{background-color:#e6e6e6}.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item:hover,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item:hover{background-color:#FFF}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item,.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item{margin:0;border:1px solid transparent;border-collapse:collapse;padding:3px 7px}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item>span,.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item>span{color:#FFF}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:nth-child(n+2),.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item:nth-child(n+2){border-left:none;margin-left:1px;border-top:none;margin-top:1px}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:first-child,.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-top:0}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:last-child,.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:first-child{border-top-left-radius:30px;border-bottom-left-radius:30px;border-top:0}.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:last-child{border-top-right-radius:30px;border-bottom-right-radius:30px}.vc_grid-filter.vc_grid-filter-filled-rounded-all>.vc_grid-filter-item{border-radius:3px!important}.vc_grid-filter.vc_grid-filter-filled-round-all>.vc_grid-filter-item{border-radius:30px!important}.vc_grid-filter.vc_grid-filter-size-xs .vc_grid-filter-item{font-size:12px;padding:1px 5px}.vc_grid-filter.vc_grid-filter-size-sm .vc_grid-filter-item{font-size:13px;padding:2px 7px}.vc_grid-filter.vc_grid-filter-size-md .vc_grid-filter-item{font-size:100%;padding:2px 10px}.vc_grid-filter.vc_grid-filter-size-lg .vc_grid-filter-item{font-size:18px;padding:4px 10px}.vc_grid-filter-dropdown,.vc_grid-filter-select{font-size:12px;margin-bottom:20px}.vc_grid-filter-dropdown.vc_grid-filter-center,.vc_grid-filter-select.vc_grid-filter-center{text-align:center}.vc_grid-filter-dropdown.vc_grid-filter-right,.vc_grid-filter-select.vc_grid-filter-right{text-align:right}.vc_grid-filter-dropdown.vc_grid-filter-left,.vc_grid-filter-select.vc_grid-filter-left{text-align:left}.vc_grid-filter-dropdown .vc_grid-styled-select select,.vc_grid-filter-select .vc_grid-styled-select select{outline:0;display:inline-block}@media (min-width:768px){.vc_grid-filter-dropdown.vc_grid-filter-color-blue .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-blue .vc_arrow-icon-navicon{color:#5472D2}.vc_grid-filter-dropdown.vc_grid-filter-color-turquoise .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-turquoise .vc_arrow-icon-navicon{color:#00C1CF}.vc_grid-filter-dropdown.vc_grid-filter-color-pink .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-pink .vc_arrow-icon-navicon{color:#FE6C61}.vc_grid-filter-dropdown.vc_grid-filter-color-violet .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-violet .vc_arrow-icon-navicon{color:#8D6DC4}.vc_grid-filter-dropdown.vc_grid-filter-color-peacoc .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-peacoc .vc_arrow-icon-navicon{color:#4CADC9}.vc_grid-filter-dropdown.vc_grid-filter-color-chino .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-chino .vc_arrow-icon-navicon{color:#CEC2AB}.vc_grid-filter-dropdown.vc_grid-filter-color-mulled_wine .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-mulled_wine .vc_arrow-icon-navicon{color:#50485B}.vc_grid-filter-dropdown.vc_grid-filter-color-vista_blue .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-vista_blue .vc_arrow-icon-navicon{color:#75D69C}.vc_grid-filter-dropdown.vc_grid-filter-color-black .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-black .vc_arrow-icon-navicon{color:#2A2A2A}.vc_grid-filter-dropdown.vc_grid-filter-color-grey .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-grey .vc_arrow-icon-navicon{color:#EBEBEB}.vc_grid-filter-dropdown.vc_grid-filter-color-orange .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-orange .vc_arrow-icon-navicon{color:#F7BE68}.vc_grid-filter-dropdown.vc_grid-filter-color-sky .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-sky .vc_arrow-icon-navicon{color:#5AA1E3}.vc_grid-filter-dropdown.vc_grid-filter-color-green .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-green .vc_arrow-icon-navicon{color:#6DAB3C}.vc_grid-filter-dropdown.vc_grid-filter-color-juicy_pink .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-juicy_pink .vc_arrow-icon-navicon{color:#F4524D}.vc_grid-filter-dropdown.vc_grid-filter-color-sandy_brown .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-sandy_brown .vc_arrow-icon-navicon{color:#F79468}.vc_grid-filter-dropdown.vc_grid-filter-color-purple .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-purple .vc_arrow-icon-navicon{color:#B97EBB}.vc_grid-filter-dropdown.vc_grid-filter-color-white .vc_arrow-icon-navicon,.vc_grid-filter-select.vc_grid-filter-color-white .vc_arrow-icon-navicon{color:#FFF}.vc_grid-filter-dropdown .vc_grid-styled-select,.vc_grid-filter-select .vc_grid-styled-select{border:1px solid #ccc;display:inline-block;height:30px;overflow:hidden;padding-right:5px;text-align:left;width:auto;vertical-align:middle}.vc_grid-filter-dropdown .vc_grid-styled-select .vc_arrow-icon-navicon,.vc_grid-filter-select .vc_grid-styled-select .vc_arrow-icon-navicon{font-size:17px;display:inline;vertical-align:middle}.vc_grid-filter-dropdown .vc_grid-styled-select select,.vc_grid-filter-select .vc_grid-styled-select select{background:none;border:0;border-radius:0;height:30px;line-height:1;margin-right:-50px;padding:5px;position:relative;font-size:12px;z-index:0;cursor:pointer;max-width:inherit!important}}@media (max-width:768px){.vc_responsive .vc_grid-filter-select{display:block}.vc_responsive .vc_grid-filter{display:none!important}}.owl-carousel .owl-item .vc_grid-item{-webkit-transform:translate3D(0,0,0);-ms-transform:translate3D(0,0,0);transform:translate3D(0,0,0)}.owl-carousel .owl-animated-out{z-index:0}.owl-carousel .owl-animated-in{z-index:1}.vc-hoverbox-wrapper,.vc-hoverbox-wrapper *{box-sizing:border-box}.vc-hoverbox-wrapper.vc-hoverbox-shape--rounded .vc-hoverbox-back,.vc-hoverbox-wrapper.vc-hoverbox-shape--rounded .vc-hoverbox-front{border-radius:10px}.vc-hoverbox-wrapper.vc-hoverbox-shape--round .vc-hoverbox-back,.vc-hoverbox-wrapper.vc-hoverbox-shape--round .vc-hoverbox-front{border-radius:50px}.vc-hoverbox-wrapper.vc-hoverbox-align--center{text-align:center}.vc-hoverbox-wrapper.vc-hoverbox-align--left{text-align:left}.vc-hoverbox-wrapper.vc-hoverbox-align--right{text-align:right}.vc-hoverbox-wrapper .vc-hoverbox{position:relative;display:inline-block;text-align:center;width:100%}.vc-hoverbox-wrapper.vc-hoverbox-width--100 .vc-hoverbox{width:100%}.vc-hoverbox-wrapper.vc-hoverbox-width--90 .vc-hoverbox{width:90%}.vc-hoverbox-wrapper.vc-hoverbox-width--80 .vc-hoverbox{width:80%}.vc-hoverbox-wrapper.vc-hoverbox-width--70 .vc-hoverbox{width:70%}.vc-hoverbox-wrapper.vc-hoverbox-width--60 .vc-hoverbox{width:60%}.vc-hoverbox-wrapper.vc-hoverbox-width--50 .vc-hoverbox{width:50%}.vc-hoverbox-wrapper.vc-hoverbox-width--40 .vc-hoverbox{width:40%}.vc-hoverbox-wrapper.vc-hoverbox-width--30 .vc-hoverbox{width:30%}.vc-hoverbox-wrapper.vc-hoverbox-width--20 .vc-hoverbox{width:20%}.vc-hoverbox-wrapper.vc-hoverbox-width--10 .vc-hoverbox{width:10%}.vc-hoverbox-inner{width:100%;display:inline-block;min-height:250px}.vc-hoverbox-inner :last-child{margin-bottom:0}.vc-hoverbox-block{height:100%;width:100%;position:absolute;top:0;left:0;display:flex;flex-direction:column;justify-content:center;transition:transform .5s ease-in-out;transform-style:preserve-3d;background-size:cover;background-position:center}.vc-hoverbox-block-inner{flex-shrink:0;padding:20px}.vc-hoverbox-front{transform:rotateY(0);z-index:1}.vc-hoverbox-back{transform:rotateY(180deg)}.vc-hoverbox:hover .vc-hoverbox-front{transform:rotateY(-180deg)}.vc-hoverbox:hover .vc-hoverbox-back{transform:rotateY(0)}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox-front{transform:rotateY(180deg)}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox-back{transform:rotateY(0);z-index:2}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox:hover .vc-hoverbox-front{transform:rotateY(0)}.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox:hover .vc-hoverbox-back{transform:rotateY(-180deg)}@font-face{font-family:vc_grid_v1;src:url(/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.eot?-9hbgac);src:url(/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.eot?#iefix-9hbgac) format('embedded-opentype'),url(/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.woff?-9hbgac) format('woff'),url(/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.ttf?-9hbgac) format('truetype'),url(/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.svg?-9hbgac#vc_grid_v1) format('svg');font-weight:400;font-style:normal}[class*=" vc_arrow-icon-"],[class^=vc_arrow-icon-]{font-family:vc_grid_v1;font-style:normal;font-weight:400;line-height:1}.vc_arrow-icon-minus:before{content:"\e61c"}.vc_arrow-icon-plus:before{content:"\e61d"}.vc_arrow-icon-arrow_down:before{content:"\e61e"}.vc_arrow-icon-arrow_up:before{content:"\e61f"}.vc_arrow-icon-arrow_01_left:before{content:"\e600"}.vc_arrow-icon-arrow_01_right:before{content:"\e601"}.vc_arrow-icon-arrow_02_left:before{content:"\e602"}.vc_arrow-icon-arrow_02_right:before{content:"\e603"}.vc_arrow-icon-arrow_03_left:before{content:"\e604"}.vc_arrow-icon-arrow_03_right:before{content:"\e605"}.vc_arrow-icon-arrow_04_left:before{content:"\e606"}.vc_arrow-icon-arrow_04_right:before{content:"\e607"}.vc_arrow-icon-arrow_05_left:before{content:"\e608"}.vc_arrow-icon-arrow_05_right:before{content:"\e609"}.vc_arrow-icon-arrow_06_left:before{content:"\e60a"}.vc_arrow-icon-arrow_06_right:before{content:"\e60b"}.vc_arrow-icon-arrow_07_left:before{content:"\e60c"}.vc_arrow-icon-arrow_07_right:before{content:"\e60d"}.vc_arrow-icon-arrow_08_left:before{content:"\e60e"}.vc_arrow-icon-arrow_08_right:before{content:"\e60f"}.vc_arrow-icon-arrow_09_left:before{content:"\e610"}.vc_arrow-icon-arrow_09_right:before{content:"\e611"}.vc_arrow-icon-arrow_10_left:before{content:"\e612"}.vc_arrow-icon-arrow_10_right:before{content:"\e613"}.vc_arrow-icon-arrow_11_left:before{content:"\e614"}.vc_arrow-icon-arrow_11_right:before{content:"\e615"}.vc_arrow-icon-arrow_12_left:before{content:"\e616"}.vc_arrow-icon-arrow_12_right:before{content:"\e617"}.vc_arrow-icon-navicon:before{content:"\f0c9"}.wpb_animate_when_almost_visible{opacity:0;filter:alpha(opacity=0)}.wpb_animate_when_almost_visible:not(.wpb_start_animation){-webkit-animation:none;-o-animation:none;animation:none}.top-to-bottom,.wpb_top-to-bottom{-webkit-animation:wpb_ttb .7s 1 cubic-bezier(.175,.885,.32,1.275);-o-animation:wpb_ttb .7s 1 cubic-bezier(.175,.885,.32,1.275);animation:wpb_ttb .7s 1 cubic-bezier(.175,.885,.32,1.275)}.bottom-to-top,.wpb_bottom-to-top{-webkit-animation:wpb_btt .7s 1 cubic-bezier(.175,.885,.32,1.275);-o-animation:wpb_btt .7s 1 cubic-bezier(.175,.885,.32,1.275);animation:wpb_btt .7s 1 cubic-bezier(.175,.885,.32,1.275)}.left-to-right,.wpb_left-to-right{-webkit-animation:wpb_ltr .7s 1 cubic-bezier(.175,.885,.32,1.275);-o-animation:wpb_ltr .7s 1 cubic-bezier(.175,.885,.32,1.275);animation:wpb_ltr .7s 1 cubic-bezier(.175,.885,.32,1.275)}.right-to-left,.wpb_right-to-left{-webkit-animation:wpb_rtl .7s 1 cubic-bezier(.175,.885,.32,1.275);-o-animation:wpb_rtl .7s 1 cubic-bezier(.175,.885,.32,1.275);animation:wpb_rtl .7s 1 cubic-bezier(.175,.885,.32,1.275)}.appear,.wpb_appear{-webkit-animation:wpb_appear .7s 1 cubic-bezier(.175,.885,.32,1.275);-o-animation:wpb_appear .7s 1 cubic-bezier(.175,.885,.32,1.275);animation:wpb_appear .7s 1 cubic-bezier(.175,.885,.32,1.275);-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}.wpb_start_animation{opacity:1;filter:alpha(opacity=100)}@-webkit-keyframes wpb_ttb{0%{-webkit-transform:translate(0,-10%);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-moz-keyframes wpb_ttb{0%{-moz-transform:translate(0,-10%);opacity:0;filter:alpha(opacity=0)}100%{-moz-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-o-keyframes wpb_ttb{0%{-o-transform:translate(0,-10%);opacity:0;filter:alpha(opacity=0)}100%{-o-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@keyframes wpb_ttb{0%{-webkit-transform:translate(0,-10%);-ms-transform:translate(0,-10%);-o-transform:translate(0,-10%);transform:translate(0,-10%);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-webkit-keyframes wpb_btt{0%{-webkit-transform:translate(0,10%);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-moz-keyframes wpb_btt{0%{-moz-transform:translate(0,10%);opacity:0;filter:alpha(opacity=0)}100%{-moz-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-o-keyframes wpb_btt{0%{-o-transform:translate(0,10%);opacity:0;filter:alpha(opacity=0)}100%{-o-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@keyframes wpb_btt{0%{-webkit-transform:translate(0,10%);-ms-transform:translate(0,10%);-o-transform:translate(0,10%);transform:translate(0,10%);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-webkit-keyframes wpb_ltr{0%{-webkit-transform:translate(-10%,0);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-moz-keyframes wpb_ltr{0%{-moz-transform:translate(-10%,0);opacity:0;filter:alpha(opacity=0)}100%{-moz-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-o-keyframes wpb_ltr{0%{-o-transform:translate(-10%,0);opacity:0;filter:alpha(opacity=0)}100%{-o-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@keyframes wpb_ltr{0%{-webkit-transform:translate(-10%,0);-ms-transform:translate(-10%,0);-o-transform:translate(-10%,0);transform:translate(-10%,0);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-webkit-keyframes wpb_rtl{0%{-webkit-transform:translate(10%,0);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-moz-keyframes wpb_rtl{0%{-moz-transform:translate(10%,0);opacity:0;filter:alpha(opacity=0)}100%{-moz-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-o-keyframes wpb_rtl{0%{-o-transform:translate(10%,0);opacity:0;filter:alpha(opacity=0)}100%{-o-transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@keyframes wpb_rtl{0%{-webkit-transform:translate(10%,0);-ms-transform:translate(10%,0);-o-transform:translate(10%,0);transform:translate(10%,0);opacity:0;filter:alpha(opacity=0)}100%{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0);opacity:1;filter:alpha(opacity=100)}}@-webkit-keyframes wpb_appear{0%{-webkit-transform:scale(.5);opacity:.1;filter:alpha(opacity=10)}100%{-webkit-transform:scale(1);opacity:1;filter:alpha(opacity=100)}}@-moz-keyframes wpb_appear{0%{-moz-transform:scale(.5);opacity:.1;filter:alpha(opacity=10)}100%{-moz-transform:scale(1);opacity:1;filter:alpha(opacity=100)}}@-o-keyframes wpb_appear{0%{-o-transform:scale(.5);opacity:.1;filter:alpha(opacity=10)}100%{-o-transform:scale(1);opacity:1;filter:alpha(opacity=100)}}@keyframes wpb_appear{0%{-webkit-transform:scale(.5);-ms-transform:scale(.5);-o-transform:scale(.5);transform:scale(.5);opacity:.1;filter:alpha(opacity=10)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:1;filter:alpha(opacity=100)}}.vc-spinner::before{content:'';width:16px;height:16px;display:inline-block;pointer-events:none;margin-top:6px;background:url(/wp-content/plugins/js_composer/assets/images/spinner.gif) no-repeat;background-position-x:center;background-position-y:center}.vc-spinner.vc-spinner-complete::before{background-image:url(/wp-content/plugins/js_composer/assets/vc/tick.png)}.vc-spinner.vc-spinner-failed::before{background-image:url(/wp-content/plugins/js_composer/assets/vc/remove.png)}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini{position:relative}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_gitem-zone{opacity:0!important;filter:alpha(opacity=0)!important;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;-webkit-transition:none!important;-o-transition:none!important;transition:none!important}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader-wrapper{position:absolute;right:0;top:50%;margin-top:-50px;left:0}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader{margin:2em auto;font-size:10px;position:relative;text-indent:-9999em}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader,.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after,.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before{border-radius:50%;width:12px;height:12px;-webkit-animation:vc_woo-add-cart-load 1.8s infinite ease-in-out;animation:vc_woo-add-cart-load 1.8s infinite ease-in-out}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before{left:-20px}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after{left:20px;-webkit-animation-delay:.32s;animation-delay:.32s}.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after,.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before{content:'';position:absolute;top:0}@-webkit-keyframes vc_woo-add-cart-load{0%,100%,80%{box-shadow:0 2.5em 0 -1.3em rgba(235,235,235,.75)}40%{box-shadow:0 2.5em 0 0 rgba(235,235,235,.75)}}@keyframes vc_woo-add-cart-load{0%,100%,80%{box-shadow:0 2.5em 0 -1.3em rgba(235,235,235,.75)}40%{box-shadow:0 2.5em 0 0 rgba(235,235,235,.75)}}.vc_grid-item-mini .added_to_cart.wc-forward{display:none}.awdr_free_product_text{
    display: inline-block;
    padding: 0px 10px;
    background-color: #3d9cd2;
    color: #fff;
    border-radius: 3px;
}
.variation-wdr_free_product{
    display: none !important;
}
.awdr_change_product{
    cursor: pointer;
}
.awdr_free_product_variants{
    padding: 5px;
}
.awdr-product-name{
    padding-left: 10px;
}
.awdr_change_product{
    display: flex;
}
.awdr-select-free-variant-product-toggle {
    color: gray;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.02em;
    transition: 0.4s;
}

.awdr-select-free-variant-product-toggle-active, .awdr-select-free-variant-product-toggle:hover {
    color: #444;
}

.awdr-select-variant-product {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
}
.awdr-select-free-variant-product-toggle:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 12px;
    color: #777;
    margin-left: 10px;
}

.awdr-select-free-variant-product-toggle-active:after {
    content: "\2796";/* Unicode character for "minus" sign (-) */
}