[class*=hint--] {
  position: relative;
  display: inline-block
}
[class*=hint--]:after, [class*=hint--]:before {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: .3s ease;
  transition-delay: 0s
}
[class*=hint--]:before {
  content: '';
  background: 0 0;
  border: 6px solid transparent;
  z-index: 1000001
}
[class*=hint--]:hover:after, [class*=hint--]:hover:before {
  visibility: visible;
  opacity: 1;
  transition-delay: .1s
}
[class*=hint--]:after {
  background: #383838;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 12px;
  white-space: nowrap;
  text-shadow: 0 -1px 0 #000;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, .3)
}
[class*=hint--][aria-label]:after {
  content: attr(aria-label)
}
[class*=hint--][data-hint]:after {
  content: attr(data-hint)
}
[aria-label='']:after, [aria-label='']:before, [data-hint='']:after, [data-hint='']:before {
  display: none !important
}
.hint--top-left:before, .hint--top-right:before, .hint--top:before {
  border-top-color: #383838
}
.hint--bottom-left:before, .hint--bottom-right:before, .hint--bottom:before {
  border-bottom-color: #383838
}
.hint--top:after, .hint--top:before {
  bottom: 100%;
  left: 50%
}
.hint--top:before {
  margin-bottom: -11px;
  left: calc(50% - 6px)
}
.hint--top:after {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}
.hint--top:hover:before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--top:hover:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px)
}
.hint--bottom:after, .hint--bottom:before {
  top: 100%;
  left: 50%
}
.hint--bottom:before {
  margin-top: -11px;
  left: calc(50% - 6px)
}
.hint--bottom:after {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}
.hint--bottom:hover:before {
  -webkit-transform: translateY(8px);
  transform: translateY(8px)
}
.hint--bottom:hover:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px)
}
.hint--right:before {
  border-right-color: #383838;
  margin-left: -11px;
  margin-bottom: -6px
}
.hint--right:after {
  margin-bottom: -14px
}
.hint--right:after, .hint--right:before {
  left: 100%;
  bottom: 50%
}
.hint--right:hover:after, .hint--right:hover:before {
  -webkit-transform: translateX(8px);
  transform: translateX(8px)
}
.hint--left:before {
  border-left-color: #383838;
  margin-right: -11px;
  margin-bottom: -6px
}
.hint--left:after {
  margin-bottom: -14px
}
.hint--left:after, .hint--left:before {
  right: 100%;
  bottom: 50%
}
.hint--left:hover:after, .hint--left:hover:before {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px)
}
.hint--top-left:after, .hint--top-left:before {
  bottom: 100%;
  left: 50%
}
.hint--top-left:before {
  margin-bottom: -11px;
  left: calc(50% - 6px)
}
.hint--top-left:after {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  margin-left: 12px
}
.hint--top-left:hover:before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--top-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px)
}
.hint--top-right:after, .hint--top-right:before {
  bottom: 100%;
  left: 50%
}
.hint--top-right:before {
  margin-bottom: -11px;
  left: calc(50% - 6px)
}
.hint--top-right:after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-left: -12px
}
.hint--top-right:hover:after, .hint--top-right:hover:before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--bottom-left:after, .hint--bottom-left:before {
  top: 100%;
  left: 50%
}
.hint--bottom-left:before {
  margin-top: -11px;
  left: calc(50% - 6px)
}
.hint--bottom-left:after {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  margin-left: 12px
}
.hint--bottom-left:hover:before {
  -webkit-transform: translateY(8px);
  transform: translateY(8px)
}
.hint--bottom-left:hover:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px)
}
.hint--bottom-right:after, .hint--bottom-right:before {
  top: 100%;
  left: 50%
}
.hint--bottom-right:before {
  margin-top: -11px;
  left: calc(50% - 6px)
}
.hint--bottom-right:after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-left: -12px
}
.hint--bottom-right:hover:after, .hint--bottom-right:hover:before {
  -webkit-transform: translateY(8px);
  transform: translateY(8px)
}
.hint--large:after, .hint--medium:after, .hint--small:after {
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word
}
.hint--small:after {
  width: 80px
}
.hint--medium:after {
  width: 150px
}
.hint--large:after {
  width: 300px
}
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0 #592726
}
.hint--error.hint--top-left:before, .hint--error.hint--top-right:before, .hint--error.hint--top:before {
  border-top-color: #b34e4d
}
.hint--error.hint--bottom-left:before, .hint--error.hint--bottom-right:before, .hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d
}
.hint--error.hint--left:before {
  border-left-color: #b34e4d
}
.hint--error.hint--right:before {
  border-right-color: #b34e4d
}
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0 #6c5328
}
.hint--warning.hint--top-left:before, .hint--warning.hint--top-right:before, .hint--warning.hint--top:before {
  border-top-color: #c09854
}
.hint--warning.hint--bottom-left:before, .hint--warning.hint--bottom-right:before, .hint--warning.hint--bottom:before {
  border-bottom-color: #c09854
}
.hint--warning.hint--left:before {
  border-left-color: #c09854
}
.hint--warning.hint--right:before {
  border-right-color: #c09854
}
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0 #1a3c4d
}
.hint--info.hint--top-left:before, .hint--info.hint--top-right:before, .hint--info.hint--top:before {
  border-top-color: #3986ac
}
.hint--info.hint--bottom-left:before, .hint--info.hint--bottom-right:before, .hint--info.hint--bottom:before {
  border-bottom-color: #3986ac
}
.hint--info.hint--left:before {
  border-left-color: #3986ac
}
.hint--info.hint--right:before {
  border-right-color: #3986ac
}
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0 #1a321a
}
.hint--success.hint--top-left:before, .hint--success.hint--top-right:before, .hint--success.hint--top:before {
  border-top-color: #458746
}
.hint--success.hint--bottom-left:before, .hint--success.hint--bottom-right:before, .hint--success.hint--bottom:before {
  border-bottom-color: #458746
}
.hint--success.hint--left:before {
  border-left-color: #458746
}
.hint--success.hint--right:before {
  border-right-color: #458746
}
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible
}
.hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--always.hint--top:after {
  -webkit-transform: translateX(-50%) translateY(-8px);
  transform: translateX(-50%) translateY(-8px)
}
.hint--always.hint--top-left:before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--always.hint--top-left:after {
  -webkit-transform: translateX(-100%) translateY(-8px);
  transform: translateX(-100%) translateY(-8px)
}
.hint--always.hint--top-right:after, .hint--always.hint--top-right:before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px)
}
.hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  transform: translateY(8px)
}
.hint--always.hint--bottom:after {
  -webkit-transform: translateX(-50%) translateY(8px);
  transform: translateX(-50%) translateY(8px)
}
.hint--always.hint--bottom-left:before {
  -webkit-transform: translateY(8px);
  transform: translateY(8px)
}
.hint--always.hint--bottom-left:after {
  -webkit-transform: translateX(-100%) translateY(8px);
  transform: translateX(-100%) translateY(8px)
}
.hint--always.hint--bottom-right:after, .hint--always.hint--bottom-right:before {
  -webkit-transform: translateY(8px);
  transform: translateY(8px)
}
.hint--always.hint--left:after, .hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px)
}
.hint--always.hint--right:after, .hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  transform: translateX(8px)
}
.hint--rounded:after {
  border-radius: 4px
}
.hint--no-animate:after, .hint--no-animate:before {
  transition-duration: 0s
}
.hint--bounce:after, .hint--bounce:before {
  transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
  transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
  transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71, 1.7, .77, 1.24), -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24)
}
.hint--no-shadow:after, .hint--no-shadow:before {
  text-shadow: initial;
  box-shadow: initial
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../../../plugins/wp-user-avatar/assets/css/material-icons/MaterialIcons-Regular.eot);
  src: local('Material Icons'), local('MaterialIcons-Regular'), url(../../../plugins/wp-user-avatar/assets/css/material-icons/MaterialIcons-Regular.woff2) format('woff2'), url(../../../plugins/wp-user-avatar/assets/css/material-icons/MaterialIcons-Regular.woff) format('woff'), url(../../../plugins/wp-user-avatar/assets/css/material-icons/MaterialIcons-Regular.ttf) format('truetype')
}
#profilepress-myaccount-wrapper .ppmyac-icons, .pp-form-field-wrap .pp-form-material-icons, .ppress-material-icons {
  font-family: 'Material Icons' !important;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga'
}
.pp-tab-widget-avatar img {
  display: block;
  border-radius: 50%;
  height: 190px;
  margin: 0 auto 10px !important;
  padding: 2px;
  text-align: center;
  width: 190px;
  float: none !important
}
.pp-user-panel {
  border-radius: 6px;
  text-align: center
}
.pp-user-panel-title {
  font-size: 20px;
  margin: 0
}
.pp-user-panel p {
  font-size: 15px;
  margin-bottom: 23px
}
.pp-tabbed-btn {
  border: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  border-radius: 4px;
  padding: 10px 15px;
  -webkit-font-smoothing: subpixel-antialiased;
  transition: border .25s linear, color .25s linear, background-color .25s linear
}
.pp-tabbed-btn-inverse {
  color: #fff !important;
  background-color: #34495e
}
.pp-password-reset-handler-wrap .pp-reset-password-form {
  padding: 40px;
  max-width: 500px;
  margin-top: 5px;
  margin-bottom: 5px
}
.pp-password-reset-handler-wrap .pp-reset-password-form h3 {
  color: #444;
  font-weight: 300;
  margin: 0 auto 40px
}
.pp-password-reset-handler-wrap .pp-reset-password-form label {
  color: #444;
  font-size: 15px
}
.pp-password-reset-handler-wrap .pp-reset-password-form label .req {
  margin: 2px;
  color: red
}
.pp-password-reset-handler-wrap .pp-reset-password-form label.active .req {
  opacity: 0
}
.pp-password-reset-handler-wrap .pp-reset-password-form input {
  font-size: 22px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  padding: 5px 10px;
  background: 0 0;
  margin-bottom: 40px;
  border: 1px solid #a0b3b0;
  border-radius: 0;
  transition: border-color .25s ease, box-shadow .25s ease
}
.pp-password-reset-handler-wrap .pp-reset-password-form input:focus {
  outline: 0;
  border-color: #1ab188
}
.pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button {
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #1ab188;
  color: #fff;
  transition: all .5s ease;
  -webkit-appearance: none;
  text-shadow: none;
  box-shadow: none
}
.pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button:focus, .pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button:hover {
  background: #179b77
}
.pp-password-reset-handler-wrap .pp-reset-password-form .pp-reset-button-block {
  display: block;
  width: 100%
}
.pp-password-reset-handler-wrap .profilepress-reset-status {
  margin-left: 40px;
  max-width: 420px
}
#pp-pass-strength-result {
  background-color: #eee;
  border: 1px solid #ddd;
  color: #23282d;
  padding: 3px 5px;
  text-align: center;
  width: 100%;
  box-sizing: border-box
}
#pp-pass-strength-result.short {
  background-color: #f1adad;
  border-color: #e35b5b;
  opacity: 1
}
#pp-pass-strength-result.bad {
  background-color: #fbc5a9;
  border-color: #f78b53;
  opacity: 1
}
#pp-pass-strength-result.good {
  background-color: #ffe399;
  border-color: #ffc733;
  opacity: 1
}
#pp-pass-strength-result.strong {
  background-color: #c1e1b9;
  border-color: #83c373;
  opacity: 1
}
.pp-form-wrapper .pp-form-label-wrap .pp-form-required-label {
  color: red;
  font-weight: 400
}
.pp-form-wrapper input[type=checkbox], .pp-form-wrapper input[type=radio] {
  cursor: pointer
}
.pp-form-wrapper p {
  margin: 0 0 5px !important;
  padding: 0 !important
}
.pp-form-wrapper input[type=datetime], .pp-form-wrapper input[type=email], .pp-form-wrapper input[type=number], .pp-form-wrapper input[type=password], .pp-form-wrapper input[type=search], .pp-form-wrapper input[type=tel], .pp-form-wrapper input[type=text], .pp-form-wrapper input[type=url], .pp-form-wrapper select, .pp-form-wrapper textarea {
  -webkit-appearance: none;
  width: 100%;
  background: #fff;
  border: 1px solid #dedee5;
  padding: 13px 15px;
  outline: 0;
  line-height: 1
}
.pp-form-wrapper select {
  background-image: url(../../../plugins/wp-user-avatar/assets/images/frontend/arrow-down.png) !important;
  background-position: right 20px center !important;
  background-repeat: no-repeat !important;
  background-size: 10px auto !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important
}
.pp-form-wrapper .pp-form-label-wrap {
  margin: 0 0 4px;
  padding: 0
}
.pp-form-wrapper .pp-form-label {
  font-size: 14px;
  text-transform: none;
  text-align: left;
  font-weight: 400;
  font-style: normal;
  float: none;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  width: auto;
  display: inline;
  cursor: pointer
}
.pp-form-wrapper .pp-checkbox-wrap, .pp-form-wrapper .pp-radio-wrap {
  display: block;
  text-align: left;
  line-height: normal;
  margin: 5px 0;
  padding: 0
}
.pp-form-wrapper .pp-checkbox-wrap label, .pp-form-wrapper .pp-radio-wrap label {
  margin-left: 5px
}
.pp-form-wrapper input[type=checkbox], .pp-form-wrapper input[type=radio] {
  border: 1px solid #ccc;
  background-color: #fff;
  width: 14px !important;
  height: 14px !important;
  display: inline-block;
  vertical-align: baseline
}
.pp-form-wrapper .ppress-pf-profile-connect {
  padding: 5px 0 10px
}
.pp-form-wrapper a.ppress-pf-social-icon {
  width: 100%;
  height: 100%;
  display: inline
}
.pp-form-wrapper .ppress-pf-social-icon svg {
  vertical-align: middle;
  width: 40px;
  height: 40px
}
.pp-form-wrapper .ppress-pf-social-icon.dpf-github svg, .pp-form-wrapper .ppress-pf-social-icon.dpf-instagram svg {
  padding: 3px
}
a.pp-button-social-login:focus {
  outline-color: transparent
}
a.pp-button-social-login:focus .ppsc, a.pp-button-social-login:hover .ppsc {
  background-color: rgba(255, 255, 255, .75)
}
a.pp-button-social-login:visited {
  color: #fff
}
a.pp-button-social-login, a.pp-button-social-login .ppsc {
  display: inline-block;
  font-size: 100%;
  height: 2.5em;
  padding: 0
}
a.pp-button-social-login {
  position: relative;
  vertical-align: middle;
  line-height: 2.5em;
  font-family: inherit;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #333;
  color: #fff !important;
  background: #333;
  margin: 6px 0;
  border-radius: 2px;
  box-sizing: content-box;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  text-decoration: none !important;
  min-width: 220px
}
a.pp-button-social-login .ppsc {
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  vertical-align: top;
  text-align: center;
  width: 2.5em;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 1.8em 1.8em;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  position: absolute;
  left: 0;
  margin: 0
}
a.pp-button-social-login span.ppsc-text {
  margin-left: 40px;
  padding: .5em;
  color: #fff !important
}
a.pp-button-social-login .ppsc-google {
  background-image: url(../../../plugins/wp-user-avatar/assets/images/social-login/google.svg)
}
a.pp-button-social-login.pp-button-social-login-google {
  background: #4285f4;
  border-color: #4285f4
}
a.pp-button-social-login.pp-button-social-login-facebook {
  background: #3b5998;
  border-color: #3b5998
}
a.pp-button-social-login.pp-button-social-login-twitter {
  background: #55acee;
  border-color: #55acee
}
a.pp-button-social-login.pp-button-social-login-linkedin {
  background: #0077b5;
  border-color: #0077b5
}
a.pp-button-social-login.pp-button-social-login-vk {
  background: #4a76a8;
  border-color: #4a76a8
}
a.pp-button-social-login.pp-button-social-login-github {
  background: #24292e;
  border-color: #24292e
}
a.pp-button-social-login .ppsc-vk {
  background-image: url(../../../plugins/wp-user-avatar/assets/images/social-login/vk-fa.svg)
}
a.pp-button-social-login .ppsc-facebook {
  background-image: url(../../../plugins/wp-user-avatar/assets/images/social-login/facebook.svg)
}
a.pp-button-social-login .ppsc-twitter {
  background-image: url(../../../plugins/wp-user-avatar/assets/images/social-login/twitter.svg)
}
a.pp-button-social-login .ppsc-linkedin {
  background-image: url(../../../plugins/wp-user-avatar/assets/images/social-login/linkedin.svg)
}
a.pp-button-social-login .ppsc-github {
  background-image: url(../../../plugins/wp-user-avatar/assets/images/social-login/github-fa.svg)
}
#profilepress-myaccount-wrapper, #profilepress-myaccount-wrapper *, #profilepress-myaccount-wrapper ::after, #profilepress-myaccount-wrapper ::before, .pp-form-container *, .pp-form-container .pp-form-wrapper, .pp-form-container .pp-form-wrapper * {
  box-sizing: border-box
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap span.select2-selection.select2-selection--multiple, html .pp-form-container .select2 input.select2-search__field {
  border: 0 !important
}
.pp-form-container form input[type=submit] {
  -webkit-appearance: none !important;
  cursor: pointer;
  text-shadow: none
}
.pp-form-container form {
  margin: 0;
  padding: 0;
  background-color: transparent
}
.woocommerce .woocommerce-MyAccount-content .pp-form-container {
  margin-right: 0 !important;
  margin-left: 0 !important
}
.pp-form-container form input, .pp-form-container form select, .pp-form-container form textarea {
  outline: 0;
  background-image: none;
  height: auto;
  float: none;
  position: static;
  box-shadow: none;
  text-shadow: none;
  text-transform: none;
  text-decoration: none;
  resize: vertical
}
.pp-form-container form p {
  margin: 0 0 .5em
}
.pp-form-container form input[type=submit]:focus {
  outline: 0
}
.pp-form-container .pp-user-avatar {
  border-radius: 50% !important;
  display: block !important;
  margin: 0 auto 10px !important;
  text-align: center !important
}
.pp-form-container img.pp-user-cover-image {
  width: 100% !important;
  height: auto !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=checkbox], #profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
  border: 1px solid #7e8993 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #555 !important;
  clear: none !important;
  cursor: pointer !important;
  display: inline-block !important;
  line-height: 0 !important;
  margin: 0 !important;
  outline: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  vertical-align: middle !important;
  -webkit-appearance: none !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1) !important;
  transition: .05s border-color ease-in-out !important;
  width: 16px !important;
  height: 16px !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
  border-radius: 50% !important
}
.pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox], .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
  border-radius: 4px !important
}
.pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio] {
  border-radius: 50% !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=checkbox]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox]:checked::before {
  content: url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E) !important;
  margin: -3px 0 0 -4px !important;
  width: 20px !important;
  height: 20px !important;
  position: static
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio]:checked::before {
  content: "";
  border-radius: 50% !important;
  margin: 3px !important;
  background-color: #000 !important;
  line-height: 1.14285714 !important;
  width: 8px !important;
  height: 8px !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=checkbox]:checked::before, #profilepress-myaccount-wrapper .profilepress-myaccount-content input[type=radio]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=checkbox]:checked::before, .pp-form-container .pp-form-wrapper .pp-form-field-wrap input[type=radio]:checked::before {
  float: left !important;
  display: inline-block !important;
  vertical-align: middle !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.pp-form-container .pp-form-wrapper.ppBuildScratch, .pp-form-container .pp-form-wrapper.ppBuildScratch * {
  font-family: 'Merriweather', sans-serif
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .ppbs-headline {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1em;
  margin-top: 0;
  text-align: center;
  margin-right: 6.387%
}
.pp-form-container .pp-form-wrapper.ppBuildScratch h1, .pp-form-container .pp-form-wrapper.ppBuildScratch h2, .pp-form-container .pp-form-wrapper.ppBuildScratch h3, .pp-form-container .pp-form-wrapper.ppBuildScratch h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1em;
  margin-top: 1em
}
.pp-form-container .pp-form-wrapper.ppBuildScratch input:disabled {
  opacity: .5
}
.pp-form-container .pp-form-wrapper.ppBuildScratch {
  max-width: 100%;
  width: 100%;
  padding: 6% 0 6% 6%;
  background: #fff;
  color: #222;
  font-size: 14px;
  position: relative;
  box-shadow: 0 0 0 .5px rgba(0, 20, 40, .1), 0 2px 8px 0 rgba(50, 55, 90, .2);
  border-radius: 3px;
  margin: 0 auto
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppf-remove-frame {
  box-shadow: none;
  border-radius: 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap {
  padding: 0 6.387% 4% 0;
  display: inline-block;
  width: 100%;
  vertical-align: top
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding: 0 6.387% 0 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .pp-form-label-wrap {
  margin: 0 0 5px;
  padding: 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-reveal .pp-form-field-description, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-reveal .ppress-hint-tooltip, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-standard .ppress-hint-tooltip, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-tooltip .pp-form-field-description {
  display: none
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-reveal .pp-form-field-input-textarea-wrap .pp-form-field:focus ~ .pp-form-field-description {
  display: block
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-tooltip .ppress-hint-tooltip {
  display: inline;
  font-weight: 400
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fda-tooltip .ppress-hint-tooltip .pp-form-material-icons {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 110%;
  display: inline;
  vertical-align: top
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fld-inside {
  position: relative
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fld-inside .pp-form-label-wrap {
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 2
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap.fld-inside .pp-form-label-wrap {
  left: 0 !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fld-inside .pp-form-field-input-textarea-wrap .pp-form-field {
  padding-top: 18px;
  padding-bottom: 2px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap.fld-inside .pp-form-field-input-textarea-wrap .pp-form-field {
  padding-top: 23px;
  padding-bottom: 7px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap.fld-inside .pp-form-field-input-textarea-wrap .pp-form-field {
  padding-top: 30px;
  padding-bottom: 10px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fw-half {
  width: 50%
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap.fw-third {
  width: 33.3333333333%
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap textarea {
  border: 1px solid #dbdbdb;
  font-size: 14px;
  padding: 10px 15px;
  transition: all .35s;
  background: #fff;
  color: #69717a;
  width: 100%;
  border-radius: 0;
  line-height: 1.3;
  min-height: 40px;
  display: inline-block;
  margin: 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap textarea {
  height: 100px;
  overflow: auto
}
.pp-form-field-wrap .pp-form-material-icons {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: text;
  margin: 8px 12px 0 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-right .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-right .pp-form-field-wrap.field-has-icon textarea {
  padding-right: 40px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-left .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-left .pp-form-field-wrap.field-has-icon textarea {
  padding-left: 40px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-left .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-left .pp-form-field-wrap.field-has-icon textarea {
  padding-left: 30px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-right .pp-form-field-wrap.field-has-icon input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-right .pp-form-field-wrap.field-has-icon textarea {
  padding-right: 30px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfia-left .pp-form-field-wrap .pp-form-material-icons {
  left: 0;
  margin-left: 12px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-left .pp-form-field-wrap .pp-form-material-icons {
  left: 0 !important;
  margin-left: 0 !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material.ppfia-right .pp-form-field-wrap .pp-form-material-icons {
  margin-right: 0 !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap .pp-form-material-icons {
  margin-top: 10px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap .pp-form-material-icons {
  margin-top: 18px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .has-password-visibility-icon .pp-form-material-icons {
  cursor: pointer
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-pill .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-pill .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-pill .pp-form-field-wrap textarea {
  border-radius: 25px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-round .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-round .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-round .pp-form-field-wrap textarea {
  border-radius: 6px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap .select2.select2-container, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap textarea {
  border: 0 !important;
  border-bottom: 1px solid #dbdbdb !important;
  padding-left: 0 !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap input[type=text]:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap select:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-material .pp-form-field-wrap textarea:focus {
  border-top: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap .select2-selection, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap input:not([type=radio]):not([type=checkbox]), .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap select, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfl-flat .pp-form-field-wrap textarea {
  border: 0 !important;
  background: #f7f7f7 !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap select {
  padding-top: 15px;
  padding-bottom: 15px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-field-wrap textarea {
  height: 150px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap input, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap select {
  padding-top: 20px;
  padding-bottom: 20px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-field-wrap textarea {
  height: 200px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap input[type=text]:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap select:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap textarea:focus {
  border: 1px solid #999
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .pp-form-label-wrap .pp-form-label, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .ppform-remember-label {
  font-style: normal;
  background-color: transparent;
  display: block;
  font-weight: 700;
  font-size: 14px;
  float: none;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  color: #444
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-wrap .ppform-remember-label {
  display: inline-block
}
.pp-field-user-avatar-picture-wrap .pp-profile-avatar-overlay ins, .pp-field-user-cover-image-wrap .pp-cover-image-overlay ins, .pp-form-container .pp-form-wrapper.ppBuildScratch.ppf-hide-asterisk .pp-form-required-label {
  display: none
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap input[type=submit] {
  background: #000;
  border: 0;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 15px 10px;
  transition: .15s ease-in-out;
  width: auto;
  min-width: 110px;
  text-align: center
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-large .pp-form-submit-button-wrap input[type=submit], .pp-form-container .pp-form-wrapper.ppBuildScratch.ppfs-medium .pp-form-submit-button-wrap input[type=submit] {
  padding-top: 20px;
  padding-bottom: 20px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbl-pill .pp-form-submit-button-wrap input[type=submit] {
  border-radius: 25px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbl-round .pp-form-submit-button-wrap input[type=submit] {
  border-radius: 6px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap input[type=submit]:focus, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-submit-button-wrap input[type=submit]:hover {
  background-color: #ededed;
  color: #000;
  text-decoration: none
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-checkbox-wrap, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-radio-wrap {
  margin: 0 0 5px
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-checkboxes-container, .ppressmd-new-dropdown ul {
  margin: 0;
  padding: 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-checkbox-wrap:last-of-type, .pp-form-container .pp-form-wrapper.ppBuildScratch .pp-radio-wrap:last-of-type {
  margin-bottom: 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch .pp-form-field-description {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  line-height: 1.3;
  text-align: left;
  margin: 4px 0 0
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-wide .pp-form-submit-button-wrap input[type=submit] {
  width: 100%
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width .pp-form-submit-button-wrap {
  margin-top: 4%;
  margin-bottom: 4%
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width .pp-form-submit-button-wrap input[type=submit] {
  width: 100% !important;
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
  left: 0 !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width.ppsbl-pill {
  border-bottom-right-radius: 25px !important;
  border-bottom-left-radius: 25px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch.ppsbw-full-width.ppsbl-round {
  border-bottom-right-radius: 6px !important;
  border-bottom-left-radius: 6px !important
}
.pp-form-container .pp-form-wrapper.ppBuildScratch a.pp-button-social-login:last-of-type {
  margin-bottom: 1.5em !important
}
#profilepress-myaccount-wrapper {
  font-size: 16px
}
#profilepress-myaccount-wrapper .profilepress-myaccount-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px
}
#profilepress-myaccount-wrapper .profilepress-myaccount-nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0
}
#profilepress-myaccount-wrapper .ppmyac-dashboard-item {
  text-decoration: none !important;
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  width: 100%;
  text-align: inherit;
  box-shadow: none
}
#profilepress-myaccount-wrapper .ppmyac-dashboard-item.isactive {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff
}
#profilepress-myaccount-wrapper .ppmyac-dashboard-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem
}
#profilepress-myaccount-wrapper .ppmyac-dashboard-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem
}
#profilepress-myaccount-wrapper .ppmyac-icons {
  margin-right: .5rem;
  vertical-align: text-bottom
}
#profilepress-myaccount-wrapper .profilepress-myaccount-col-sm-3 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px
}
@media (min-width:576px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-col-sm-3 {
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
  }
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content {
  position: relative;
  width: 100%;
  padding-top: 30px;
  padding-right: 15px;
  padding-left: 15px
}
@media (min-width:576px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-content {
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
  }
}
#profilepress-myaccount-wrapper .profilepress-myaccount-avatar-wrap {
  text-align: center;
  margin-bottom: 20px
}
#profilepress-myaccount-wrapper .profilepress-myaccount-avatar-wrap .profilepress-myaccount-avatar img.pp-user-avatar {
  margin: 0 !important;
  position: static !important;
  float: none !important;
  display: inline-block;
  border-radius: 999px
}
#profilepress-myaccount-wrapper .profilepress-myaccount-nav a:focus {
  outline: 0;
  text-shadow: none;
  box-shadow: none
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content h2 {
  margin-top: 0 !important;
  margin-bottom: 1.8rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  font-size: 2rem !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content h3 {
  margin-top: 0 !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  font-size: 1.2rem !important;
  margin-bottom: 1rem !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenus-wrap {
  margin-bottom: 2rem
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenu-wrap {
  display: inline;
  padding-right: 1rem
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenu-item {
  color: inherit;
  padding: 0 0 10px
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-submenu-item.ppsubmenu-active {
  border-bottom: 3px solid #6c757d
}
.profilepress-myaccount-alert, .profilepress-myaccount-edit-profile .profilepress-edit-profile-status {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem
}
.profilepress-myaccount-alert.pp-alert-danger, .profilepress-myaccount-edit-profile .profilepress-edit-profile-status {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb
}
.profilepress-myaccount-alert.pp-alert-success, .profilepress-myaccount-edit-profile .profilepress-edit-profile-status.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field {
  margin-top: .5rem;
  margin-bottom: 1rem
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-cover-image-empty {
  min-height: 250px;
  background-color: #eee
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-cover-image-wrap {
  padding: .75rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  margin-bottom: 0;
  border-radius: .25rem
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-cover-image-wrap img {
  width: 100%;
  height: auto
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-email-notifications-wrap .profilepress-myaccount-form-field {
  margin-top: .5rem;
  margin-bottom: .5rem
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-email-notifications-wrap {
  margin-bottom: 2rem
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field label {
  margin-bottom: .2rem;
  font-weight: 500;
  display: block
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field input[type=checkbox] + label, #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field input[type=radio] + label {
  display: inline
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-control:not([type=radio]):not([type=checkbox]), #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap input:not([type=radio]):not([type=checkbox]):not([type=submit]), #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap select, #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap textarea {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  overflow: visible;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125)
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap textarea {
  height: auto !important;
  min-height: 100px !important;
  resize: vertical !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content input.profilepress-myaccount-form-control:focus, #profilepress-myaccount-wrapper .profilepress-myaccount-content select.profilepress-myaccount-form-control:focus, #profilepress-myaccount-wrapper .profilepress-myaccount-content textarea.profilepress-myaccount-form-control:focus {
  background-color: #fff;
  border-color: #bbb;
  outline: 0;
  box-shadow: none
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-field input[type=submit] {
  display: inline-block;
  cursor: pointer;
  width: auto
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-field input[type=submit]:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  text-decoration: none
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin-bottom: 0
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin: 0;
  opacity: 0
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + .75rem);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 .25rem .25rem 0
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-input ~ .ppmyac-custom-file-label[data-browse]::after {
  content: attr(data-browse)
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field .pp-checkbox-wrap label.pp-form-label, #profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-field .pp-radio-wrap label.pp-form-label {
  display: inline-block;
  margin: 0 0 0 .3819820591em
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-avatar-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 1em 0 0;
  padding-left: 0
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-avatar {
  position: relative;
  padding: .75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
  margin-bottom: 0;
  border-radius: .25rem;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important;
  display: -webkit-flex !important;
  display: flex !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .pp-user-avatar {
  width: 70px;
  height: 70px;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .ppmyac-remove-avatar {
  margin-bottom: .5rem !important;
  margin-top: .5rem !important;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  color: #fff;
  height: 35px;
  background-color: #6c757d;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  text-shadow: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #6c757d;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-cover-image-wrap .ppmyac-remove-avatar {
  margin-top: .75rem !important;
  margin-bottom: 0 !important
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content input.profilepress-myaccount-form-control::-webkit-file-upload-button {
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid #ddd
}
#profilepress-myaccount-wrapper .profilepress-myaccount-content .select2-selection {
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .125)
}
.pp-form-container .pp-field-user-avatar-picture-wrap {
  width: 250px;
  height: auto;
  margin: auto;
  position: relative
}
.pp-form-container .pp-field-user-cover-image-wrap {
  margin: auto;
  position: relative
}
.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay-wrap, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  text-align: center;
  box-sizing: border-box;
  padding: 0;
  color: #fff;
  text-shadow: 0 1px #666;
  line-height: 21px;
  font-size: 16px;
  height: 100%;
  width: 100%;
  border-radius: 50%
}
.pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay-wrap {
  border-radius: 0
}
.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay {
  display: table;
  height: 100%;
  width: 100%
}
.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay ins, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay ins {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  text-decoration: none !important;
  background: 0 0 !important;
  color: #fff !important;
  border-bottom: none !important
}
.pp-field-user-avatar-picture-wrap:hover .pp-profile-avatar-overlay-wrap .pp-profile-avatar-overlay .pp-form-material-icons, .pp-field-user-cover-image-wrap:hover .pp-cover-image-overlay-wrap .pp-cover-image-overlay .pp-form-material-icons {
  font-size: 35px !important;
  display: block !important;
  position: static !important;
  right: auto !important;
  top: auto !important;
  color: #fff !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  cursor: pointer
}
html .select2.select2-container .select2-selection.select2-selection--multiple input.select2-search__field {
  border: 0 !important;
  height: auto !important
}
.select2.select2-container .select2-selection.select2-selection--multiple input.select2-search__field {
  border: 0 !important;
  box-shadow: none !important
}
.select2.select2-container .select2-selection.select2-selection--multiple li.select2-selection__choice {
  height: auto;
  line-height: normal
}
.pp-form-wrapper.pp-member-directory {
  opacity: 0
}
.pp-form-wrapper.ppress-default-profile {
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  opacity: 0
}
.pp-form-wrapper.ppress-default-profile * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box
}
.pp-form-wrapper.ppress-default-profile a, .pp-form-wrapper.ppress-default-profile a:hover {
  text-decoration: none !important
}
.pp-form-wrapper.ppress-default-profile .ppress-default-profile-cover {
  background-color: #eee;
  box-sizing: border-box;
  position: relative
}
.pp-form-wrapper.ppress-default-profile .ppress-default-profile-cover-e {
  text-align: center;
  overflow: hidden
}
.pp-form-wrapper.ppress-default-profile .ppress-default-profile-cover-e img {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 0;
  margin: 0
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-header {
  position: relative;
  padding: 0 0 25px;
  border-bottom: solid 2px #eee;
  min-height: 85px;
  box-sizing: content-box
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-headericon {
  position: absolute;
  top: 15px;
  right: 0;
  vertical-align: middle;
  font-size: 30px;
  height: 30px;
  line-height: 30px;
  z-index: 66;
  margin-right: 10px
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-headericon .ppress-dpf-edit-a .ppress-material-icons {
  font-size: 30px
}
.pp-form-wrapper.ppress-default-profile a.ppress-dpf-edit-a {
  color: #aaa;
  text-decoration: none;
  border-bottom: 0
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-headericon a:hover, .pp-form-wrapper.ppress-default-profile a.ppress-dpf-edit-a.active {
  color: #007bff
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-photo {
  float: left;
  position: absolute;
  margin: 0 0 0 30px;
  box-sizing: border-box;
  width: 200px;
  height: 200px
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-photo img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  display: block;
  overflow: hidden;
  margin: 0;
  box-shadow: none;
  background: #fff;
  border: 5px solid #fff
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-meta {
  padding-right: 30px;
  -ms-word-break: break-all;
  word-break: break-word;
  word-wrap: break-word
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-main-meta {
  padding: 10px 0 0;
  color: #999
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-name {
  font-size: 24px;
  font-weight: 700;
  margin-right: 30px;
  color: #555;
  line-height: 1.7em
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-clear {
  clear: both
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-meta span {
  margin: 0 5px;
  font-size: 14px;
  display: inline-block;
  line-height: .1
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-meta span:first-child {
  margin: 0 5px 0 0
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-meta-text {
  margin: 5px 0 0;
  line-height: 1.4em;
  font-size: 13px
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav {
  padding: 10px;
  background: #444;
  text-align: center
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px 6px 28px;
  display: block;
  float: left;
  border-radius: 4px;
  margin-left: 5px;
  position: relative;
  border-bottom: 0;
  text-decoration: none !important
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item a:hover {
  background: #555
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item .ppress-material-icons {
  font-size: 18px;
  height: 18px;
  line-height: 1.5;
  position: absolute;
  display: block;
  left: 10px
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item span.ppress-dpf-nav-title {
  padding-left: 5px
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-nav-item.ppress-dpf-active a {
  background: #007bff
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-body {
  max-width: 600px;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: auto
}
.pp-form-wrapper.ppress-default-profile .pp-user-comment-no-item, .pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note {
  text-align: center;
  padding-top: 20px;
  color: #666
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note .ppress-material-icons {
  display: inline-block;
  font-size: 70px;
  height: 70px;
  line-height: 70px
}
.pp-form-wrapper.ppress-default-profile .pp-user-comment-no-item span, .pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note span {
  margin-top: 10px;
  display: block;
  font-size: 16px;
  color: #888
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-note a {
  border: 0 !important
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-body-items {
  margin: 0 0 30px
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-profile-body-item {
  position: relative;
  padding: 15px 0 0
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-item-label {
  display: block;
  margin: 0 0 8px;
  border-bottom: solid 2px #eee;
  padding-bottom: 4px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-field-label-icon {
  float: left;
  margin: 0 8px 0 0;
  height: 22px;
  line-height: 18px;
  display: inline-block;
  width: 24px;
  text-align: center
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-field-label-icon i {
  font-size: 22px;
  position: relative;
  top: 1px
}
.pp-form-wrapper.ppress-default-profile .ppdf-nocover .ppress-dpf-profile-photo {
  float: none;
  margin: 0 auto;
  text-align: center;
  position: relative
}
.pp-form-wrapper.ppress-default-profile .ppdf-nocover .ppress-dpf-profile-meta {
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center !important
}
.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav {
  padding: 0
}
.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item a, .ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item a {
  margin-left: 0;
  border-radius: 0
}
.ppress-dpf-profile-nav-item.ppressui340 .ppress-dpf-profile-body {
  padding-left: 0;
  padding-right: 0
}
.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
  position: static;
  top: auto;
  left: auto
}
.ppress-default-profile.ppressui340 .ppress-dpf-header .ppress-dpf-profile-meta {
  text-align: center;
  padding: 0;
  margin-top: -30px
}
.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-meta {
  padding-top: 0
}
.ppress-default-profile.ppressui340 .ppress-dpf-header .ppress-dpf-name {
  float: none;
  margin-right: 0;
  font-size: 18px
}
.ppress-default-profile.ppressui340 .ppress-dpf-header .ppress-dpf-meta-text {
  padding: 0 20px
}
.ppress-default-profile.ppressui340 .ppress-dpf-profile-photo {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  float: none;
  left: auto;
  text-align: center;
  top: -40px
}
.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
  width: 120px;
  height: 120px
}
.ppress-default-profile.ppressui340 .ppress-dpf-nav-title {
  font-size: 12px
}
.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item .ppress-material-icons {
  display: block;
  position: static;
  top: auto;
  left: auto;
  height: 20px;
  line-height: 20px
}
.ppress-default-profile.ppressui340.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-meta {
  margin-top: 0
}
.ppress-default-profile.ppressui500 .ppress-dpf-profile-nav {
  padding: 0
}
.ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item i {
  display: block;
  position: static;
  top: auto;
  left: auto;
  font-size: 22px;
  height: 22px;
  line-height: 22px
}
.ppress-default-profile.ppressui500 .ppress-dpf-profile-body {
  padding-left: 0;
  padding-right: 0
}
.ppress-default-profile.ppressui500.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
  position: static;
  top: auto;
  left: auto;
  width: 120px;
  height: 120px
}
.ppress-default-profile.ppressui500 .ppress-dpf-profile-photo {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  float: none;
  display: block;
  top: -40px;
  left: 0
}
.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-profile-meta {
  text-align: center;
  padding: 0;
  margin-top: -30px
}
.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-name {
  float: none;
  margin-right: 0;
  font-size: 21px
}
.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-meta-text {
  padding-top: 10px
}
.ppress-default-profile.ppressui500 .ppress-dpf-header .ppress-dpf-meta {
  padding: 0 20px;
  display: block
}
.ppress-default-profile.ppressui500 .ppress-dpf-nav-title {
  font-size: 12px
}
.ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item .ppress-material-icons {
  display: block;
  position: static;
  top: auto;
  left: auto;
  height: 20px;
  line-height: 20px
}
.ppress-default-profile.ppressui500.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-meta {
  margin-top: 0
}
.ppress-default-profile.ppressui800 .ppress-dpf-profile-nav {
  padding: 0
}
.ppress-default-profile.ppressui800 .ppress-dpf-profile-nav-item a {
  padding: 10px 20px;
  margin-left: 0;
  border-radius: 0
}
.ppress-default-profile.ppressui800 .ppress-dpf-profile-photo {
  width: 140px;
  height: 140px;
  top: -70px
}
.ppress-default-profile.ppressui800.ppdf-nocover .ppress-dpf-header .ppress-dpf-profile-photo {
  top: auto
}
.ppress-default-profile.ppressui800 .ppress-dpf-header .ppress-dpf-profile-meta {
  padding-left: 200px
}
.ppress-default-profile.ppressui800 .ppress-dpf-header .ppress-dpf-meta-text {
  padding-top: 10px
}
.ppress-default-profile.ppressui800 .ppress-dpf-nav-title {
  font-size: 12px
}
.ppress-default-profile.ppressui800 .ppress-dpf-profile-nav-item .ppress-material-icons {
  display: block;
  position: static;
  top: auto;
  left: auto;
  font-size: 20px;
  height: 20px;
  line-height: 20px
}
.ppress-default-profile.ppressui960 .ppress-dpf-profile-photo {
  width: 140px;
  height: 140px;
  top: -70px
}
.ppress-default-profile.ppressui960.ppdf-nocover .ppress-dpf-profile-meta {
  margin-top: -50px
}
.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item a, .ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item a {
  padding: 5px 11px;
  font-size: 12px
}
.ppress-default-profile.ppressui340 .ppress-dpf-profile-nav-item .ppress-material-icons, .ppress-default-profile.ppressui500 .ppress-dpf-profile-nav-item .ppress-material-icons {
  font-size: 14px
}
.ppress-default-profile.ppressui340 span.ppress-dpf-nav-title, .ppress-default-profile.ppressui500 span.ppress-dpf-nav-title {
  font-size: 10px
}
.pp-form-wrapper.ppress-default-profile ul.pp-user-post-list {
  list-style: none;
  margin: 0;
  padding: 0
}
.pp-form-wrapper.ppress-default-profile li.pp-user-post-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee
}
.pp-form-wrapper.ppress-default-profile .pp-user-post-item a, .pp-form-wrapper.ppress-default-profile .pp-user-post-item h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-decoration: none
}
.pp-form-wrapper.ppress-default-profile .pp-user-post-item h3.pp-post-item-head {
  line-height: 20px
}
.pp-form-wrapper.ppress-default-profile .ppress-dpf-more-post-wrap {
  text-align: center;
  padding-top: 30px
}
.pp-form-wrapper.ppress-default-profile a.ppress-dpf-more-post-btn {
  font-size: 15px;
  border: 0;
  display: block;
  width: 100%;
  line-height: 1em;
  padding: 15px;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  font-weight: 400;
  transition: .25s;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  max-width: 250px;
  margin: 0 auto;
  color: #fff;
  background: #007bff
}
.pp-form-wrapper.ppress-default-profile .pp-user-comment-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee
}
.pp-form-wrapper.ppress-default-profile .pp-user-comment-item-link a {
  color: inherit
}
.pp-form-wrapper.ppress-default-profile .pp-user-comment-no-item + .ppress-dpf-more-post-wrap {
  display: none
}
.pp-member-directory .ppressmd-member-directory-header.ppressmd-form {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row:not(.ppressmd-member-directory-filters-bar) {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 10px
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row.ppressmd-member-directory-search-row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 60%
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label {
  -webkit-flex: 1;
  flex: 1;
  margin: 0 10px 0 0;
  min-width: 90px;
  max-width: 85%
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label .ppressmd-search-line {
  -webkit-appearance: textfield;
  width: 100%;
  padding: 0 12px !important;
  display: block !important;
  border-radius: 2px;
  outline: 0 !important;
  cursor: text !important;
  font-size: 15px !important;
  height: 40px !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  margin: 0 !important;
  position: static
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line .ppressmd-do-search {
  min-width: 15%;
  width: auto
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-sorting {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex: 5;
  flex: 5
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-sorting .ppressmd-member-directory-sorting-a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  cursor: pointer
}
.pp-member-directory .ppressmd-member-directory-header a {
  text-decoration: none;
  border-bottom: none;
  box-shadow: none
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppress-material-icons {
  display: inline;
  vertical-align: middle
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex: 2;
  flex: 2;
  text-align: right
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  cursor: pointer
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a a {
  margin: 0 5px 0 0
}
.ppressmd-member-directory-header:not(.ppmd-filters-expand) .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a .ppress-up {
  display: none
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search.ppressmd-search-invisible, .ppressmd-member-directory-header.ppmd-filters-expand .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-filters .ppressmd-member-directory-filters-a .ppress-down {
  display: none
}
.ppressmd-new-dropdown {
  font-size: 16px;
  margin: 0;
  position: absolute;
  height: auto;
  background: #fff;
  z-index: 10;
  display: none;
  border: 1px solid #ddd;
  box-shadow: 0 7px 14px 0 rgba(50, 50, 93, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
  -webkit-box-shadow: 0 7px 14px 0 rgba(50, 50, 93, .1), 0 3px 6px 0 rgba(0, 0, 0, .07);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px
}
.ppressmd-new-dropdown ul li {
  list-style-type: none;
  padding: 0;
  margin: 0
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppressmd-member-directory-sorting .ppressmd-member-directory-sorting-a .ppressmd-new-dropdown {
  top: 24px;
  width: 200px;
  left: -12px
}
.ppressmd-new-dropdown ul li a {
  display: block;
  padding: 8px 12px;
  line-height: 1
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row.ppressmd-member-directory-filters-bar {
  padding: 0 0 10px
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row.ppressmd-header-row-invisible {
  margin: 0
}
.ppressmd-member-directory-header.ppmd-filters-expand .ppressmd-member-directory-header-row .ppressmd-search.ppressmd-search-invisible {
  display: grid
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search {
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(-webkit-max-content, auto);
  grid-auto-rows: minmax(max-content, auto);
  -ms-grid-template-rows: auto 1fr;
  -ms-grid-template-columns: repeat(3, 1fr);
  -ms-grid-gap: 10px;
  -ms-grid-auto-rows: minmax(max-content, auto);
  -webkit-align-items: center;
  align-items: center
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: nowrap;
  width: 100%
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter.ppressmd-text-filter-type input {
  width: 100%;
  padding: 10px 30px
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label .ppressmd-search-line, .pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter.ppressmd-text-filter-type input:not(.select2-search__field), .pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection {
  background-color: transparent;
  border: 1px solid #ddd !important
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-nav-line .ppress-material-icons, .pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-member-directory-search-line label .ppressmd-search-line, .pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row .ppressmd-search .ppressmd-search-filter.ppressmd-text-filter-type input, .pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection__rendered {
  color: #666;
  background-color: transparent
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-member-directory-header-row input[type=search]:focus {
  border: 1px solid #bbb !important
}
.pp-member-directory .ppressmd-member-directory-header .ppressmd-button {
  border: 0 !important;
  display: block;
  width: 100%;
  line-height: 1em !important;
  padding: 16px 20px !important;
  text-decoration: none !important;
  text-align: center;
  text-transform: none !important;
  font-weight: 400 !important;
  overflow: hidden;
  position: relative;
  transition: .25s;
  box-sizing: border-box;
  border-radius: 4px !important;
  box-shadow: none;
  vertical-align: middle !important;
  height: auto !important;
  cursor: pointer !important;
  text-shadow: none;
  font-family: inherit;
  outline: 0 !important;
  margin: 0;
  -webkit-appearance: none
}
.pp-member-directory .ppressmd-members-total-wrap {
  text-align: center;
  margin: 0 0 10px
}
.pp-member-directory .ppressmd-members-total {
  font-size: 20px;
  font-weight: 300
}
.pp-member-directory .ppressmd-member-directory-header .select2.select2-container {
  width: 100% !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-search.select2-search--inline .select2-search__field {
  width: auto !important
}
.pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection {
  display: block !important;
  height: 40px;
  padding: 0 0 0 12px !important;
  overflow: hidden !important;
  position: relative !important;
  white-space: nowrap !important;
  line-height: 35px !important;
  font-size: 15px !important;
  text-align: left !important;
  text-decoration: none !important;
  border-radius: 2px !important;
  background-clip: padding-box !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: 0 0 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection .select2-selection__arrow {
  display: inline-block !important;
  width: 34px !important;
  height: 100% !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  border-radius: 0 2px 2px 0 !important;
  background-clip: padding-box !important;
  text-align: center !important;
  background: 0 0 !important;
  border-left: 0 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-container.select2-container--open .select2-dropdown {
  border: 1px solid #ddd;
  border-top: 0;
  border-radius: 0
}
.pp-member-directory .ppressmd-member-directory-header .select2-container.select2-container--open .select2-dropdown .select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
  font-size: 15px;
  margin: 5px !important;
  color: #666 !important;
  padding: 3px 7px 4px !important;
  cursor: pointer;
  min-height: 1em !important
}
.pp-member-directory .ppressmd-member-directory-header .select2.select2-container .select2-selection.select2-selection--multiple {
  height: auto !important;
  line-height: .8 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0 !important;
  line-height: 37px
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  line-height: 37px;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding-left: 0 !important;
  padding-right: 30px;
  width: 100%;
  font-size: 13px
}
.pp-member-directory .ppressmd-member-directory-header .select2-results li.select2-results__option.select2-results__option--highlighted {
  background: 0 0 !important;
  background: #f4f4f4 !important;
  color: #666 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__clear {
  right: 10px;
  margin: 0 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__clear {
  right: 10px;
  font-size: 30px;
  margin: 0 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__clear, .pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__arrow b, .pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__clear {
  color: #888 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__clear {
  position: absolute
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 3px 3px 3px 5px
}
.pp-member-directory .ppressmd-member-directory-header .select2-container .select2-search.select2-search--inline > input {
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box
}
.pp-member-directory .ppressmd-member-directory-header .select2-container--default .select2-selection--single .select2-selection__clear {
  font-size: 20px !important
}
.pp-member-directory .ppmd-pagination-wrap {
  font-size: 16px;
  width: 100%;
  margin: 0 auto 10px;
  padding: 0;
  text-align: center
}
.pp-member-directory .ppmd-pagination-wrap .page-numbers {
  display: inline-block;
  width: auto;
  height: 34px;
  line-height: 34px;
  transition: all .2s linear;
  padding: 0 14px;
  color: #666;
  font-weight: 400
}
.pp-member-directory .ppmd-pagination-wrap .page-numbers.current {
  background: #007bff;
  color: #fff
}
.pp-member-directory .ppmd-pagination-wrap .page-numbers .ppress-material-icons {
  vertical-align: middle
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}
.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1)
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6
}
.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0
}
.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto
}
.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px
}
.flatpickr-calendar.rightMost:before, .flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px
}
.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff
}
.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff
}
.flatpickr-calendar:focus {
  outline: 0
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none
}
.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  left: 0;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  right: 0;
}
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747
}
.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  transition: fill .1s;
  fill: inherit
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input, .numInputWrapper span {
  display: inline-block
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none
}
.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1)
}
.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2)
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5)
}
.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
.numInputWrapper:hover span {
  opacity: 1
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05)
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9)
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9)
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0
}
.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 .5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05)
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder
}
.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7
}
.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px
}
.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7
}
.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1)
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7
}
.flatpickr-day.hidden {
  visibility: hidden
}
.rangeMode .flatpickr-day {
  margin-top: 1px
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px
}
.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold
}
.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0
}
.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400
}
.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee
}
.flatpickr-input[readonly] {
  cursor: pointer
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap
}
.select2-container .select2-search--inline {
  float: left
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051
}
.select2-results {
  display: block
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none
}
.select2-results__option[aria-selected] {
  cursor: pointer
}
.select2-container--open .select2-dropdown {
  left: 0
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}
.select2-search--dropdown {
  display: block;
  padding: 4px
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none
}
.select2-search--dropdown.select2-search--hide {
  display: none
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0)
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none
}
.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none
}
.select2-container--classic .select2-dropdown--below {
  border-top: none
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb
}
.wgl-dynamic-highlights-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  color: transparent;
}
.wgl-dynamic-highlights-js:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 2px;
  margin: auto;
  background-color: currentColor;
  box-shadow: 0 0 .25em .325em currentColor;
  border-radius: 50%;
}
.wgl-add-backdrop-filter {
  z-index: 1;
}
.wgl-add-backdrop-filter:after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.wgl-morph-js {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 450px;
  fill: rgba(0, 0, 0, .15);
  pointer-events: none;
}
.dialog-widget-content {
  background-color: #fff;
  position: absolute;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2);
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2);
  overflow: hidden
}
.dialog-message {
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
.dialog-type-lightbox {
  position: fixed;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .8);
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.dialog-type-lightbox .dialog-widget-content {
  margin: auto;
  width: 375px
}
.dialog-type-lightbox .dialog-header {
  font-size: 15px;
  color: #495157;
  padding: 30px 0 10px;
  font-weight: 500
}
.dialog-type-lightbox .dialog-message {
  padding: 0 30px 30px;
  min-height: 50px
}
.dialog-type-lightbox:not(.elementor-popup-modal) .dialog-header, .dialog-type-lightbox:not(.elementor-popup-modal) .dialog-message {
  text-align: center
}
.dialog-type-lightbox .dialog-buttons-wrapper {
  border-top: 1px solid #e6e9ec;
  text-align: center
}
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button {
  font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
  width: 50%;
  border: none;
  background: none;
  color: #6d7882;
  font-size: 15px;
  cursor: pointer;
  padding: 13px 0;
  outline: 0
}
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:hover {
  background-color: #f4f6f7
}
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-ok {
  color: #b01b1b
}
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button.dialog-take_over {
  color: #39b54a
}
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button:active {
  background-color: rgba(230, 233, 236, .5)
}
.dialog-type-lightbox .dialog-buttons-wrapper > .dialog-button::-moz-focus-inner {
  border: 0
}
.dialog-close-button {
  cursor: pointer;
  position: absolute;
  margin-top: 15px;
  right: 15px;
  font-size: 15px;
  line-height: 1
}
.dialog-close-button:not(:hover) {
  opacity: .4
}
.dialog-alert-widget .dialog-buttons-wrapper > button {
  width: 100%
}
.dialog-confirm-widget .dialog-button:first-child {
  border-right: 1px solid #e6e9ec
}
.dialog-prevent-scroll {
  overflow: hidden;
  max-height: 100vh
}
@media (min-width:1024px) {
  body.admin-bar .dialog-lightbox-widget {
    height: calc(100vh - 32px)
  }
}
@media (max-width:1024px) {
  body.admin-bar .dialog-type-lightbox {
    position: -webkit-sticky;
    position: sticky;
    height: 100vh
  }
}
.elementor-aspect-ratio-219 .elementor-fit-aspect-ratio {
  padding-bottom: 42.8571%
}
.elementor-aspect-ratio-169 .elementor-fit-aspect-ratio {
  padding-bottom: 56.25%
}
.elementor-aspect-ratio-43 .elementor-fit-aspect-ratio {
  padding-bottom: 75%
}
.elementor-aspect-ratio-32 .elementor-fit-aspect-ratio {
  padding-bottom: 66.6666%
}
.elementor-aspect-ratio-11 .elementor-fit-aspect-ratio {
  padding-bottom: 100%
}
.elementor-aspect-ratio-916 .elementor-fit-aspect-ratio {
  padding-bottom: 177.8%
}
.elementor-fit-aspect-ratio {
  position: relative;
  height: 0
}
.elementor-fit-aspect-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 0;
  background-color: #000
}
.elementor-fit-aspect-ratio video {
  width: 100%
}
.flatpickr-calendar {
  width: 280px
}
.flatpickr-calendar .flatpickr-current-month span.cur-month {
  font-weight: 300
}
.flatpickr-calendar .dayContainer {
  width: 280px;
  min-width: 280px;
  max-width: 280px
}
.flatpickr-calendar .flatpickr-days {
  width: 280px
}
.flatpickr-calendar .flatpickr-day {
  max-width: 37px;
  height: 37px;
  line-height: 37px
}
.elementor-templates-modal .dialog-widget-content {
  font-family: Roboto, Arial, Helvetica, Verdana, sans-serif;
  background-color: #f1f3f5;
  width: 100%
}
@media (max-width:1439px) {
  .elementor-templates-modal .dialog-widget-content {
    max-width: 990px
  }
}
@media (min-width:1440px) {
  .elementor-templates-modal .dialog-widget-content {
    max-width: 1200px
  }
}
.elementor-templates-modal .dialog-header {
  padding: 0;
  z-index: 1
}
.elementor-templates-modal .dialog-buttons-wrapper, .elementor-templates-modal .dialog-header {
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  position: relative
}
.elementor-templates-modal .dialog-buttons-wrapper {
  border: none;
  display: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 5px
}
.elementor-templates-modal .dialog-buttons-wrapper .elementor-button {
  height: 40px;
  margin-left: 5px
}
.elementor-templates-modal .dialog-buttons-wrapper .elementor-button-success {
  padding: 12px 36px;
  color: #fff;
  width: auto;
  font-size: 15px
}
.elementor-templates-modal .dialog-buttons-wrapper .elementor-button-success:hover {
  background-color: #39b54a
}
.elementor-templates-modal .dialog-message {
  height: 750px;
  max-height: 85vh;
  overflow: auto;
  padding-top: 25px
}
.elementor-templates-modal .dialog-content {
  height: 100%
}
.elementor-templates-modal .dialog-loading {
  display: none
}
.elementor-templates-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 50px
}
.elementor-templates-modal__header__logo {
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer
}
.elementor-templates-modal__header__logo-area {
  text-align: left;
  padding-left: 15px
}
.elementor-templates-modal__header__logo-area > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.elementor-templates-modal__header__logo__icon-wrapper {
  margin-right: 10px;
  font-size: 12px
}
.elementor-templates-modal__header__logo__title {
  padding-top: 2px
}
.elementor-templates-modal__header__items-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}
.elementor-templates-modal__header__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}
.elementor-templates-modal__header__item > i {
  font-size: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer
}
.elementor-templates-modal__header__item > i:not(:hover) {
  color: #a4afb7
}
.elementor-templates-modal__header__close--normal {
  width: 47px;
  border-left: 1px solid #e6e9ec
}
.elementor-templates-modal__header__close--normal i {
  font-size: 18px
}
.elementor-templates-modal__header__close--skip {
  padding: 10px 10px 10px 20px;
  margin-right: 10px;
  color: #fff;
  background-color: #a4afb7;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer
}
.elementor-templates-modal__header__close--skip > i {
  font-size: inherit;
  padding-left: 10px;
  margin-left: 15px;
  border-left: 1px solid
}
.elementor-templates-modal__header__close--skip > i:not(:hover) {
  color: #fff
}
.elementor-templates-modal__sidebar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 25%;
  background-color: hsla(0, 0%, 100%, .3)
}
.elementor-templates-modal__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-shadow: 0 0 13px inset rgba(0, 0, 0, .05);
  box-shadow: inset 0 0 13px rgba(0, 0, 0, .05)
}
#wpadminbar #wp-admin-bar-elementor_edit_page .elementor-general-section + .elementor-second-section {
  border-top: 1px solid #464b50;
  margin-top: 6px
}
.elementor-hidden {
  display: none
}
.elementor-screen-only, .screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible {
  position: absolute;
  top: -10000em;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}
.elementor-clearfix:after {
  content: "";
  display: block;
  clear: both;
  width: 0;
  height: 0
}
.e-logo-wrapper {
  background: #93003c;
  display: inline-block;
  padding: .75em;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  line-height: 1
}
.e-logo-wrapper i {
  color: #fff;
  font-size: 1em
}
.elementor {
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual
}
.elementor *, .elementor :after, .elementor :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
.elementor a {
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none
}
.elementor hr {
  margin: 0;
  background-color: transparent
}
.elementor img {
  height: auto;
  max-width: 100%;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none
}
.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure {
  margin: 0
}
.elementor embed, .elementor iframe, .elementor object, .elementor video {
  max-width: 100%;
  width: 100%;
  margin: 0;
  line-height: 1;
  border: none
}
.elementor .elementor-custom-embed {
  line-height: 0
}
.elementor .elementor-background, .elementor .elementor-background-holder, .elementor .elementor-background-video-container {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  direction: ltr
}
.elementor .elementor-background-video-container {
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  pointer-events: none
}
.elementor .elementor-background-video-container.elementor-loading {
  opacity: 0
}
.elementor .elementor-background-video-embed {
  max-width: none
}
.elementor .elementor-background-video, .elementor .elementor-background-video-embed, .elementor .elementor-background-video-hosted {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}
.elementor .elementor-background-video {
  max-width: none
}
.elementor .elementor-html5-video {
  -o-object-fit: cover;
  object-fit: cover
}
.elementor .elementor-background-overlay, .elementor .elementor-background-slideshow {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute
}
.elementor .elementor-background-slideshow {
  z-index: 0
}
.elementor .elementor-background-slideshow__slide__image {
  width: 100%;
  height: 100%;
  background-position: 50%;
  -webkit-background-size: cover;
  background-size: cover
}
.elementor-widget-wrap > .elementor-element.elementor-absolute {
  position: absolute
}
.elementor-widget-wrap > .elementor-element.elementor-fixed {
  position: fixed
}
.elementor-widget-wrap .elementor-element.elementor-widget__width-auto, .elementor-widget-wrap .elementor-element.elementor-widget__width-initial {
  max-width: 100%
}
@media (max-width:1024px) {
  .elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto, .elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial {
    max-width: 100%
  }
}
@media (max-width:767px) {
  .elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto, .elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial {
    max-width: 100%
  }
}
.elementor-element.elementor-absolute, .elementor-element.elementor-fixed {
  z-index: 1
}
.elementor-invisible {
  visibility: hidden
}
.elementor-align-center {
  text-align: center
}
.elementor-align-center .elementor-button {
  width: auto
}
.elementor-align-right {
  text-align: right
}
.elementor-align-right .elementor-button {
  width: auto
}
.elementor-align-left {
  text-align: left
}
.elementor-align-left .elementor-button {
  width: auto
}
.elementor-align-justify .elementor-button {
  width: 100%
}
.elementor-custom-embed-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}
.elementor-custom-embed-play i {
  font-size: 100px;
  color: #fff;
  opacity: .8;
  text-shadow: 1px 0 6px rgba(0, 0, 0, .3);
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s
}
.elementor-custom-embed-play.elementor-playing i {
  font-family: eicons;
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite
}
.elementor-custom-embed-play.elementor-playing i:before {
  content: "\e8fb"
}
.elementor-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex
}
.elementor-ken-burns {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 10s;
  -o-transition-duration: 10s;
  transition-duration: 10s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear
}
.elementor-ken-burns--out {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3)
}
.elementor-ken-burns--active {
  -webkit-transition-duration: 20s;
  -o-transition-duration: 20s;
  transition-duration: 20s
}
.elementor-ken-burns--active.elementor-ken-burns--out {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}
.elementor-ken-burns--active.elementor-ken-burns--in {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3)
}
@media (max-width:1024px) {
  .elementor-tablet-align-center {
    text-align: center
  }
  .elementor-tablet-align-center .elementor-button {
    width: auto
  }
  .elementor-tablet-align-right {
    text-align: right
  }
  .elementor-tablet-align-right .elementor-button {
    width: auto
  }
  .elementor-tablet-align-left {
    text-align: left
  }
  .elementor-tablet-align-left .elementor-button {
    width: auto
  }
  .elementor-tablet-align-justify .elementor-button {
    width: 100%
  }
}
@media (max-width:767px) {
  .elementor-mobile-align-center {
    text-align: center
  }
  .elementor-mobile-align-center .elementor-button {
    width: auto
  }
  .elementor-mobile-align-right {
    text-align: right
  }
  .elementor-mobile-align-right .elementor-button {
    width: auto
  }
  .elementor-mobile-align-left {
    text-align: left
  }
  .elementor-mobile-align-left .elementor-button {
    width: auto
  }
  .elementor-mobile-align-justify .elementor-button {
    width: 100%
  }
}
#wpadminbar #wp-admin-bar-elementor_edit_page > .ab-item:before {
  content: "\e813";
  font-family: eicons;
  top: 3px;
  font-size: 18px
}
#wpadminbar #wp-admin-bar-elementor_inspector > .ab-item:before {
  content: "\f348";
  top: 2px
}
:root {
  --page-title-display: block
}
.elementor-page-title, h1.entry-title {
  display: var(--page-title-display)
}
.elementor-section {
  position: relative
}
.elementor-section .elementor-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative
}
@media (max-width:1024px) {
  .elementor-section .elementor-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1140px
}
.elementor-section.elementor-section-stretched {
  position: relative;
  width: 100%
}
.elementor-section.elementor-section-items-top > .elementor-container {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}
.elementor-section.elementor-section-items-middle > .elementor-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.elementor-section.elementor-section-items-bottom > .elementor-container {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}
@media (min-width:768px) {
  .elementor-section.elementor-section-height-full {
    height: 100vh
  }
  .elementor-section.elementor-section-height-full > .elementor-container {
    height: 100%
  }
}
.elementor-bc-flex-widget .elementor-section-content-top > .elementor-container > .elementor-column > .elementor-widget-wrap {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}
.elementor-bc-flex-widget .elementor-section-content-middle > .elementor-container > .elementor-column > .elementor-widget-wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.elementor-bc-flex-widget .elementor-section-content-bottom > .elementor-container > .elementor-column > .elementor-widget-wrap {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}
.elementor-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
@media (max-width:1024px) {
  .elementor-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}
.elementor-widget-wrap {
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start
}
.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.elementor-widget-wrap > .elementor-element {
  width: 100%
}
.elementor-widget {
  position: relative
}
.elementor-widget:not(:last-child) {
  margin-bottom: 20px
}
.elementor-widget:not(:last-child).elementor-absolute, .elementor-widget:not(:last-child).elementor-widget__width-auto, .elementor-widget:not(:last-child).elementor-widget__width-initial {
  margin-bottom: 0
}
.elementor-column {
  min-height: 1px
}
.elementor-column, .elementor-column-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.elementor-column-wrap {
  width: 100%
}
.elementor-column-gap-narrow > .elementor-column > .elementor-element-populated {
  padding: 5px
}
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0 10px
}
.elementor-column-gap-extended > .elementor-column > .elementor-element-populated {
  padding: 15px
}
.elementor-column-gap-wide > .elementor-column > .elementor-element-populated {
  padding: 20px
}
.elementor-column-gap-wider > .elementor-column > .elementor-element-populated {
  padding: 30px
}
.elementor-inner-section .elementor-column-gap-no .elementor-element-populated {
  padding: 0
}
@media (min-width:768px) {
  .elementor-column.elementor-col-10, .elementor-column[data-col="10"] {
    width: 10%
  }
  .elementor-column.elementor-col-11, .elementor-column[data-col="11"] {
    width: 11.111%
  }
  .elementor-column.elementor-col-12, .elementor-column[data-col="12"] {
    width: 12.5%
  }
  .elementor-column.elementor-col-14, .elementor-column[data-col="14"] {
    width: 14.285%
  }
  .elementor-column.elementor-col-16, .elementor-column[data-col="16"] {
    width: 16.666%
  }
  .elementor-column.elementor-col-20, .elementor-column[data-col="20"] {
    width: 20%
  }
  .elementor-column.elementor-col-25, .elementor-column[data-col="25"] {
    width: 25%
  }
  .elementor-column.elementor-col-30, .elementor-column[data-col="30"] {
    width: 30%
  }
  .elementor-column.elementor-col-33, .elementor-column[data-col="33"] {
    width: 33.333%
  }
  .elementor-column.elementor-col-40, .elementor-column[data-col="40"] {
    width: 40%
  }
  .elementor-column.elementor-col-50, .elementor-column[data-col="50"] {
    width: 50%
  }
  .elementor-column.elementor-col-60, .elementor-column[data-col="60"] {
    width: 60%
  }
  .elementor-column.elementor-col-66, .elementor-column[data-col="66"] {
    width: 66.666%
  }
  .elementor-column.elementor-col-70, .elementor-column[data-col="70"] {
    width: 70%
  }
  .elementor-column.elementor-col-75, .elementor-column[data-col="75"] {
    width: 75%
  }
  .elementor-column.elementor-col-80, .elementor-column[data-col="80"] {
    width: 80%
  }
  .elementor-column.elementor-col-83, .elementor-column[data-col="83"] {
    width: 83.333%
  }
  .elementor-column.elementor-col-90, .elementor-column[data-col="90"] {
    width: 90%
  }
  .elementor-column.elementor-col-100, .elementor-column[data-col="100"] {
    width: 100%
  }
}
@media (max-width:479px) {
  .elementor-column.elementor-xs-10 {
    width: 10%
  }
  .elementor-column.elementor-xs-11 {
    width: 11.111%
  }
  .elementor-column.elementor-xs-12 {
    width: 12.5%
  }
  .elementor-column.elementor-xs-14 {
    width: 14.285%
  }
  .elementor-column.elementor-xs-16 {
    width: 16.666%
  }
  .elementor-column.elementor-xs-20 {
    width: 20%
  }
  .elementor-column.elementor-xs-25 {
    width: 25%
  }
  .elementor-column.elementor-xs-30 {
    width: 30%
  }
  .elementor-column.elementor-xs-33 {
    width: 33.333%
  }
  .elementor-column.elementor-xs-40 {
    width: 40%
  }
  .elementor-column.elementor-xs-50 {
    width: 50%
  }
  .elementor-column.elementor-xs-60 {
    width: 60%
  }
  .elementor-column.elementor-xs-66 {
    width: 66.666%
  }
  .elementor-column.elementor-xs-70 {
    width: 70%
  }
  .elementor-column.elementor-xs-75 {
    width: 75%
  }
  .elementor-column.elementor-xs-80 {
    width: 80%
  }
  .elementor-column.elementor-xs-83 {
    width: 83.333%
  }
  .elementor-column.elementor-xs-90 {
    width: 90%
  }
  .elementor-column.elementor-xs-100 {
    width: 100%
  }
}
@media (max-width:767px) {
  .elementor-column.elementor-sm-10 {
    width: 10%
  }
  .elementor-column.elementor-sm-11 {
    width: 11.111%
  }
  .elementor-column.elementor-sm-12 {
    width: 12.5%
  }
  .elementor-column.elementor-sm-14 {
    width: 14.285%
  }
  .elementor-column.elementor-sm-16 {
    width: 16.666%
  }
  .elementor-column.elementor-sm-20 {
    width: 20%
  }
  .elementor-column.elementor-sm-25 {
    width: 25%
  }
  .elementor-column.elementor-sm-30 {
    width: 30%
  }
  .elementor-column.elementor-sm-33 {
    width: 33.333%
  }
  .elementor-column.elementor-sm-40 {
    width: 40%
  }
  .elementor-column.elementor-sm-50 {
    width: 50%
  }
  .elementor-column.elementor-sm-60 {
    width: 60%
  }
  .elementor-column.elementor-sm-66 {
    width: 66.666%
  }
  .elementor-column.elementor-sm-70 {
    width: 70%
  }
  .elementor-column.elementor-sm-75 {
    width: 75%
  }
  .elementor-column.elementor-sm-80 {
    width: 80%
  }
  .elementor-column.elementor-sm-83 {
    width: 83.333%
  }
  .elementor-column.elementor-sm-90 {
    width: 90%
  }
  .elementor-column.elementor-sm-100 {
    width: 100%
  }
}
@media (min-width:768px) and (max-width:1024px) {
  .elementor-column.elementor-md-10 {
    width: 10%
  }
  .elementor-column.elementor-md-11 {
    width: 11.111%
  }
  .elementor-column.elementor-md-12 {
    width: 12.5%
  }
  .elementor-column.elementor-md-14 {
    width: 14.285%
  }
  .elementor-column.elementor-md-16 {
    width: 16.666%
  }
  .elementor-column.elementor-md-20 {
    width: 20%
  }
  .elementor-column.elementor-md-25 {
    width: 25%
  }
  .elementor-column.elementor-md-30 {
    width: 30%
  }
  .elementor-column.elementor-md-33 {
    width: 33.333%
  }
  .elementor-column.elementor-md-40 {
    width: 40%
  }
  .elementor-column.elementor-md-50 {
    width: 50%
  }
  .elementor-column.elementor-md-60 {
    width: 60%
  }
  .elementor-column.elementor-md-66 {
    width: 66.666%
  }
  .elementor-column.elementor-md-70 {
    width: 70%
  }
  .elementor-column.elementor-md-75 {
    width: 75%
  }
  .elementor-column.elementor-md-80 {
    width: 80%
  }
  .elementor-column.elementor-md-83 {
    width: 83.333%
  }
  .elementor-column.elementor-md-90 {
    width: 90%
  }
  .elementor-column.elementor-md-100 {
    width: 100%
  }
}
@media (min-width:768px) and (max-width:1024px) {
  .elementor-reverse-tablet > .elementor-container > :first-child {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(2) {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(3) {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(4) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(5) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(6) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(7) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(8) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(9) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }
  .elementor-reverse-tablet > .elementor-container > :nth-child(10) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }
}
@media (max-width:767px) {
  .elementor-reverse-mobile > .elementor-container > :first-child {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(2) {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(3) {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(4) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(5) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(6) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(7) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(8) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(9) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }
  .elementor-reverse-mobile > .elementor-container > :nth-child(10) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }
  .elementor-column {
    width: 100%
  }
}
ul.elementor-icon-list-items.elementor-inline-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
ul.elementor-icon-list-items.elementor-inline-items .elementor-inline-item {
  word-break: break-word
}
.elementor-grid {
  display: grid;
  grid-column-gap: var(--grid-column-gap);
  grid-row-gap: var(--grid-row-gap)
}
.elementor-grid .elementor-grid-item {
  min-width: 0
}
.elementor-grid-0 .elementor-grid {
  display: inline-block;
  width: 100%;
  word-spacing: var(--grid-column-gap);
  margin-bottom: calc(-1 * var(--grid-row-gap))
}
.elementor-grid-0 .elementor-grid .elementor-grid-item {
  display: inline-block;
  margin-bottom: var(--grid-row-gap);
  word-break: break-word
}
.elementor-grid-1 .elementor-grid {
  grid-template-columns: repeat(1, 1fr)
}
.elementor-grid-2 .elementor-grid {
  grid-template-columns: repeat(2, 1fr)
}
.elementor-grid-3 .elementor-grid {
  grid-template-columns: repeat(3, 1fr)
}
.elementor-grid-4 .elementor-grid {
  grid-template-columns: repeat(4, 1fr)
}
.elementor-grid-5 .elementor-grid {
  grid-template-columns: repeat(5, 1fr)
}
.elementor-grid-6 .elementor-grid {
  grid-template-columns: repeat(6, 1fr)
}
.elementor-grid-7 .elementor-grid {
  grid-template-columns: repeat(7, 1fr)
}
.elementor-grid-8 .elementor-grid {
  grid-template-columns: repeat(8, 1fr)
}
.elementor-grid-9 .elementor-grid {
  grid-template-columns: repeat(9, 1fr)
}
.elementor-grid-10 .elementor-grid {
  grid-template-columns: repeat(10, 1fr)
}
.elementor-grid-11 .elementor-grid {
  grid-template-columns: repeat(11, 1fr)
}
.elementor-grid-12 .elementor-grid {
  grid-template-columns: repeat(12, 1fr)
}
@media (max-width:1024px) {
  .elementor-grid-tablet-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }
  .elementor-grid-tablet-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }
  .elementor-grid-tablet-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }
  .elementor-grid-tablet-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .elementor-grid-tablet-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .elementor-grid-tablet-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }
  .elementor-grid-tablet-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }
  .elementor-grid-tablet-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }
  .elementor-grid-tablet-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }
  .elementor-grid-tablet-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }
  .elementor-grid-tablet-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }
  .elementor-grid-tablet-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }
  .elementor-grid-tablet-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }
  .elementor-grid-tablet-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}
@media (max-width:767px) {
  .elementor-grid-mobile-0 .elementor-grid {
    display: inline-block;
    width: 100%;
    word-spacing: var(--grid-column-gap);
    margin-bottom: calc(-1 * var(--grid-row-gap))
  }
  .elementor-grid-mobile-0 .elementor-grid .elementor-grid-item {
    display: inline-block;
    margin-bottom: var(--grid-row-gap);
    word-break: break-word
  }
  .elementor-grid-mobile-1 .elementor-grid {
    grid-template-columns: repeat(1, 1fr)
  }
  .elementor-grid-mobile-2 .elementor-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .elementor-grid-mobile-3 .elementor-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .elementor-grid-mobile-4 .elementor-grid {
    grid-template-columns: repeat(4, 1fr)
  }
  .elementor-grid-mobile-5 .elementor-grid {
    grid-template-columns: repeat(5, 1fr)
  }
  .elementor-grid-mobile-6 .elementor-grid {
    grid-template-columns: repeat(6, 1fr)
  }
  .elementor-grid-mobile-7 .elementor-grid {
    grid-template-columns: repeat(7, 1fr)
  }
  .elementor-grid-mobile-8 .elementor-grid {
    grid-template-columns: repeat(8, 1fr)
  }
  .elementor-grid-mobile-9 .elementor-grid {
    grid-template-columns: repeat(9, 1fr)
  }
  .elementor-grid-mobile-10 .elementor-grid {
    grid-template-columns: repeat(10, 1fr)
  }
  .elementor-grid-mobile-11 .elementor-grid {
    grid-template-columns: repeat(11, 1fr)
  }
  .elementor-grid-mobile-12 .elementor-grid {
    grid-template-columns: repeat(12, 1fr)
  }
}
@media (min-width:1025px) {
  #elementor-device-mode:after {
    content: "desktop"
  }
}
@media (min-width:768px) and (max-width:1024px) {
  #elementor-device-mode:after {
    content: "tablet"
  }
}
@media (max-width:767px) {
  #elementor-device-mode:after {
    content: "mobile"
  }
}
[class*=" eicon-"], [class^=eicon] {
  display: inline-block;
  font-family: eicons;
  font-size: inherit;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
@-webkit-keyframes eicon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg)
  }
}
@keyframes eicon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg)
  }
}
.eicon-animation-spin {
  -webkit-animation: eicon-spin 2s linear infinite;
  animation: eicon-spin 2s linear infinite
}
.eicon-loading:before {
  content: "\e8fb"
}
.eicon-menu-bar:before {
  content: "\e816"
}
.eicon-chevron-right:before {
  content: "\e87d"
}
.eicon-chevron-left:before {
  content: "\e87e"
}
.eicon-close:before {
  content: "\e87f"
}
.eicon-share-arrow:before {
  content: "\e96c"
}
.eicon-zoom-in:before {
  content: "\e882"
}
.eicon-zoom-in-bold:before {
  content: "\e92e"
}
.eicon-zoom-out-bold:before {
  content: "\e943"
}
.eicon-frame-expand:before {
  content: "\e95c"
}
.eicon-frame-minimize:before {
  content: "\e95d"
}
.eicon-play:before {
  content: "\e89d"
}
.eicon-facebook:before {
  content: "\e959"
}
.eicon-twitter:before {
  content: "\e95a"
}
.eicon-pinterest:before {
  content: "\e95b"
}
.eicon-download-bold:before {
  content: "\e96b"
}
.eicon-caret-down:before {
  content: "\e92a"
}
.elementor-form-fields-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup, .elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group > .elementor-select-wrapper, .elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group > input, .elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group > textarea {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%
}
.elementor-form-fields-wrapper.elementor-labels-inline > .elementor-field-group .elementor-select-wrapper, .elementor-form-fields-wrapper.elementor-labels-inline > .elementor-field-group > input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}
.elementor-field-group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.elementor-field-group.elementor-field-type-submit {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}
.elementor-field-group .elementor-field-textual {
  width: 100%;
  max-width: 100%;
  border: 1px solid #818a91;
  background-color: transparent;
  color: #373a3c;
  vertical-align: middle;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}
.elementor-field-group .elementor-field-textual:focus {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1) inset;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  outline: 0
}
.elementor-field-group .elementor-field-textual::-webkit-input-placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}
.elementor-field-group .elementor-field-textual:-ms-input-placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}
.elementor-field-group .elementor-field-textual:-moz-placeholder, .elementor-field-group .elementor-field-textual::-moz-placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}
.elementor-field-group .elementor-field-textual::-ms-input-placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}
.elementor-field-group .elementor-field-textual::placeholder {
  color: inherit;
  font-family: inherit;
  opacity: .6
}
.elementor-field-group .elementor-select-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%
}
.elementor-field-group .elementor-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-right: 20px
}
.elementor-field-group .elementor-select-wrapper:before {
  content: "\e92a";
  font-family: eicons;
  font-size: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  pointer-events: none;
  text-shadow: 0 0 3px rgba(0, 0, 0, .3)
}
.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before {
  content: ""
}
.elementor-field-subgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.elementor-field-subgroup .elementor-field-option label {
  display: inline-block
}
.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option {
  padding-right: 10px
}
.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%
}
.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input, .elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label, .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input, .elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label, .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input, .elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label {
  display: inline
}
.elementor-field-label {
  cursor: pointer
}
.elementor-mark-required .elementor-field-label:after {
  content: "*";
  color: red;
  padding-left: .2em
}
.elementor-field-textual {
  line-height: 1.4;
  font-size: 15px;
  min-height: 40px;
  padding: 5px 14px;
  -webkit-border-radius: 3px;
  border-radius: 3px
}
.elementor-field-textual.elementor-size-xs {
  font-size: 13px;
  min-height: 33px;
  padding: 4px 12px;
  -webkit-border-radius: 2px;
  border-radius: 2px
}
.elementor-field-textual.elementor-size-md {
  font-size: 16px;
  min-height: 47px;
  padding: 6px 16px;
  -webkit-border-radius: 4px;
  border-radius: 4px
}
.elementor-field-textual.elementor-size-lg {
  font-size: 18px;
  min-height: 59px;
  padding: 7px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px
}
.elementor-field-textual.elementor-size-xl {
  font-size: 20px;
  min-height: 72px;
  padding: 8px 24px;
  -webkit-border-radius: 6px;
  border-radius: 6px
}
.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%
}
.elementor-button-align-stretch .e-form__buttons__wrapper {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}
.elementor-button-align-stretch .e-form__buttons__wrapper__button {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%
}
.elementor-button-align-center .e-form__buttons, .elementor-button-align-center .elementor-field-type-submit {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.elementor-button-align-start .e-form__buttons, .elementor-button-align-start .elementor-field-type-submit {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}
.elementor-button-align-end .e-form__buttons, .elementor-button-align-end .elementor-field-type-submit {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
  -ms-flex-preferred-size: initial;
  flex-basis: auto
}
.elementor-button-align-center .e-form__buttons__wrapper, .elementor-button-align-end .e-form__buttons__wrapper, .elementor-button-align-start .e-form__buttons__wrapper {
  -webkit-box-flex: initial;
  -ms-flex-positive: initial;
  flex-grow: 0
}
.elementor-button-align-center .e-form__buttons__wrapper, .elementor-button-align-center .e-form__buttons__wrapper__button, .elementor-button-align-end .e-form__buttons__wrapper, .elementor-button-align-end .e-form__buttons__wrapper__button, .elementor-button-align-start .e-form__buttons__wrapper, .elementor-button-align-start .e-form__buttons__wrapper__button {
  -ms-flex-preferred-size: initial;
  flex-basis: auto
}
@media screen and (max-width:1024px) {
  .elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
  }
  .elementor-tablet-button-align-stretch .e-form__buttons__wrapper {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
  }
  .elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
  }
  .elementor-tablet-button-align-center .e-form__buttons, .elementor-tablet-button-align-center .elementor-field-type-submit {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .elementor-tablet-button-align-start .e-form__buttons, .elementor-tablet-button-align-start .elementor-field-type-submit {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .elementor-tablet-button-align-end .e-form__buttons, .elementor-tablet-button-align-end .elementor-field-type-submit {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    -ms-flex-preferred-size: initial;
    flex-basis: auto
  }
  .elementor-tablet-button-align-center .e-form__buttons__wrapper, .elementor-tablet-button-align-end .e-form__buttons__wrapper, .elementor-tablet-button-align-start .e-form__buttons__wrapper {
    -webkit-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: 0
  }
  .elementor-tablet-button-align-center .e-form__buttons__wrapper, .elementor-tablet-button-align-center .e-form__buttons__wrapper__button, .elementor-tablet-button-align-end .e-form__buttons__wrapper, .elementor-tablet-button-align-end .e-form__buttons__wrapper__button, .elementor-tablet-button-align-start .e-form__buttons__wrapper, .elementor-tablet-button-align-start .e-form__buttons__wrapper__button {
    -ms-flex-preferred-size: initial;
    flex-basis: auto
  }
}
@media screen and (max-width:767px) {
  .elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
  }
  .elementor-mobile-button-align-stretch .e-form__buttons__wrapper {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
  }
  .elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
  }
  .elementor-mobile-button-align-center .e-form__buttons, .elementor-mobile-button-align-center .elementor-field-type-submit {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .elementor-mobile-button-align-start .e-form__buttons, .elementor-mobile-button-align-start .elementor-field-type-submit {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .elementor-mobile-button-align-end .e-form__buttons, .elementor-mobile-button-align-end .elementor-field-type-submit {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button, .elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button {
    -ms-flex-preferred-size: initial;
    flex-basis: auto
  }
  .elementor-mobile-button-align-center .e-form__buttons__wrapper, .elementor-mobile-button-align-end .e-form__buttons__wrapper, .elementor-mobile-button-align-start .e-form__buttons__wrapper {
    -webkit-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: 0
  }
  .elementor-mobile-button-align-center .e-form__buttons__wrapper, .elementor-mobile-button-align-center .e-form__buttons__wrapper__button, .elementor-mobile-button-align-end .e-form__buttons__wrapper, .elementor-mobile-button-align-end .e-form__buttons__wrapper__button, .elementor-mobile-button-align-start .e-form__buttons__wrapper, .elementor-mobile-button-align-start .e-form__buttons__wrapper__button {
    -ms-flex-preferred-size: initial;
    flex-basis: auto
  }
}
.elementor-error .elementor-field {
  border-color: #d9534f
}
.elementor-error .help-inline {
  color: #d9534f;
  font-size: .9em
}
.elementor-message {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1
}
.elementor-message:before {
  content: "\e90e";
  display: inline-block;
  font-family: eicons;
  font-weight: 400;
  font-style: normal;
  vertical-align: middle;
  margin-right: 5px
}
.elementor-message.elementor-message-danger {
  color: #d9534f
}
.elementor-message.elementor-message-danger:before {
  content: "\e87f"
}
.elementor-message.form-message-success {
  color: #5cb85c
}
.elementor-form .elementor-button {
  padding-top: 0;
  padding-bottom: 0;
  border: none
}
.elementor-form .elementor-button > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.elementor-form .elementor-button.elementor-size-xs {
  min-height: 33px
}
.elementor-form .elementor-button.elementor-size-sm {
  min-height: 40px
}
.elementor-form .elementor-button.elementor-size-md {
  min-height: 47px
}
.elementor-form .elementor-button.elementor-size-lg {
  min-height: 59px
}
.elementor-form .elementor-button.elementor-size-xl {
  min-height: 72px
}
.slick-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent
}
.slick-list, .slick-slider {
  position: relative;
  display: block
}
.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0
}
.slick-list:focus {
  outline: none
}
.slick-list.dragging {
  cursor: pointer
}
.slick-slider .slick-list, .slick-slider .slick-track {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block
}
.slick-track:after, .slick-track:before {
  content: "";
  display: table
}
.slick-track:after {
  clear: both
}
.slick-loading .slick-track {
  visibility: hidden
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none
}
.elementor-slick-slider[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
}
.elementor-slick-slider .slick-loading .slick-list {
  background: #fff
}
.elementor-slick-slider .slick-loading .slick-list:after {
  content: "\e8fb";
  font-family: eicons;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
  font-size: 25px;
  color: #a4afb7
}
.elementor-slick-slider .slick-next, .elementor-slick-slider .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  padding: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent
}
.elementor-slick-slider .slick-next:focus, .elementor-slick-slider .slick-next:hover, .elementor-slick-slider .slick-prev:focus, .elementor-slick-slider .slick-prev:hover {
  color: transparent;
  outline: none;
  background: transparent
}
.elementor-slick-slider .slick-next:focus:before, .elementor-slick-slider .slick-next:hover:before, .elementor-slick-slider .slick-prev:focus:before, .elementor-slick-slider .slick-prev:hover:before {
  opacity: 1
}
.elementor-slick-slider .slick-next.slick-disabled:before, .elementor-slick-slider .slick-prev.slick-disabled:before {
  opacity: .25
}
.elementor-slick-slider .slick-next:before, .elementor-slick-slider .slick-prev:before {
  font-family: eicons;
  font-size: 35px;
  line-height: 1;
  opacity: .75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.elementor-slick-slider .slick-prev {
  left: -25px
}
[dir=rtl] .elementor-slick-slider .slick-prev {
  left: auto;
  right: -25px
}
.elementor-slick-slider .slick-prev:before {
  content: "\e89f"
}
[dir=rtl] .elementor-slick-slider .slick-prev:before {
  content: "\e89e"
}
.elementor-slick-slider .slick-next {
  right: -25px
}
[dir=rtl] .elementor-slick-slider .slick-next {
  left: -25px;
  right: auto
}
.elementor-slick-slider .slick-next:before {
  content: "\e89e"
}
[dir=rtl] .elementor-slick-slider .slick-next:before {
  content: "\e89f"
}
.elementor-slick-slider .slick-dotted.slick-slider {
  margin-bottom: 30px
}
.elementor-slick-slider ul.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1
}
.elementor-slick-slider ul.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer
}
.elementor-slick-slider ul.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent
}
.elementor-slick-slider ul.slick-dots li button:focus, .elementor-slick-slider ul.slick-dots li button:hover {
  outline: none
}
.elementor-slick-slider ul.slick-dots li button:focus:before, .elementor-slick-slider ul.slick-dots li button:hover:before {
  opacity: 1
}
.elementor-slick-slider ul.slick-dots li button:before {
  font-family: eicons;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "\e914";
  text-align: center;
  opacity: .25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.elementor-slick-slider ul.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #000
}
.elementor-slick-slider .slick-arrows-inside .slick-prev {
  left: 20px
}
[dir=rtl] .elementor-slick-slider .slick-arrows-inside .slick-prev {
  left: auto;
  right: 20px
}
.elementor-slick-slider .slick-arrows-inside .slick-next {
  right: 20px
}
[dir=rtl] .elementor-slick-slider .slick-arrows-inside .slick-next {
  left: 20px;
  right: auto
}
.elementor-slick-slider .slick-dots-inside .slick-dots {
  bottom: 5px
}
.elementor-slick-slider .slick-dots-inside.slick-dotted.slick-slider {
  margin-bottom: 0
}
.elementor-slick-slider .slick-slider .slick-next, .elementor-slick-slider .slick-slider .slick-prev {
  z-index: 1
}
.elementor-slick-slider .slick-slide img {
  margin: auto
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1
}
.swiper-container .swiper-slide figure {
  line-height: 0
}
.swiper-container .elementor-lightbox-content-source {
  display: none
}
.swiper-container-no-flexbox .swiper-slide {
  float: left
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}
.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto
}
.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative
}
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000
}
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background: no-repeat 50%
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
  left: 10px;
  right: auto
}
.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}
.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
  right: 10px;
  left: auto
}
.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}
.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 5px;
  left: 0;
  width: 100%
}
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: inline-block;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #000;
  opacity: .2
}
.swiper-pagination-fraction {
  color: #000
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff
}
.swiper-pagination-bullet-active {
  opacity: 1
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0)
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top
}
.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0
}
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: hsla(0, 0%, 100%, .5)
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px
}
.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d
}
.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), transparent);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}
.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px
}
.swiper-container-cube, .swiper-container-flip {
  overflow: visible
}
.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
  pointer-events: none;
  z-index: 1
}
.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0
}
.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none
}
.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: 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%;
  -o-object-fit: contain;
  object-fit: contain
}
.swiper-scrollbar {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1)
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%
}
.swiper-container-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);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  left: 0;
  top: 0
}
.swiper-scrollbar-cursor-drag {
  cursor: move
}
.elementor-pagination-position-outside .swiper-container {
  padding-bottom: 30px
}
.elementor-pagination-position-outside .elementor-swiper-button {
  top: calc(50% - 30px / 2)
}
.elementor-swiper {
  position: relative
}
.elementor-main-swiper {
  position: static
}
.elementor-arrows-position-outside .swiper-container {
  width: calc(100% - 60px)
}
.elementor-arrows-position-outside .elementor-swiper-button-prev {
  left: 0
}
.elementor-arrows-position-outside .elementor-swiper-button-next {
  right: 0
}
.swiper-image-stretch .swiper-slide .swiper-slide-image {
  width: 100%
}
.elementor-swiper-button {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  z-index: 1;
  cursor: pointer;
  font-size: 25px;
  color: hsla(0, 0%, 93.3%, .9);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}
.elementor-swiper-button-prev {
  left: 10px
}
.elementor-swiper-button-next {
  right: 10px
}
.elementor-swiper-button.swiper-button-disabled {
  opacity: .3
}
.swiper-container-cube .elementor-swiper-button {
  -webkit-transform: translate3d(0, -50%, 1px);
  transform: translate3d(0, -50%, 1px)
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
  animation: swiper-preloader-spin 1s steps(12) infinite
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-background-size: 100% 100%;
  background-size: 100%;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E") no-repeat 50%
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}
@-webkit-keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}
@keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}
.elementor-lightbox {
  --lightbox-ui-color: hsla(0, 0%, 93.3%, 0.9);
  --lightbox-ui-color-hover: #fff;
  --lightbox-text-color: var(--lightbox-ui-color);
  --lightbox-header-icons-size: 20px;
  --lightbox-navigation-icons-size: 25px
}
.elementor-lightbox .dialog-header {
  display: none
}
.elementor-lightbox .dialog-widget-content {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  height: 100%
}
.elementor-lightbox .dialog-message {
  -webkit-animation-duration: .3s;
  animation-duration: .3s
}
.elementor-lightbox .dialog-message:not(.elementor-fit-aspect-ratio) {
  height: 100%
}
.elementor-lightbox .dialog-message.dialog-lightbox-message {
  padding: 0
}
.elementor-lightbox .dialog-lightbox-close-button {
  cursor: pointer;
  position: absolute;
  font-size: var(--lightbox-header-icons-size);
  right: .75em;
  margin-top: 13px;
  padding: .25em;
  z-index: 2;
  line-height: 1
}
.elementor-lightbox .dialog-lightbox-close-button, .elementor-lightbox .elementor-swiper-button {
  color: var(--lightbox-ui-color);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  opacity: 1
}
.elementor-lightbox .dialog-lightbox-close-button:hover, .elementor-lightbox .elementor-swiper-button:hover {
  color: var(--lightbox-ui-color-hover)
}
.elementor-lightbox .swiper-container {
  height: 100%
}
.elementor-lightbox .elementor-lightbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  margin: auto
}
@media (max-width:767px) {
  .elementor-lightbox .elementor-lightbox-item {
    padding: 70px 0
  }
}
.elementor-lightbox .elementor-lightbox-image {
  max-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.elementor-lightbox .elementor-lightbox-image, .elementor-lightbox .elementor-lightbox-image:hover {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
  border: none
}
.elementor-lightbox .elementor-lightbox-image, .elementor-lightbox .elementor-video-container {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .3), 0 0 8px -5px rgba(0, 0, 0, .3);
  box-shadow: 0 0 30px rgba(0, 0, 0, .3), 0 0 8px -5px rgba(0, 0, 0, .3);
  -webkit-border-radius: 2px;
  border-radius: 2px
}
.elementor-lightbox .elementor-video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}
@media (min-width:1025px) {
  .elementor-lightbox .elementor-video-container {
    width: 75%
  }
}
@media (max-width:1024px) {
  .elementor-lightbox .elementor-video-container {
    width: 100%
  }
}
@media (min-width:768px) and (max-width:1024px) {
  .elementor-lightbox .elementor-aspect-ratio-916 .elementor-video-container {
    width: 70%
  }
}
.elementor-lightbox .elementor-swiper-button:focus {
  outline-width: 1px
}
.elementor-lightbox .elementor-swiper-button-next, .elementor-lightbox .elementor-swiper-button-prev {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 15%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: var(--lightbox-navigation-icons-size)
}
.elementor-lightbox .elementor-swiper-button-prev {
  left: 0
}
.elementor-lightbox .elementor-swiper-button-next {
  right: 0
}
@media (max-width:767px) {
  .elementor-lightbox .elementor-swiper-button:focus {
    outline: none
  }
  .elementor-lightbox .elementor-swiper-button-next, .elementor-lightbox .elementor-swiper-button-prev {
    width: 20%
  }
  .elementor-lightbox .elementor-swiper-button-next i, .elementor-lightbox .elementor-swiper-button-prev i {
    padding: 10px;
    background-color: rgba(0, 0, 0, .5)
  }
  .elementor-lightbox .elementor-swiper-button-prev {
    left: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .elementor-lightbox .elementor-swiper-button-next {
    right: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
}
.elementor-slideshow__counter {
  color: currentColor;
  font-size: .75em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content
}
.elementor-slideshow__footer, .elementor-slideshow__header {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s
}
.elementor-slideshow__footer {
  color: var(--lightbox-text-color)
}
.elementor-slideshow__header {
  color: var(--lightbox-ui-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-size: var(--lightbox-header-icons-size);
  padding-left: 1em;
  padding-right: 2.6em;
  top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10
}
.elementor-slideshow__header > i {
  font-size: inherit;
  cursor: pointer;
  padding: .25em;
  margin: 0 .35em
}
.elementor-slideshow__header > i:hover {
  color: var(--lightbox-ui-color-hover)
}
.elementor-slideshow__header .elementor-slideshow__counter {
  margin-right: auto
}
.elementor-slideshow__header .elementor-icon-share {
  z-index: 5
}
.elementor-slideshow__share-menu {
  background-color: transparent;
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
  -webkit-transition: background-color .4s;
  -o-transition: background-color .4s;
  transition: background-color .4s
}
.elementor-slideshow__share-menu .elementor-slideshow__share-links a {
  color: #2c2c2c
}
.elementor-slideshow__share-links {
  display: block;
  position: absolute;
  min-width: 200px;
  right: 2.8em;
  top: 3em;
  background-color: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 14px 20px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transform-origin: 90% 10%;
  -ms-transform-origin: 90% 10%;
  transform-origin: 90% 10%;
  -webkit-transition: all .25s .1s;
  -o-transition: all .25s .1s;
  transition: all .25s .1s;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .3)
}
.elementor-slideshow__share-links a {
  text-align: left;
  color: #55595c;
  font-size: 12px;
  line-height: 2.5;
  display: block;
  opacity: 0;
  -webkit-transition: opacity .5s .1s;
  -o-transition: opacity .5s .1s;
  transition: opacity .5s .1s
}
.elementor-slideshow__share-links a:hover {
  color: #000
}
.elementor-slideshow__share-links a i {
  font-size: 1.25em;
  margin-right: .75em
}
.elementor-slideshow__share-links:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: .5em;
  border: .45em solid transparent;
  border-bottom-color: #fff;
  -webkit-transform: translateY(-100%) scaleX(.7);
  -ms-transform: translateY(-100%) scaleX(.7);
  transform: translateY(-100%) scaleX(.7)
}
.elementor-slideshow__footer {
  bottom: 0;
  z-index: 5;
  position: fixed
}
.elementor-slideshow__description, .elementor-slideshow__title {
  margin: 0
}
.elementor-slideshow__title {
  font-size: 16px;
  font-weight: 700
}
.elementor-slideshow__description {
  font-size: 14px
}
.elementor-slideshow--ui-hidden .elementor-slideshow__footer, .elementor-slideshow--ui-hidden .elementor-slideshow__header {
  opacity: 0;
  pointer-events: none
}
.elementor-slideshow--ui-hidden .elementor-swiper-button-next, .elementor-slideshow--ui-hidden .elementor-swiper-button-prev {
  opacity: 0
}
.elementor-slideshow--fullscreen-mode .elementor-video-container {
  width: 100%
}
.elementor-slideshow--zoom-mode .elementor-slideshow__footer, .elementor-slideshow--zoom-mode .elementor-slideshow__header {
  background-color: rgba(0, 0, 0, .5)
}
.elementor-slideshow--zoom-mode .elementor-swiper-button-next, .elementor-slideshow--zoom-mode .elementor-swiper-button-prev {
  opacity: 0;
  pointer-events: none
}
.elementor-slideshow--share-mode .elementor-slideshow__share-menu {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  cursor: default;
  background-color: rgba(0, 0, 0, .5)
}
.elementor-slideshow--share-mode .elementor-slideshow__share-links {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1)
}
.elementor-slideshow--share-mode .elementor-slideshow__share-links, .elementor-slideshow--share-mode .elementor-slideshow__share-links a {
  opacity: 1
}
.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-twitter {
  color: #1da1f2
}
.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-facebook {
  color: #3b5998
}
.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-pinterest {
  color: #bd081c
}
.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-download-bold {
  color: #a4afb7
}
.elementor-slideshow--share-mode .eicon-share-arrow {
  z-index: 2
}
.animated {
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s
}
.animated.animated-slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s
}
.animated.animated-fast {
  -webkit-animation-duration: .75s;
  animation-duration: .75s
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite
}
.animated.reverse {
  animation-direction: reverse;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards
}
@media (prefers-reduced-motion:reduce) {
  .animated {
    -webkit-animation: none;
    animation: none
  }
}
.elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr
}
.elementor-shape-top {
  top: -1px
}
.elementor-shape-top:not([data-negative=false]) svg {
  z-index: -1
}
.elementor-shape-bottom {
  bottom: -1px
}
.elementor-shape-bottom:not([data-negative=true]) svg {
  z-index: -1
}
.elementor-shape[data-negative=false].elementor-shape-bottom, .elementor-shape[data-negative=true].elementor-shape-top {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}
.elementor-shape svg {
  display: block;
  width: calc(100% + 1.3px);
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%)
}
.elementor-shape .elementor-shape-fill {
  fill: #fff;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg)
}
#wp-admin-bar-elementor_edit_page .ab-submenu .ab-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px
}
#wp-admin-bar-elementor_edit_page .elementor-edit-link-title {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%
}
#wp-admin-bar-elementor_edit_page .elementor-edit-link-type {
  background: #55595c;
  font-size: 11px;
  line-height: 9px;
  margin-top: 6px;
  padding: 4px 8px;
  -webkit-border-radius: 3px;
  border-radius: 3px
}
.page-template-elementor_canvas.elementor-page:before {
  display: none
}
.elementor-post__thumbnail__link {
  -webkit-transition: none;
  -o-transition: none;
  transition: none
}
#left-area ul.elementor-icon-list-items, .elementor-edit-area .elementor-element ul.elementor-icon-list-items, .elementor .elementor-element ul.elementor-icon-list-items {
  padding: 0
}
#wpadminbar * {
  font-style: normal
}
.e--ua-appleWebkit.rtl {
  --flex-right: flex-start
}
.e--ua-appleWebkit .elementor-share-buttons--align-right, .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-right {
  --justify-content: var(--flex-right, flex-end)
}
.e--ua-appleWebkit .elementor-share-buttons--align-center, .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-center {
  --justify-content: center
}
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: var(--justify-content, space-between);
  -ms-flex-pack: var(--justify-content, space-between);
  justify-content: var(--justify-content, space-between);
  margin-left: calc(-.5 * var(--grid-column-gap));
  margin-right: calc(-.5 * var(--grid-column-gap))
}
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid-item {
  margin-left: calc(.5 * var(--grid-column-gap));
  margin-right: calc(.5 * var(--grid-column-gap))
}
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid {
  display: inline-block
}
.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid-item {
  margin-left: 0;
  margin-right: 0
}
@media (max-width:1024px) {
  .e--ua-appleWebkit .elementor-share-buttons-tablet--align-right, .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-right {
    --justify-content: var(--flex-right, flex-end)
  }
  .e--ua-appleWebkit .elementor-share-buttons-tablet--align-center, .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-center {
    --justify-content: center
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: var(--justify-content, space-between);
    -ms-flex-pack: var(--justify-content, space-between);
    justify-content: var(--justify-content, space-between);
    margin-left: calc(-.5 * var(--grid-column-gap));
    margin-right: calc(-.5 * var(--grid-column-gap))
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid-item {
    margin-left: calc(.5 * var(--grid-column-gap));
    margin-right: calc(.5 * var(--grid-column-gap))
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid {
    display: inline-block
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid-item {
    margin-left: 0;
    margin-right: 0
  }
}
@media (max-width:767px) {
  .e--ua-appleWebkit .elementor-share-buttons-mobile--align-right, .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-right {
    --justify-content: var(--flex-right, flex-end)
  }
  .e--ua-appleWebkit .elementor-share-buttons-mobile--align-center, .e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-center {
    --justify-content: center
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: var(--justify-content, space-between);
    -ms-flex-pack: var(--justify-content, space-between);
    justify-content: var(--justify-content, space-between);
    margin-left: calc(-.5 * var(--grid-column-gap));
    margin-right: calc(-.5 * var(--grid-column-gap))
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid-item {
    margin-left: calc(.5 * var(--grid-column-gap));
    margin-right: calc(.5 * var(--grid-column-gap))
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid {
    display: inline-block
  }
  .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid-item, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid, .e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid-item {
    margin-left: 0;
    margin-right: 0
  }
}
@media (max-width:767px) {
  .elementor .elementor-hidden-phone {
    display: none
  }
}
@media (min-width:768px) and (max-width:1024px) {
  .elementor .elementor-hidden-tablet {
    display: none
  }
}
@media (min-width:1025px) {
  .elementor .elementor-hidden-desktop {
    display: none
  }
}
.elementor-widget-text-path {
  font-size: 20px;
  text-align: var(--alignment, left)
}
.elementor-widget-text-path svg {
  width: var(--width);
  max-width: 100%;
  height: auto;
  overflow: visible;
  word-spacing: var(--word-spacing);
  -webkit-transform: rotate(var(--rotate, 0)) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1));
  -ms-transform: rotate(var(--rotate, 0)) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1));
  transform: rotate(var(--rotate, 0)) scaleX(var(--scale-x, 1)) scaleY(var(--scale-y, 1))
}
.elementor-widget-text-path svg path {
  vector-effect: non-scaling-stroke;
  fill: var(--path-fill, transparent);
  stroke: var(--stroke-color, transparent);
  stroke-width: var(--stroke-width, 1px);
  -webkit-transition: var(--stroke-transition) stroke, var(--stroke-transition) fill;
  -o-transition: var(--stroke-transition) stroke, var(--stroke-transition) fill;
  transition: var(--stroke-transition) stroke, var(--stroke-transition) fill
}
.elementor-widget-text-path svg:hover path {
  --path-fill: var(--path-fill-hover);
  --stroke-color: var(--stroke-color-hover);
  --stroke-width: var(--stroke-width-hover)
}
.elementor-widget-text-path svg text {
  --fill: var(--text-color);
  fill: var(--fill);
  direction: var(--direction, ltr);
  -webkit-transition: var(--transition) stroke, var(--transition) stroke-width, var(--transition) fill;
  -o-transition: var(--transition) stroke, var(--transition) stroke-width, var(--transition) fill;
  transition: var(--transition) stroke, var(--transition) stroke-width, var(--transition) fill
}
.elementor-widget-text-path svg text:hover {
  --text-color: var(--text-color-hover)
}
.elementor-element .elementor-widget-container {
  -webkit-transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  transition: background .3s, border .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s;
  -o-transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, -webkit-border-radius .3s, -webkit-box-shadow .3s
}
.elementor-button {
  display: inline-block;
  line-height: 1;
  background-color: #818a91;
  font-size: 15px;
  padding: 12px 24px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  text-align: center;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s
}
.elementor-button:focus, .elementor-button:hover, .elementor-button:visited {
  color: #fff
}
.elementor-button-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.elementor-button-icon {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5
}
.elementor-button-icon svg {
  width: 1em
}
.elementor-button-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
  display: inline-block
}
.elementor-button.elementor-size-xs {
  font-size: 13px;
  padding: 10px 20px;
  -webkit-border-radius: 2px;
  border-radius: 2px
}
.elementor-button.elementor-size-md {
  font-size: 16px;
  padding: 15px 30px;
  -webkit-border-radius: 4px;
  border-radius: 4px
}
.elementor-button.elementor-size-lg {
  font-size: 18px;
  padding: 20px 40px;
  -webkit-border-radius: 5px;
  border-radius: 5px
}
.elementor-button.elementor-size-xl {
  font-size: 20px;
  padding: 25px 50px;
  -webkit-border-radius: 6px;
  border-radius: 6px
}
.elementor-button .elementor-align-icon-right {
  margin-left: 5px;
  -webkit-box-ordinal-group: 16;
  -ms-flex-order: 15;
  order: 15
}
.elementor-button .elementor-align-icon-left {
  margin-right: 5px;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5
}
.elementor-button span {
  text-decoration: inherit
}
.elementor-menu-cart__toggle .elementor-button-icon {
  -webkit-box-ordinal-group: 16;
  -ms-flex-order: 15;
  order: 15
}
.elementor-element.elementor-button-info .elementor-button {
  background-color: #5bc0de
}
.elementor-element.elementor-button-success .elementor-button {
  background-color: #5cb85c
}
.elementor-element.elementor-button-warning .elementor-button {
  background-color: #f0ad4e
}
.elementor-element.elementor-button-danger .elementor-button {
  background-color: #d9534f
}
.elementor-widget-button .elementor-button .elementor-button-info {
  background-color: #5bc0de
}
.elementor-widget-button .elementor-button .elementor-button-success {
  background-color: #5cb85c
}
.elementor-widget-button .elementor-button .elementor-button-warning {
  background-color: #f0ad4e
}
.elementor-widget-button .elementor-button .elementor-button-danger {
  background-color: #d9534f
}
.elementor-tab-title a {
  color: inherit
}
.elementor-view-stacked .elementor-icon {
  padding: .5em;
  background-color: #818a91;
  color: #fff;
  fill: #fff
}
.elementor-view-framed .elementor-icon {
  padding: .5em;
  color: #818a91;
  border: 3px solid #818a91;
  background-color: transparent
}
.elementor-icon {
  display: inline-block;
  line-height: 1;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  color: #818a91;
  font-size: 50px;
  text-align: center
}
.elementor-icon:hover {
  color: #818a91
}
.elementor-icon i, .elementor-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  display: block
}
.elementor-icon i:before, .elementor-icon svg:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%)
}
.elementor-icon i.fad {
  width: auto
}
.elementor-shape-circle .elementor-icon {
  -webkit-border-radius: 50%;
  border-radius: 50%
}
.elementor-accordion {
  text-align: left
}
.elementor-accordion .elementor-accordion-item {
  border: 1px solid #d4d4d4
}
.elementor-accordion .elementor-accordion-item + .elementor-accordion-item {
  border-top: none
}
.elementor-accordion .elementor-tab-title {
  margin: 0;
  padding: 15px 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  outline: none
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon {
  display: inline-block;
  width: 1.5em
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right {
  float: right;
  text-align: right
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left {
  float: left;
  text-align: left
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed {
  display: block
}
.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened, .elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed {
  display: none
}
.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened {
  display: block
}
.elementor-accordion .elementor-tab-content {
  display: none;
  padding: 15px 20px;
  border-top: 1px solid #d4d4d4
}
@media (max-width:767px) {
  .elementor-accordion .elementor-tab-title {
    padding: 12px 15px
  }
  .elementor-accordion .elementor-tab-title .elementor-accordion-icon {
    width: 1.2em
  }
  .elementor-accordion .elementor-tab-content {
    padding: 7px 15px
  }
}
.elementor-alert {
  padding: 15px;
  border-left: 5px solid transparent;
  position: relative;
  text-align: left
}
.elementor-alert .elementor-alert-title {
  display: block;
  font-weight: 700
}
.elementor-alert .elementor-alert-description {
  font-size: 13px
}
.elementor-alert button.elementor-alert-dismiss {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 3px;
  font-size: 20px;
  line-height: 1;
  background: transparent;
  color: inherit;
  border: none;
  cursor: pointer
}
.elementor-alert.elementor-alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bcdff1
}
.elementor-alert.elementor-alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #cae6be
}
.elementor-alert.elementor-alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #f9f0c3
}
.elementor-alert.elementor-alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #e8c4c4
}
@media (max-width:767px) {
  .elementor-alert {
    padding: 10px
  }
  .elementor-alert button.elementor-alert-dismiss {
    right: 7px;
    top: 7px
  }
}
.elementor-counter .elementor-counter-number-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 69px;
  font-weight: 600;
  line-height: 1
}
.elementor-counter .elementor-counter-number-prefix, .elementor-counter .elementor-counter-number-suffix {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: pre-wrap
}
.elementor-counter .elementor-counter-number-prefix {
  text-align: right
}
.elementor-counter .elementor-counter-number-suffix {
  text-align: left
}
.elementor-counter .elementor-counter-title {
  text-align: center;
  font-size: 19px;
  font-weight: 400;
  line-height: 2.5
}
.elementor-widget-divider {
  --divider-border-style: none;
  --divider-border-width: 1px;
  --divider-color: #2c2c2c;
  --divider-icon-size: 20px;
  --divider-element-spacing: 10px;
  --divider-pattern-height: 24px;
  --divider-pattern-size: 20px;
  --divider-pattern-url: none;
  --divider-pattern-repeat: repeat-x
}
.elementor-widget-divider .elementor-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.elementor-widget-divider .elementor-divider__text {
  font-size: 15px;
  line-height: 1;
  max-width: 95%
}
.elementor-widget-divider .elementor-divider__element {
  margin: 0 var(--divider-element-spacing);
  -ms-flex-negative: 0;
  flex-shrink: 0
}
.elementor-widget-divider .elementor-icon {
  font-size: var(--divider-icon-size)
}
.elementor-widget-divider .elementor-divider-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  direction: ltr
}
.elementor-widget-divider--view-line_icon .elementor-divider-separator, .elementor-widget-divider--view-line_text .elementor-divider-separator {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.elementor-widget-divider--view-line_icon .elementor-divider-separator:after, .elementor-widget-divider--view-line_icon .elementor-divider-separator:before, .elementor-widget-divider--view-line_text .elementor-divider-separator:after, .elementor-widget-divider--view-line_text .elementor-divider-separator:before {
  display: block;
  content: "";
  border-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-top: var(--divider-border-width) var(--divider-border-style) var(--divider-color)
}
.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator > .elementor-divider__svg:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 100;
  flex-shrink: 100
}
.elementor-widget-divider--element-align-left .elementor-divider-separator:before {
  content: none
}
.elementor-widget-divider--element-align-left .elementor-divider__element {
  margin-left: 0
}
.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator > .elementor-divider__svg:last-of-type {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 100;
  flex-shrink: 100
}
.elementor-widget-divider--element-align-right .elementor-divider-separator:after {
  content: none
}
.elementor-widget-divider--element-align-right .elementor-divider__element {
  margin-right: 0
}
.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator {
  border-top: var(--divider-border-width) var(--divider-border-style) var(--divider-color)
}
.elementor-widget-divider--separator-type-pattern {
  --divider-border-style: none
}
.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator, .elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after, .elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before, .elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator {
  width: 100%;
  min-height: var(--divider-pattern-height);
  -webkit-mask-size: var(--divider-pattern-size) 100%;
  mask-size: var(--divider-pattern-size) 100%;
  -webkit-mask-repeat: var(--divider-pattern-repeat);
  mask-repeat: var(--divider-pattern-repeat);
  background-color: var(--divider-color);
  -webkit-mask-image: var(--divider-pattern-url);
  mask-image: var(--divider-pattern-url)
}
.elementor-widget-divider--no-spacing {
  --divider-pattern-size: auto
}
.elementor-widget-divider--bg-round {
  --divider-pattern-repeat: round
}
.rtl .elementor-widget-divider .elementor-divider__text {
  direction: rtl
}
.elementor-image-gallery .gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  margin: 0 auto
}
.elementor-image-gallery .gallery-item img {
  margin: 0 auto
}
.elementor-image-gallery .gallery-item .gallery-caption {
  margin: 0
}
.elementor-image-gallery figure img {
  display: block
}
.elementor-image-gallery figure figcaption {
  width: 100%
}
.gallery-spacing-custom .elementor-image-gallery .gallery-icon {
  padding: 0
}
@media (min-width:768px) {
  .elementor-image-gallery .gallery-columns-2 .gallery-item {
    max-width: 50%
  }
  .elementor-image-gallery .gallery-columns-3 .gallery-item {
    max-width: 33.33%
  }
  .elementor-image-gallery .gallery-columns-4 .gallery-item {
    max-width: 25%
  }
  .elementor-image-gallery .gallery-columns-5 .gallery-item {
    max-width: 20%
  }
  .elementor-image-gallery .gallery-columns-6 .gallery-item {
    max-width: 16.666%
  }
  .elementor-image-gallery .gallery-columns-7 .gallery-item {
    max-width: 14.28%
  }
  .elementor-image-gallery .gallery-columns-8 .gallery-item {
    max-width: 12.5%
  }
  .elementor-image-gallery .gallery-columns-9 .gallery-item {
    max-width: 11.11%
  }
  .elementor-image-gallery .gallery-columns-10 .gallery-item {
    max-width: 10%
  }
}
@media (min-width:480px) and (max-width:767px) {
  .elementor-image-gallery .gallery.gallery-columns-2 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-3 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-4 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-5 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-6 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-7 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-8 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-9 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-10 .gallery-item {
    max-width: 50%
  }
}
@media (max-width:479px) {
  .elementor-image-gallery .gallery.gallery-columns-2 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-3 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-4 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-5 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-6 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-7 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-8 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-9 .gallery-item, .elementor-image-gallery .gallery.gallery-columns-10 .gallery-item {
    max-width: 100%
  }
}
.elementor-widget-google_maps .elementor-widget-container {
  overflow: hidden
}
.elementor-widget-google_maps iframe {
  height: 300px
}
.elementor-heading-title {
  padding: 0;
  margin: 0;
  line-height: 1
}
.elementor-widget-heading .elementor-heading-title[class*=elementor-size-] > a {
  color: inherit;
  font-size: inherit;
  line-height: inherit
}
.elementor-widget-heading .elementor-heading-title.elementor-size-small {
  font-size: 15px
}
.elementor-widget-heading .elementor-heading-title.elementor-size-medium {
  font-size: 19px
}
.elementor-widget-heading .elementor-heading-title.elementor-size-large {
  font-size: 29px
}
.elementor-widget-heading .elementor-heading-title.elementor-size-xl {
  font-size: 39px
}
.elementor-widget-heading .elementor-heading-title.elementor-size-xxl {
  font-size: 59px
}
@media (min-width:768px) {
  .elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper, .elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
  .elementor-widget-icon-box.elementor-position-left .elementor-icon-box-icon, .elementor-widget-icon-box.elementor-position-right .elementor-icon-box-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
  }
  .elementor-widget-icon-box.elementor-position-right .elementor-icon-box-wrapper {
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }
  .elementor-widget-icon-box.elementor-position-left .elementor-icon-box-wrapper {
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
  .elementor-widget-icon-box.elementor-position-top .elementor-icon-box-img {
    margin: auto
  }
  .elementor-widget-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
  .elementor-widget-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  .elementor-widget-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
  }
}
@media (max-width:767px) {
  .elementor-widget-icon-box .elementor-icon-box-icon {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 15px
  }
}
.elementor-widget-icon-box .elementor-icon-box-wrapper {
  text-align: center
}
.elementor-widget-icon-box .elementor-icon-box-title a {
  color: inherit
}
.elementor-widget-icon-box .elementor-icon-box-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}
.elementor-widget-icon-box .elementor-icon-box-description {
  margin: 0
}
.elementor-widget.elementor-icon-list--layout-inline .elementor-widget-container {
  overflow: hidden
}
.elementor-widget .elementor-icon-list-items.elementor-inline-items {
  margin-right: -8px;
  margin-left: -8px
}
.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item {
  margin-right: 8px;
  margin-left: 8px
}
.elementor-widget .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:after {
  width: auto;
  left: auto;
  right: auto;
  position: relative;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  border-left-width: 1px;
  border-style: solid;
  right: -8px
}
.elementor-widget .elementor-icon-list-items {
  list-style-type: none;
  margin: 0;
  padding: 0
}
.elementor-widget .elementor-icon-list-item {
  margin: 0;
  padding: 0;
  position: relative
}
.elementor-widget .elementor-icon-list-item:after {
  position: absolute;
  bottom: 0;
  width: 100%
}
.elementor-widget .elementor-icon-list-item, .elementor-widget .elementor-icon-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}
.elementor-widget .elementor-icon-list-icon + .elementor-icon-list-text {
  -ms-flex-item-align: center;
  align-self: center;
  padding-left: 5px
}
.elementor-widget .elementor-icon-list-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0
}
.elementor-widget .elementor-icon-list-icon i {
  width: 1.25em
}
.elementor-widget .elementor-icon-list-icon svg {
  width: 1em
}
.elementor-widget.elementor-list-item-link-full_width a {
  width: 100%
}
.elementor-widget.elementor-align-center .elementor-icon-list-item, .elementor-widget.elementor-align-center .elementor-icon-list-item a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.elementor-widget.elementor-align-center .elementor-icon-list-item:after {
  margin: auto
}
.elementor-widget.elementor-align-center .elementor-inline-items {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.elementor-widget.elementor-align-left .elementor-icon-list-item, .elementor-widget.elementor-align-left .elementor-icon-list-item a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left
}
.elementor-widget.elementor-align-left .elementor-inline-items {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}
.elementor-widget.elementor-align-right .elementor-icon-list-item, .elementor-widget.elementor-align-right .elementor-icon-list-item a {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right
}
.elementor-widget.elementor-align-right .elementor-icon-list-items {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.elementor-widget:not(.elementor-align-right) .elementor-icon-list-item:after {
  left: 0
}
.elementor-widget:not(.elementor-align-left) .elementor-icon-list-item:after {
  right: 0
}
@media (max-width:1024px) {
  .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item, .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item a, .elementor-widget.elementor-tablet-align-center .elementor-icon-list-items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .elementor-widget.elementor-tablet-align-center .elementor-icon-list-item:after {
    margin: auto
  }
  .elementor-widget.elementor-tablet-align-left .elementor-icon-list-items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .elementor-widget.elementor-tablet-align-left .elementor-icon-list-item, .elementor-widget.elementor-tablet-align-left .elementor-icon-list-item a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
  }
  .elementor-widget.elementor-tablet-align-right .elementor-icon-list-items {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .elementor-widget.elementor-tablet-align-right .elementor-icon-list-item, .elementor-widget.elementor-tablet-align-right .elementor-icon-list-item a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right
  }
  .elementor-widget:not(.elementor-tablet-align-right) .elementor-icon-list-item:after {
    left: 0
  }
  .elementor-widget:not(.elementor-tablet-align-left) .elementor-icon-list-item:after {
    right: 0
  }
}
@media (max-width:767px) {
  .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item, .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item a, .elementor-widget.elementor-mobile-align-center .elementor-icon-list-items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .elementor-widget.elementor-mobile-align-center .elementor-icon-list-item:after {
    margin: auto
  }
  .elementor-widget.elementor-mobile-align-left .elementor-icon-list-items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .elementor-widget.elementor-mobile-align-left .elementor-icon-list-item, .elementor-widget.elementor-mobile-align-left .elementor-icon-list-item a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left
  }
  .elementor-widget.elementor-mobile-align-right .elementor-icon-list-items {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .elementor-widget.elementor-mobile-align-right .elementor-icon-list-item, .elementor-widget.elementor-mobile-align-right .elementor-icon-list-item a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right
  }
  .elementor-widget:not(.elementor-mobile-align-right) .elementor-icon-list-item:after {
    left: 0
  }
  .elementor-widget:not(.elementor-mobile-align-left) .elementor-icon-list-item:after {
    right: 0
  }
}
.elementor-widget-image {
  text-align: center
}
.elementor-widget-image a {
  display: inline-block
}
.elementor-widget-image a img[src$=".svg"] {
  width: 48px
}
.elementor-widget-image img {
  vertical-align: middle;
  display: inline-block
}
.elementor-widget-image-box .elementor-image-box-content {
  width: 100%
}
@media (min-width:768px) {
  .elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper, .elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
  .elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper {
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }
  .elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper {
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
  .elementor-widget-image-box.elementor-position-top .elementor-image-box-img {
    margin: auto
  }
  .elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }
  .elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  .elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
  }
}
@media (max-width:767px) {
  .elementor-widget-image-box .elementor-image-box-img {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 15px
  }
}
.elementor-widget-image-box .elementor-image-box-img {
  display: inline-block
}
.elementor-widget-image-box .elementor-image-box-title a {
  color: inherit
}
.elementor-widget-image-box .elementor-image-box-wrapper {
  text-align: center
}
.elementor-widget-image-box .elementor-image-box-description {
  margin: 0
}
.elementor-widget-image-carousel .swiper-container {
  position: static
}
.elementor-widget-image-carousel .swiper-container .swiper-slide figure {
  line-height: inherit
}
.elementor-widget-image-carousel .swiper-slide {
  text-align: center
}
body.elementor-page .elementor-widget-menu-anchor {
  margin-bottom: 0
}
.elementor-widget-progress {
  text-align: left
}
.elementor-progress-wrapper {
  position: relative;
  background-color: #eee;
  color: #fff;
  height: 100%;
  -webkit-border-radius: 2px;
  border-radius: 2px
}
.elementor-progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #818a91;
  width: 0;
  font-size: 11px;
  height: 30px;
  line-height: 30px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out
}
.elementor-progress-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-left: 15px
}
.elementor-progress-percentage {
  padding-right: 15px
}
.elementor-widget-progress .elementor-progress-wrapper.progress-info .elementor-progress-bar {
  background-color: #5bc0de
}
.elementor-widget-progress .elementor-progress-wrapper.progress-success .elementor-progress-bar {
  background-color: #5cb85c
}
.elementor-widget-progress .elementor-progress-wrapper.progress-warning .elementor-progress-bar {
  background-color: #f0ad4e
}
.elementor-widget-progress .elementor-progress-wrapper.progress-danger .elementor-progress-bar {
  background-color: #d9534f
}
.elementor-progress .elementor-title {
  display: block
}
@media (max-width:767px) {
  .elementor-progress-text {
    padding-left: 10px
  }
}
.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container, .elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container, .elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container {
  line-height: 1;
  font-size: 0
}
.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid {
  display: inline-grid
}
.elementor-widget-social-icons .elementor-grid {
  grid-column-gap: var(--grid-column-gap, 5px);
  grid-row-gap: var(--grid-row-gap, 5px);
  grid-template-columns: var(--grid-template-columns);
  -webkit-box-pack: var(--justify-content, center);
  -ms-flex-pack: var(--justify-content, center);
  justify-content: var(--justify-content, center);
  justify-items: var(--justify-content, center)
}
.elementor-icon.elementor-social-icon {
  font-size: var(--icon-size, 25px);
  line-height: var(--icon-size, 25px);
  width: calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));
  height: calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))
}
.elementor-social-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #818a91;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  cursor: pointer
}
.elementor-social-icon i {
  color: #fff
}
.elementor-social-icon:last-child {
  margin: 0
}
.elementor-social-icon:hover {
  opacity: .9;
  color: #fff
}
.elementor-social-icon-android {
  background-color: #a4c639
}
.elementor-social-icon-apple {
  background-color: #999
}
.elementor-social-icon-behance {
  background-color: #1769ff
}
.elementor-social-icon-bitbucket {
  background-color: #205081
}
.elementor-social-icon-codepen {
  background-color: #000
}
.elementor-social-icon-delicious {
  background-color: #39f
}
.elementor-social-icon-deviantart {
  background-color: #05cc47
}
.elementor-social-icon-digg {
  background-color: #005be2
}
.elementor-social-icon-dribbble {
  background-color: #ea4c89
}
.elementor-social-icon-elementor {
  background-color: #d30c5c
}
.elementor-social-icon-envelope {
  background-color: #ea4335
}
.elementor-social-icon-facebook, .elementor-social-icon-facebook-f {
  background-color: #3b5998
}
.elementor-social-icon-flickr {
  background-color: #0063dc
}
.elementor-social-icon-foursquare {
  background-color: #2d5be3
}
.elementor-social-icon-free-code-camp, .elementor-social-icon-freecodecamp {
  background-color: #006400
}
.elementor-social-icon-github {
  background-color: #333
}
.elementor-social-icon-gitlab {
  background-color: #e24329
}
.elementor-social-icon-globe {
  background-color: #818a91
}
.elementor-social-icon-google-plus, .elementor-social-icon-google-plus-g {
  background-color: #dd4b39
}
.elementor-social-icon-houzz {
  background-color: #7ac142
}
.elementor-social-icon-instagram {
  background-color: #262626
}
.elementor-social-icon-jsfiddle {
  background-color: #487aa2
}
.elementor-social-icon-link {
  background-color: #818a91
}
.elementor-social-icon-linkedin, .elementor-social-icon-linkedin-in {
  background-color: #0077b5
}
.elementor-social-icon-medium {
  background-color: #00ab6b
}
.elementor-social-icon-meetup {
  background-color: #ec1c40
}
.elementor-social-icon-mixcloud {
  background-color: #273a4b
}
.elementor-social-icon-odnoklassniki {
  background-color: #f4731c
}
.elementor-social-icon-pinterest {
  background-color: #bd081c
}
.elementor-social-icon-product-hunt {
  background-color: #da552f
}
.elementor-social-icon-reddit {
  background-color: #ff4500
}
.elementor-social-icon-rss {
  background-color: #f26522
}
.elementor-social-icon-shopping-cart {
  background-color: #4caf50
}
.elementor-social-icon-skype {
  background-color: #00aff0
}
.elementor-social-icon-slideshare {
  background-color: #0077b5
}
.elementor-social-icon-snapchat {
  background-color: #fffc00
}
.elementor-social-icon-soundcloud {
  background-color: #f80
}
.elementor-social-icon-spotify {
  background-color: #2ebd59
}
.elementor-social-icon-stack-overflow {
  background-color: #fe7a15
}
.elementor-social-icon-steam {
  background-color: #00adee
}
.elementor-social-icon-stumbleupon {
  background-color: #eb4924
}
.elementor-social-icon-telegram {
  background-color: #2ca5e0
}
.elementor-social-icon-thumb-tack {
  background-color: #1aa1d8
}
.elementor-social-icon-tripadvisor {
  background-color: #589442
}
.elementor-social-icon-tumblr {
  background-color: #35465c
}
.elementor-social-icon-twitch {
  background-color: #6441a5
}
.elementor-social-icon-twitter {
  background-color: #1da1f2
}
.elementor-social-icon-viber {
  background-color: #665cac
}
.elementor-social-icon-vimeo {
  background-color: #1ab7ea
}
.elementor-social-icon-vk {
  background-color: #45668e
}
.elementor-social-icon-weibo {
  background-color: #dd2430
}
.elementor-social-icon-weixin {
  background-color: #31a918
}
.elementor-social-icon-whatsapp {
  background-color: #25d366
}
.elementor-social-icon-wordpress {
  background-color: #21759b
}
.elementor-social-icon-xing {
  background-color: #026466
}
.elementor-social-icon-yelp {
  background-color: #af0606
}
.elementor-social-icon-youtube {
  background-color: #cd201f
}
.elementor-social-icon-500px {
  background-color: #0099e5
}
.elementor-shape-rounded .elementor-icon.elementor-social-icon {
  -webkit-border-radius: 10%;
  border-radius: 10%
}
.elementor-shape-circle .elementor-icon.elementor-social-icon {
  -webkit-border-radius: 50%;
  border-radius: 50%
}
.elementor-star-rating {
  color: #ccd6df;
  font-family: eicons;
  display: inline-block
}
.elementor-star-rating i {
  display: inline-block;
  position: relative;
  font-style: normal;
  cursor: default
}
.elementor-star-rating i:before {
  content: "\e934";
  display: block;
  font-size: inherit;
  font-family: inherit;
  position: absolute;
  overflow: hidden;
  color: #f0ad4e;
  top: 0;
  left: 0
}
.elementor-star-rating .elementor-star-empty:before {
  content: none
}
.elementor-star-rating .elementor-star-1:before {
  width: 10%
}
.elementor-star-rating .elementor-star-2:before {
  width: 20%
}
.elementor-star-rating .elementor-star-3:before {
  width: 30%
}
.elementor-star-rating .elementor-star-4:before {
  width: 40%
}
.elementor-star-rating .elementor-star-5:before {
  width: 50%
}
.elementor-star-rating .elementor-star-6:before {
  width: 60%
}
.elementor-star-rating .elementor-star-7:before {
  width: 70%
}
.elementor-star-rating .elementor-star-8:before {
  width: 80%
}
.elementor-star-rating .elementor-star-9:before {
  width: 90%
}
.elementor-star-rating__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.elementor-star-rating__title {
  margin-right: 10px
}
.elementor-star-rating--align-right .elementor-star-rating__wrapper {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.elementor-star-rating--align-left .elementor-star-rating__wrapper {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}
.elementor-star-rating--align-center .elementor-star-rating__wrapper {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.elementor-star-rating--align-justify .elementor-star-rating__title {
  margin-right: auto
}
@media (max-width:1024px) {
  .elementor-star-rating-tablet--align-right .elementor-star-rating__wrapper {
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .elementor-star-rating-tablet--align-left .elementor-star-rating__wrapper {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .elementor-star-rating-tablet--align-center .elementor-star-rating__wrapper {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .elementor-star-rating-tablet--align-justify .elementor-star-rating__title {
    margin-right: auto
  }
}
@media (max-width:767px) {
  .elementor-star-rating-mobile--align-right .elementor-star-rating__wrapper {
    text-align: right;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .elementor-star-rating-mobile--align-left .elementor-star-rating__wrapper {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
  .elementor-star-rating-mobile--align-center .elementor-star-rating__wrapper {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .elementor-star-rating-mobile--align-justify .elementor-star-rating__title {
    margin-right: auto
  }
}
.last-star {
  letter-spacing: 0
}
.elementor--star-style-star_unicode .elementor-star-rating {
  font-family: Arial, Helvetica, sans-serif
}
.elementor--star-style-star_unicode .elementor-star-rating i:not(.elementor-star-empty):before {
  content: "\002605"
}
.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs-wrapper {
  width: 25%;
  -ms-flex-negative: 0;
  flex-shrink: 0
}
.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active {
  border-right-style: none
}
.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:after, .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:before {
  height: 999em;
  width: 0;
  right: 0;
  border-right-style: solid
}
.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:before {
  top: 0;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%)
}
.elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tab-desktop-title.elementor-active:after {
  top: 100%
}
.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title {
  display: table-cell
}
.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active {
  border-bottom-style: none
}
.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:after, .elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:before {
  bottom: 0;
  height: 0;
  width: 999em;
  border-bottom-style: solid
}
.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:before {
  right: 100%
}
.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:after {
  left: 100%
}
.elementor-widget-tabs .elementor-tab-content, .elementor-widget-tabs .elementor-tab-title, .elementor-widget-tabs .elementor-tab-title:after, .elementor-widget-tabs .elementor-tab-title:before, .elementor-widget-tabs .elementor-tabs-content-wrapper {
  border: 1px #d4d4d4
}
.elementor-widget-tabs .elementor-tabs {
  text-align: left
}
.elementor-widget-tabs .elementor-tabs-wrapper {
  overflow: hidden
}
.elementor-widget-tabs .elementor-tab-title {
  cursor: pointer;
  outline: var(--focus-outline, none)
}
.elementor-widget-tabs .elementor-tab-desktop-title {
  position: relative;
  padding: 20px 25px;
  font-weight: 700;
  line-height: 1;
  border: solid transparent
}
.elementor-widget-tabs .elementor-tab-desktop-title.elementor-active {
  border-color: #d4d4d4
}
.elementor-widget-tabs .elementor-tab-desktop-title.elementor-active:after, .elementor-widget-tabs .elementor-tab-desktop-title.elementor-active:before {
  display: block;
  content: "";
  position: absolute
}
.elementor-widget-tabs .elementor-tab-mobile-title {
  padding: 10px;
  cursor: pointer
}
.elementor-widget-tabs .elementor-tab-content {
  padding: 20px;
  display: none
}
@media (max-width:767px) {
  .elementor-tabs .elementor-tab-content, .elementor-tabs .elementor-tab-title {
    border-style: solid solid none
  }
  .elementor-tabs .elementor-tabs-wrapper {
    display: none
  }
  .elementor-tabs .elementor-tabs-content-wrapper {
    border-bottom-style: solid
  }
  .elementor-tabs .elementor-tab-content {
    padding: 10px
  }
}
@media (min-width:768px) {
  .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
  .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
  .elementor-widget-tabs.elementor-tabs-view-vertical .elementor-tabs-content-wrapper {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-style: solid solid solid none
  }
  .elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-content {
    border-style: none solid solid
  }
  .elementor-widget-tabs.elementor-tabs-alignment-center .elementor-tabs-wrapper, .elementor-widget-tabs.elementor-tabs-alignment-end .elementor-tabs-wrapper, .elementor-widget-tabs.elementor-tabs-alignment-stretch .elementor-tabs-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
  .elementor-widget-tabs.elementor-tabs-alignment-center .elementor-tabs-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
  .elementor-widget-tabs.elementor-tabs-alignment-end .elementor-tabs-wrapper {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
  .elementor-widget-tabs.elementor-tabs-alignment-stretch.elementor-tabs-view-horizontal .elementor-tab-title {
    width: 100%
  }
  .elementor-widget-tabs.elementor-tabs-alignment-stretch.elementor-tabs-view-vertical .elementor-tab-title {
    height: 100%
  }
  .elementor-tabs .elementor-tab-mobile-title {
    display: none
  }
}
.elementor-testimonial-wrapper {
  overflow: hidden;
  text-align: center
}
.elementor-testimonial-wrapper .elementor-testimonial-content {
  font-size: 1.3em;
  margin-bottom: 20px
}
.elementor-testimonial-wrapper .elementor-testimonial-name {
  line-height: 1.5;
  display: block
}
.elementor-testimonial-wrapper .elementor-testimonial-job {
  font-size: .85em;
  display: block
}
.elementor-testimonial-wrapper.elementor-testimonial-text-align-left {
  text-align: left
}
.elementor-testimonial-wrapper.elementor-testimonial-text-align-right {
  text-align: right
}
.elementor-testimonial-wrapper .elementor-testimonial-meta {
  width: 100%;
  line-height: 1
}
.elementor-testimonial-wrapper .elementor-testimonial-meta-inner {
  display: inline-block
}
.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details, .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image {
  display: table-cell;
  vertical-align: middle
}
.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img {
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none
}
.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image {
  padding-right: 15px
}
.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details {
  text-align: left
}
.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details, .elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image {
  display: block
}
.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image {
  margin-bottom: 20px
}
.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap {
  background-color: #818a91;
  color: #fff
}
.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap {
  color: #818a91;
  border: 3px solid;
  background-color: transparent
}
.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap {
  margin-top: 8px
}
.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter {
  width: 1em;
  height: 1em
}
.elementor-widget-text-editor .elementor-drop-cap {
  float: left;
  text-align: center;
  line-height: 1;
  font-size: 50px
}
.elementor-widget-text-editor .elementor-drop-cap-letter {
  display: inline-block
}
.elementor-toggle {
  text-align: left
}
.elementor-toggle .elementor-tab-title {
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 15px;
  border-bottom: 1px solid #d4d4d4;
  cursor: pointer;
  outline: none
}
.elementor-toggle .elementor-tab-title .elementor-toggle-icon {
  display: inline-block;
  width: 1em
}
.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right {
  float: right;
  text-align: right
}
.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left {
  float: left;
  text-align: left
}
.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed {
  display: block
}
.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened {
  display: none
}
.elementor-toggle .elementor-tab-title.elementor-active {
  border-bottom: none
}
.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed {
  display: none
}
.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened {
  display: block
}
.elementor-toggle .elementor-tab-content {
  padding: 15px;
  border-bottom: 1px solid #d4d4d4;
  display: none
}
@media (max-width:767px) {
  .elementor-toggle .elementor-tab-title {
    padding: 12px
  }
  .elementor-toggle .elementor-tab-content {
    padding: 12px 10px
  }
}
.elementor-widget-video .elementor-widget-container {
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}
.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50%
}
.elementor-widget-video .elementor-custom-embed-image-overlay {
  cursor: pointer;
  text-align: center
}
.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i {
  opacity: 1
}
.elementor-widget-video .elementor-custom-embed-image-overlay img {
  display: block;
  width: 100%
}
.elementor-widget-video .e-hosted-video .elementor-video {
  -o-object-fit: cover;
  object-fit: cover
}