/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.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;-moz-user-select:none;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{background-color:rgba(0,0,0,0);border:none;font-size:1em}.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;-moz-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:rgba(0,0,0,0);border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;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;-moz-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{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;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;height:26px;margin-right:20px;padding-right:0px}.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 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);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:rgba(0,0,0,0) rgba(0,0,0,0) #888 rgba(0,0,0,0);border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:rgba(0,0,0,0);border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.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__display{padding-left:5px;padding-right:2px}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 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:rgba(0,0,0,0);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 .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--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:#fff}.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:linear-gradient(to bottom, white 50%, #eeeeee 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;height:26px;margin-right:20px}.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:linear-gradient(to bottom, #eeeeee 50%, #cccccc 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 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);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:rgba(0,0,0,0);border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #888 rgba(0,0,0,0);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:linear-gradient(to bottom, white 0%, #eeeeee 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:linear-gradient(to bottom, #eeeeee 50%, white 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.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;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:rgba(0,0,0,0);border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.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 rgba(0,0,0,0)}.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--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:gray}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{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}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 140px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }

  .daterangepicker {
    direction: ltr;
    text-align: left;
  }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }

  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}

@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }

  .daterangepicker .ranges {
    float: left;
  }

  .daterangepicker.rtl .ranges {
    float: right;
  }

  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }

  .daterangepicker .ranges ul {
    width: 140px;
  }

  .daterangepicker.single .ranges ul {
    width: 100%;
  }

  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }

  .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
    float: left;
  }

  .daterangepicker {
    direction: ltr;
    text-align: left;
  }

  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }

  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }

  .daterangepicker .ranges, .daterangepicker .drp-calendar {
    float: left;
  }
}

@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }

  .daterangepicker .ranges {
    float: left;
  }

  .daterangepicker.rtl .ranges {
    float: right;
  }

  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}

@charset "UTF-8";
:root {
  --rtcl-primary-color: #3232ff;
  --rtcl-secondary-color: #0202c9;
  --rtcl-gutter-x: 1.5rem;
  --rtcl-gutter-y: 0;
  --rtcl-sidebar-width: 28% ;
}

:root {
  --rtcl-primary-color: #3232ff;
  --rtcl-secondary-color: #0202C9;
  --rtcl-link-color: "";
  --rtcl-link-hover-color: $link-hover-color;
  --rtcl-button-bg-color: #81d742;
  --rtcl-button-color: #fff;
  --rtcl-button-hover-bg-color: #ffc107;
  --rtcl-button-hover-color: #fff;
  --rtcl-badge-featured-bg-color: #ffc107;
  --rtcl-badge-new-bg-color: #3232ff;
  --rtcl-badge-featured-color: #fff;
  --rtcl-badge-new-color: #fff;
}

/* ============== Custom Icon ============== */
/**
  * URL : http://fontello.com/
 */
@font-face {
  font-family: "rtcl";
  src: url("../fonts/rtcl.eot?70825799");
  src: url("../fonts/rtcl.eot?70825799#iefix") format("embedded-opentype"), url("../fonts/rtcl.woff2?70825799") format("woff2"), url("../fonts/rtcl.woff?70825799") format("woff"), url("../fonts/rtcl.ttf?70825799") format("truetype"), url("../fonts/rtcl.svg?70825799#rtcl") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=rtcl-icon-]:before, [class*=" rtcl-icon-"]:before {
  font-family: "rtcl", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.rtcl-icon-user:before {
  content: "\e800";
} /* '' */
.rtcl-icon-users:before {
  content: "\e801";
} /* '' */
.rtcl-icon-glass:before {
  content: "\e802";
} /* '' */
.rtcl-icon-music:before {
  content: "\e803";
} /* '' */
.rtcl-icon-search:before {
  content: "\e804";
} /* '' */
.rtcl-icon-mail:before {
  content: "\e805";
} /* '' */
.rtcl-icon-heart:before {
  content: "\e806";
} /* '' */
.rtcl-icon-heart-empty:before {
  content: "\e807";
} /* '' */
.rtcl-icon-star:before {
  content: "\e808";
} /* '' */
.rtcl-icon-video:before {
  content: "\e809";
} /* '' */
.rtcl-icon-videocam:before {
  content: "\e80a";
} /* '' */
.rtcl-icon-picture:before {
  content: "\e80b";
} /* '' */
.rtcl-icon-camera:before {
  content: "\e80c";
} /* '' */
.rtcl-icon-camera-alt:before {
  content: "\e80d";
} /* '' */
.rtcl-icon-th-large:before {
  content: "\e80e";
} /* '' */
.rtcl-icon-th:before {
  content: "\e80f";
} /* '' */
.rtcl-icon-th-list:before {
  content: "\e810";
} /* '' */
.rtcl-icon-ok:before {
  content: "\e811";
} /* '' */
.rtcl-icon-ok-circled:before {
  content: "\e812";
} /* '' */
.rtcl-icon-ok-circled2:before {
  content: "\e813";
} /* '' */
.rtcl-icon-cancel:before {
  content: "\e814";
} /* '' */
.rtcl-icon-cancel-circled:before {
  content: "\e815";
} /* '' */
.rtcl-icon-cancel-circled2:before {
  content: "\e816";
} /* '' */
.rtcl-icon-plus:before {
  content: "\e817";
} /* '' */
.rtcl-icon-plus-circled:before {
  content: "\e818";
} /* '' */
.rtcl-icon-minus:before {
  content: "\e819";
} /* '' */
.rtcl-icon-align-left:before {
  content: "\e81a";
} /* '' */
.rtcl-icon-help-circled:before {
  content: "\e81b";
} /* '' */
.rtcl-icon-info-circled:before {
  content: "\e81c";
} /* '' */
.rtcl-icon-home:before {
  content: "\e81d";
} /* '' */
.rtcl-icon-link:before {
  content: "\e81e";
} /* '' */
.rtcl-icon-attach:before {
  content: "\e81f";
} /* '' */
.rtcl-icon-lock:before {
  content: "\e820";
} /* '' */
.rtcl-icon-lock-open:before {
  content: "\e821";
} /* '' */
.rtcl-icon-pin:before {
  content: "\e822";
} /* '' */
.rtcl-icon-eye:before {
  content: "\e823";
} /* '' */
.rtcl-icon-eye-off:before {
  content: "\e824";
} /* '' */
.rtcl-icon-tag:before {
  content: "\e825";
} /* '' */
.rtcl-icon-tags:before {
  content: "\e826";
} /* '' */
.rtcl-icon-bookmark:before {
  content: "\e827";
} /* '' */
.rtcl-icon-flag:before {
  content: "\e828";
} /* '' */
.rtcl-icon-thumbs-up:before {
  content: "\e829";
} /* '' */
.rtcl-icon-thumbs-down:before {
  content: "\e82a";
} /* '' */
.rtcl-icon-download:before {
  content: "\e82b";
} /* '' */
.rtcl-icon-upload:before {
  content: "\e82c";
} /* '' */
.rtcl-icon-forward:before {
  content: "\e82d";
} /* '' */
.rtcl-icon-export:before {
  content: "\e82e";
} /* '' */
.rtcl-icon-pencil:before {
  content: "\e82f";
} /* '' */
.rtcl-icon-edit:before {
  content: "\e830";
} /* '' */
.rtcl-icon-print:before {
  content: "\e831";
} /* '' */
.rtcl-icon-retweet:before {
  content: "\e832";
} /* '' */
.rtcl-icon-comment:before {
  content: "\e833";
} /* '' */
.rtcl-icon-chat:before {
  content: "\e834";
} /* '' */
.rtcl-icon-bell:before {
  content: "\e835";
} /* '' */
.rtcl-icon-attention:before {
  content: "\e836";
} /* '' */
.rtcl-icon-attention-circled:before {
  content: "\e837";
} /* '' */
.rtcl-icon-location:before {
  content: "\e838";
} /* '' */
.rtcl-icon-doc:before {
  content: "\e839";
} /* '' */
.rtcl-icon-folder:before {
  content: "\e83a";
} /* '' */
.rtcl-icon-folder-open:before {
  content: "\e83b";
} /* '' */
.rtcl-icon-phone:before {
  content: "\e83c";
} /* '' */
.rtcl-icon-cog:before {
  content: "\e83d";
} /* '' */
.rtcl-icon-cog-alt:before {
  content: "\e83e";
} /* '' */
.rtcl-icon-wrench:before {
  content: "\e83f";
} /* '' */
.rtcl-icon-basket:before {
  content: "\e840";
} /* '' */
.rtcl-icon-calendar:before {
  content: "\e841";
} /* '' */
.rtcl-icon-login:before {
  content: "\e842";
} /* '' */
.rtcl-icon-logout:before {
  content: "\e843";
} /* '' */
.rtcl-icon-volume-off:before {
  content: "\e844";
} /* '' */
.rtcl-icon-volume-down:before {
  content: "\e845";
} /* '' */
.rtcl-icon-volume-up:before {
  content: "\e846";
} /* '' */
.rtcl-icon-headphones:before {
  content: "\e847";
} /* '' */
.rtcl-icon-clock:before {
  content: "\e848";
} /* '' */
.rtcl-icon-block:before {
  content: "\e849";
} /* '' */
.rtcl-icon-resize-full:before {
  content: "\e84a";
} /* '' */
.rtcl-icon-resize-small:before {
  content: "\e84b";
} /* '' */
.rtcl-icon-resize-vertical:before {
  content: "\e84c";
} /* '' */
.rtcl-icon-resize-horizontal:before {
  content: "\e84d";
} /* '' */
.rtcl-icon-zoom-in:before {
  content: "\e84e";
} /* '' */
.rtcl-icon-zoom-out:before {
  content: "\e84f";
} /* '' */
.rtcl-icon-down-circled2:before {
  content: "\e850";
} /* '' */
.rtcl-icon-up-circled2:before {
  content: "\e851";
} /* '' */
.rtcl-icon-down-dir:before {
  content: "\e852";
} /* '' */
.rtcl-icon-up-dir:before {
  content: "\e853";
} /* '' */
.rtcl-icon-left-dir:before {
  content: "\e854";
} /* '' */
.rtcl-icon-right-dir:before {
  content: "\e855";
} /* '' */
.rtcl-icon-down-open:before {
  content: "\e856";
} /* '' */
.rtcl-icon-left-open:before {
  content: "\e857";
} /* '' */
.rtcl-icon-up-open:before {
  content: "\e858";
} /* '' */
.rtcl-icon-up-big:before {
  content: "\e859";
} /* '' */
.rtcl-icon-down-big:before {
  content: "\e85a";
} /* '' */
.rtcl-icon-right-big:before {
  content: "\e85b";
} /* '' */
.rtcl-icon-left-big:before {
  content: "\e85c";
} /* '' */
.rtcl-icon-right-hand:before {
  content: "\e85d";
} /* '' */
.rtcl-icon-left-hand:before {
  content: "\e85e";
} /* '' */
.rtcl-icon-up-hand:before {
  content: "\e85f";
} /* '' */
.rtcl-icon-down-hand:before {
  content: "\e860";
} /* '' */
.rtcl-icon-cw:before {
  content: "\e861";
} /* '' */
.rtcl-icon-ccw:before {
  content: "\e862";
} /* '' */
.rtcl-icon-arrows-cw:before {
  content: "\e863";
} /* '' */
.rtcl-icon-shuffle:before {
  content: "\e864";
} /* '' */
.rtcl-icon-play:before {
  content: "\e865";
} /* '' */
.rtcl-icon-play-circled2:before {
  content: "\e866";
} /* '' */
.rtcl-icon-stop:before {
  content: "\e867";
} /* '' */
.rtcl-icon-pause:before {
  content: "\e868";
} /* '' */
.rtcl-icon-to-end:before {
  content: "\e869";
} /* '' */
.rtcl-icon-to-end-alt:before {
  content: "\e86a";
} /* '' */
.rtcl-icon-to-start:before {
  content: "\e86b";
} /* '' */
.rtcl-icon-to-start-alt:before {
  content: "\e86c";
} /* '' */
.rtcl-icon-fast-fw:before {
  content: "\e86d";
} /* '' */
.rtcl-icon-fast-bw:before {
  content: "\e86e";
} /* '' */
.rtcl-icon-eject:before {
  content: "\e86f";
} /* '' */
.rtcl-icon-target:before {
  content: "\e870";
} /* '' */
.rtcl-icon-signal:before {
  content: "\e871";
} /* '' */
.rtcl-icon-star-empty:before {
  content: "\e872";
} /* '' */
.rtcl-icon-credit-card:before {
  content: "\e873";
} /* '' */
.rtcl-icon-off:before {
  content: "\e874";
} /* '' */
.rtcl-icon-gift:before {
  content: "\e875";
} /* '' */
.rtcl-icon-chart-bar:before {
  content: "\e876";
} /* '' */
.rtcl-icon-flight:before {
  content: "\e877";
} /* '' */
.rtcl-icon-hammer:before {
  content: "\e878";
} /* '' */
.rtcl-icon-briefcase:before {
  content: "\e879";
} /* '' */
.rtcl-icon-award:before {
  content: "\e87a";
} /* '' */
.rtcl-icon-star-half:before {
  content: "\e87b";
} /* '' */
.rtcl-icon-trash-empty:before {
  content: "\e87c";
} /* '' */
.rtcl-icon-flash:before {
  content: "\e87d";
} /* '' */
.rtcl-icon-umbrella:before {
  content: "\e87e";
} /* '' */
.rtcl-icon-lemon:before {
  content: "\e87f";
} /* '' */
.rtcl-icon-truck:before {
  content: "\e880";
} /* '' */
.rtcl-icon-megaphone:before {
  content: "\e881";
} /* '' */
.rtcl-icon-key:before {
  content: "\e882";
} /* '' */
.rtcl-icon-floppy:before {
  content: "\e883";
} /* '' */
.rtcl-icon-book:before {
  content: "\e884";
} /* '' */
.rtcl-icon-adjust:before {
  content: "\e885";
} /* '' */
.rtcl-icon-tint:before {
  content: "\e886";
} /* '' */
.rtcl-icon-check:before {
  content: "\e887";
} /* '' */
.rtcl-icon-asterisk:before {
  content: "\e888";
} /* '' */
.rtcl-icon-fire:before {
  content: "\e889";
} /* '' */
.rtcl-icon-magnet:before {
  content: "\e88a";
} /* '' */
.rtcl-icon-barcode:before {
  content: "\e88b";
} /* '' */
.rtcl-icon-qrcode:before {
  content: "\e88c";
} /* '' */
.rtcl-icon-list-alt:before {
  content: "\e88d";
} /* '' */
.rtcl-icon-scissors:before {
  content: "\e88e";
} /* '' */
.rtcl-icon-text-width:before {
  content: "\e88f";
} /* '' */
.rtcl-icon-globe:before {
  content: "\e890";
} /* '' */
.rtcl-icon-plus-1:before {
  content: "\e891";
} /* '' */
.rtcl-icon-minus-1:before {
  content: "\e892";
} /* '' */
.rtcl-icon-minus-circled:before {
  content: "\e893";
} /* '' */
.rtcl-icon-minus-circled-1:before {
  content: "\e894";
} /* '' */
.rtcl-icon-minus-squared-1:before {
  content: "\e895";
} /* '' */
.rtcl-icon-plus-circled-1:before {
  content: "\e896";
} /* '' */
.rtcl-icon-plus-squared-1:before {
  content: "\e897";
} /* '' */
.rtcl-icon-road:before {
  content: "\e898";
} /* '' */
.rtcl-icon-thumbs-up-2:before {
  content: "\e899";
} /* '' */
.rtcl-icon-thumbs-down-1:before {
  content: "\e89a";
} /* '' */
.rtcl-icon-eye-2:before {
  content: "\e89b";
} /* '' */
.rtcl-icon-paper-plane-2:before {
  content: "\e89c";
} /* '' */
.rtcl-icon-flight-1:before {
  content: "\e89d";
} /* '' */
.rtcl-icon-book-open:before {
  content: "\e89e";
} /* '' */
.rtcl-icon-signal-1:before {
  content: "\e89f";
} /* '' */
.rtcl-icon-trophy:before {
  content: "\e8a0";
} /* '' */
.rtcl-icon-flash-1:before {
  content: "\e8a1";
} /* '' */
.rtcl-icon-moon-1:before {
  content: "\e8a2";
} /* '' */
.rtcl-icon-record:before {
  content: "\e8a3";
} /* '' */
.rtcl-icon-inbox:before {
  content: "\e8ba";
} /* '' */
.rtcl-icon-cloud:before {
  content: "\e8bb";
} /* '' */
.rtcl-icon-leaf:before {
  content: "\e8bc";
} /* '' */
.rtcl-icon-font:before {
  content: "\e8bd";
} /* '' */
.rtcl-icon-bold:before {
  content: "\e8be";
} /* '' */
.rtcl-icon-italic:before {
  content: "\e8bf";
} /* '' */
.rtcl-icon-music-2:before {
  content: "\e92c";
} /* '' */
.rtcl-icon-mobile-1:before {
  content: "\e92d";
} /* '' */
.rtcl-icon-search-2:before {
  content: "\e92e";
} /* '' */
.rtcl-icon-cd-1:before {
  content: "\e92f";
} /* '' */
.rtcl-icon-mail-1:before {
  content: "\e930";
} /* '' */
.rtcl-icon-inbox-2:before {
  content: "\e931";
} /* '' */
.rtcl-icon-heart-2:before {
  content: "\e932";
} /* '' */
.rtcl-icon-globe-1:before {
  content: "\e933";
} /* '' */
.rtcl-icon-star-2:before {
  content: "\e934";
} /* '' */
.rtcl-icon-cloud-2:before {
  content: "\e935";
} /* '' */
.rtcl-icon-user-2:before {
  content: "\e936";
} /* '' */
.rtcl-icon-paper-plane-1:before {
  content: "\e937";
} /* '' */
.rtcl-icon-videocam-1:before {
  content: "\e938";
} /* '' */
.rtcl-icon-fire-1:before {
  content: "\e939";
} /* '' */
.rtcl-icon-camera-1:before {
  content: "\e93a";
} /* '' */
.rtcl-icon-graduation-cap-1:before {
  content: "\e93b";
} /* '' */
.rtcl-icon-photo:before {
  content: "\e93c";
} /* '' */
.rtcl-icon-megaphone-1:before {
  content: "\e93d";
} /* '' */
.rtcl-icon-attach-2:before {
  content: "\e93e";
} /* '' */
.rtcl-icon-database-1:before {
  content: "\e93f";
} /* '' */
.rtcl-icon-lock-2:before {
  content: "\e940";
} /* '' */
.rtcl-icon-key-1:before {
  content: "\e941";
} /* '' */
.rtcl-icon-eye-1:before {
  content: "\e942";
} /* '' */
.rtcl-icon-beaker-1:before {
  content: "\e943";
} /* '' */
.rtcl-icon-tag-2:before {
  content: "\e944";
} /* '' */
.rtcl-icon-truck-1:before {
  content: "\e945";
} /* '' */
.rtcl-icon-thumbs-up-1:before {
  content: "\e946";
} /* '' */
.rtcl-icon-money-1:before {
  content: "\e947";
} /* '' */
.rtcl-icon-pencil-1:before {
  content: "\e948";
} /* '' */
.rtcl-icon-food-1:before {
  content: "\e949";
} /* '' */
.rtcl-icon-comment-3:before {
  content: "\e94a";
} /* '' */
.rtcl-icon-shop:before {
  content: "\e94b";
} /* '' */
.rtcl-icon-location-2:before {
  content: "\e94c";
} /* '' */
.rtcl-icon-diamond-1:before {
  content: "\e94d";
} /* '' */
.rtcl-icon-cup:before {
  content: "\e94e";
} /* '' */
.rtcl-icon-t-shirt:before {
  content: "\e94f";
} /* '' */
.rtcl-icon-trash-1:before {
  content: "\e950";
} /* '' */
.rtcl-icon-wallet:before {
  content: "\e951";
} /* '' */
.rtcl-icon-doc-2:before {
  content: "\e952";
} /* '' */
.rtcl-icon-note-1:before {
  content: "\e953";
} /* '' */
.rtcl-icon-cog-2:before {
  content: "\e954";
} /* '' */
.rtcl-icon-params:before {
  content: "\e955";
} /* '' */
.rtcl-icon-calendar-1:before {
  content: "\e956";
} /* '' */
.rtcl-icon-sound:before {
  content: "\e957";
} /* '' */
.rtcl-icon-clock-2:before {
  content: "\e958";
} /* '' */
.rtcl-icon-lightbulb-1:before {
  content: "\e959";
} /* '' */
.rtcl-icon-tv:before {
  content: "\e95a";
} /* '' */
.rtcl-icon-desktop-1:before {
  content: "\e95b";
} /* '' */
.rtcl-icon-star-3:before {
  content: "\e9df";
} /* '' */
.rtcl-icon-star-empty-1:before {
  content: "\e9e0";
} /* '' */
.rtcl-icon-user-3:before {
  content: "\e9e1";
} /* '' */
.rtcl-icon-layout:before {
  content: "\e9e7";
} /* '' */
.rtcl-icon-check-1:before {
  content: "\e9e9";
} /* '' */
.rtcl-icon-cancel-2:before {
  content: "\e9ea";
} /* '' */
.rtcl-icon-move:before {
  content: "\f047";
} /* '' */
.rtcl-icon-link-ext:before {
  content: "\f08e";
} /* '' */
.rtcl-icon-check-empty:before {
  content: "\f096";
} /* '' */
.rtcl-icon-bookmark-empty:before {
  content: "\f097";
} /* '' */
.rtcl-icon-phone-squared:before {
  content: "\f098";
} /* '' */
.rtcl-icon-twitter:before {
  content: "\f099";
} /* '' */
.rtcl-icon-facebook:before {
  content: "\f09a";
} /* '' */
.rtcl-icon-github-circled:before {
  content: "\f09b";
} /* '' */
.rtcl-icon-rss:before {
  content: "\f09e";
} /* '' */
.rtcl-icon-hdd:before {
  content: "\f0a0";
} /* '' */
.rtcl-icon-certificate:before {
  content: "\f0a3";
} /* '' */
.rtcl-icon-left-circled:before {
  content: "\f0a8";
} /* '' */
.rtcl-icon-right-circled:before {
  content: "\f0a9";
} /* '' */
.rtcl-icon-up-circled:before {
  content: "\f0aa";
} /* '' */
.rtcl-icon-down-circled:before {
  content: "\f0ab";
} /* '' */
.rtcl-icon-tasks:before {
  content: "\f0ae";
} /* '' */
.rtcl-icon-filter:before {
  content: "\f0b0";
} /* '' */
.rtcl-icon-resize-full-alt:before {
  content: "\f0b2";
} /* '' */
.rtcl-icon-beaker:before {
  content: "\f0c3";
} /* '' */
.rtcl-icon-docs:before {
  content: "\f0c5";
} /* '' */
.rtcl-icon-blank:before {
  content: "\f0c8";
} /* '' */
.rtcl-icon-menu:before {
  content: "\f0c9";
} /* '' */
.rtcl-icon-strike:before {
  content: "\f0cc";
} /* '' */
.rtcl-icon-underline:before {
  content: "\f0cd";
} /* '' */
.rtcl-icon-table:before {
  content: "\f0ce";
} /* '' */
.rtcl-icon-magic:before {
  content: "\f0d0";
} /* '' */
.rtcl-icon-pinterest-circled:before {
  content: "\f0d2";
} /* '' */
.rtcl-icon-pinterest-squared:before {
  content: "\f0d3";
} /* '' */
.rtcl-icon-gplus-squared:before {
  content: "\f0d4";
} /* '' */
.rtcl-icon-gplus:before {
  content: "\f0d5";
} /* '' */
.rtcl-icon-money:before {
  content: "\f0d6";
} /* '' */
.rtcl-icon-columns:before {
  content: "\f0db";
} /* '' */
.rtcl-icon-sort:before {
  content: "\f0dc";
} /* '' */
.rtcl-icon-sort-down:before {
  content: "\f0dd";
} /* '' */
.rtcl-icon-sort-up:before {
  content: "\f0de";
} /* '' */
.rtcl-icon-mail-alt:before {
  content: "\f0e0";
} /* '' */
.rtcl-icon-linkedin:before {
  content: "\f0e1";
} /* '' */
.rtcl-icon-gauge:before {
  content: "\f0e4";
} /* '' */
.rtcl-icon-comment-empty:before {
  content: "\f0e5";
} /* '' */
.rtcl-icon-chat-empty:before {
  content: "\f0e6";
} /* '' */
.rtcl-icon-sitemap:before {
  content: "\f0e8";
} /* '' */
.rtcl-icon-paste:before {
  content: "\f0ea";
} /* '' */
.rtcl-icon-lightbulb:before {
  content: "\f0eb";
} /* '' */
.rtcl-icon-exchange:before {
  content: "\f0ec";
} /* '' */
.rtcl-icon-download-cloud:before {
  content: "\f0ed";
} /* '' */
.rtcl-icon-upload-cloud:before {
  content: "\f0ee";
} /* '' */
.rtcl-icon-user-md:before {
  content: "\f0f0";
} /* '' */
.rtcl-icon-stethoscope:before {
  content: "\f0f1";
} /* '' */
.rtcl-icon-suitcase:before {
  content: "\f0f2";
} /* '' */
.rtcl-icon-bell-alt:before {
  content: "\f0f3";
} /* '' */
.rtcl-icon-coffee:before {
  content: "\f0f4";
} /* '' */
.rtcl-icon-food:before {
  content: "\f0f5";
} /* '' */
.rtcl-icon-doc-text:before {
  content: "\f0f6";
} /* '' */
.rtcl-icon-building:before {
  content: "\f0f7";
} /* '' */
.rtcl-icon-hospital:before {
  content: "\f0f8";
} /* '' */
.rtcl-icon-ambulance:before {
  content: "\f0f9";
} /* '' */
.rtcl-icon-medkit:before {
  content: "\f0fa";
} /* '' */
.rtcl-icon-fighter-jet:before {
  content: "\f0fb";
} /* '' */
.rtcl-icon-h-sigh:before {
  content: "\f0fd";
} /* '' */
.rtcl-icon-plus-squared:before {
  content: "\f0fe";
} /* '' */
.rtcl-icon-angle-double-left:before {
  content: "\f100";
} /* '' */
.rtcl-icon-angle-double-right:before {
  content: "\f101";
} /* '' */
.rtcl-icon-angle-double-up:before {
  content: "\f102";
} /* '' */
.rtcl-icon-angle-double-down:before {
  content: "\f103";
} /* '' */
.rtcl-icon-angle-left:before {
  content: "\f104";
} /* '' */
.rtcl-icon-angle-right:before {
  content: "\f105";
} /* '' */
.rtcl-icon-angle-up:before {
  content: "\f106";
} /* '' */
.rtcl-icon-angle-down:before {
  content: "\f107";
} /* '' */
.rtcl-icon-desktop:before {
  content: "\f108";
} /* '' */
.rtcl-icon-laptop:before {
  content: "\f109";
} /* '' */
.rtcl-icon-tablet:before {
  content: "\f10a";
} /* '' */
.rtcl-icon-mobile:before {
  content: "\f10b";
} /* '' */
.rtcl-icon-circle-empty:before {
  content: "\f10c";
} /* '' */
.rtcl-icon-quote-left:before {
  content: "\f10d";
} /* '' */
.rtcl-icon-quote-right:before {
  content: "\f10e";
} /* '' */
.rtcl-icon-spinner:before {
  content: "\f110";
} /* '' */
.rtcl-icon-circle:before {
  content: "\f111";
} /* '' */
.rtcl-icon-reply:before {
  content: "\f112";
} /* '' */
.rtcl-icon-github:before {
  content: "\f113";
} /* '' */
.rtcl-icon-folder-empty:before {
  content: "\f114";
} /* '' */
.rtcl-icon-folder-open-empty:before {
  content: "\f115";
} /* '' */
.rtcl-icon-smile:before {
  content: "\f118";
} /* '' */
.rtcl-icon-frown:before {
  content: "\f119";
} /* '' */
.rtcl-icon-meh:before {
  content: "\f11a";
} /* '' */
.rtcl-icon-gamepad:before {
  content: "\f11b";
} /* '' */
.rtcl-icon-keyboard:before {
  content: "\f11c";
} /* '' */
.rtcl-icon-flag-empty:before {
  content: "\f11d";
} /* '' */
.rtcl-icon-flag-checkered:before {
  content: "\f11e";
} /* '' */
.rtcl-icon-terminal:before {
  content: "\f120";
} /* '' */
.rtcl-icon-code:before {
  content: "\f121";
} /* '' */
.rtcl-icon-reply-all:before {
  content: "\f122";
} /* '' */
.rtcl-icon-star-half-alt:before {
  content: "\f123";
} /* '' */
.rtcl-icon-direction:before {
  content: "\f124";
} /* '' */
.rtcl-icon-crop:before {
  content: "\f125";
} /* '' */
.rtcl-icon-fork:before {
  content: "\f126";
} /* '' */
.rtcl-icon-unlink:before {
  content: "\f127";
} /* '' */
.rtcl-icon-help:before {
  content: "\f128";
} /* '' */
.rtcl-icon-info:before {
  content: "\f129";
} /* '' */
.rtcl-icon-attention-alt:before {
  content: "\f12a";
} /* '' */
.rtcl-icon-superscript:before {
  content: "\f12b";
} /* '' */
.rtcl-icon-subscript:before {
  content: "\f12c";
} /* '' */
.rtcl-icon-eraser:before {
  content: "\f12d";
} /* '' */
.rtcl-icon-puzzle:before {
  content: "\f12e";
} /* '' */
.rtcl-icon-mic:before {
  content: "\f130";
} /* '' */
.rtcl-icon-mute:before {
  content: "\f131";
} /* '' */
.rtcl-icon-shield:before {
  content: "\f132";
} /* '' */
.rtcl-icon-calendar-empty:before {
  content: "\f133";
} /* '' */
.rtcl-icon-extinguisher:before {
  content: "\f134";
} /* '' */
.rtcl-icon-rocket:before {
  content: "\f135";
} /* '' */
.rtcl-icon-maxcdn:before {
  content: "\f136";
} /* '' */
.rtcl-icon-angle-circled-left:before {
  content: "\f137";
} /* '' */
.rtcl-icon-angle-circled-right:before {
  content: "\f138";
} /* '' */
.rtcl-icon-angle-circled-up:before {
  content: "\f139";
} /* '' */
.rtcl-icon-angle-circled-down:before {
  content: "\f13a";
} /* '' */
.rtcl-icon-css3:before {
  content: "\f13c";
} /* '' */
.rtcl-icon-anchor:before {
  content: "\f13d";
} /* '' */
.rtcl-icon-lock-open-alt:before {
  content: "\f13e";
} /* '' */
.rtcl-icon-bullseye:before {
  content: "\f140";
} /* '' */
.rtcl-icon-ellipsis:before {
  content: "\f141";
} /* '' */
.rtcl-icon-ellipsis-vert:before {
  content: "\f142";
} /* '' */
.rtcl-icon-rss-squared:before {
  content: "\f143";
} /* '' */
.rtcl-icon-play-circled:before {
  content: "\f144";
} /* '' */
.rtcl-icon-ticket:before {
  content: "\f145";
} /* '' */
.rtcl-icon-minus-squared:before {
  content: "\f146";
} /* '' */
.rtcl-icon-minus-squared-alt:before {
  content: "\f147";
} /* '' */
.rtcl-icon-level-up:before {
  content: "\f148";
} /* '' */
.rtcl-icon-level-down:before {
  content: "\f149";
} /* '' */
.rtcl-icon-ok-squared:before {
  content: "\f14a";
} /* '' */
.rtcl-icon-pencil-squared:before {
  content: "\f14b";
} /* '' */
.rtcl-icon-link-ext-alt:before {
  content: "\f14c";
} /* '' */
.rtcl-icon-export-alt:before {
  content: "\f14d";
} /* '' */
.rtcl-icon-compass:before {
  content: "\f14e";
} /* '' */
.rtcl-icon-expand:before {
  content: "\f150";
} /* '' */
.rtcl-icon-collapse:before {
  content: "\f151";
} /* '' */
.rtcl-icon-expand-right:before {
  content: "\f152";
} /* '' */
.rtcl-icon-euro:before {
  content: "\f153";
} /* '' */
.rtcl-icon-pound:before {
  content: "\f154";
} /* '' */
.rtcl-icon-dollar:before {
  content: "\f155";
} /* '' */
.rtcl-icon-rupee:before {
  content: "\f156";
} /* '' */
.rtcl-icon-yen:before {
  content: "\f157";
} /* '' */
.rtcl-icon-rouble:before {
  content: "\f158";
} /* '' */
.rtcl-icon-won:before {
  content: "\f159";
} /* '' */
.rtcl-icon-bitcoin:before {
  content: "\f15a";
} /* '' */
.rtcl-icon-doc-inv:before {
  content: "\f15b";
} /* '' */
.rtcl-icon-doc-text-inv:before {
  content: "\f15c";
} /* '' */
.rtcl-icon-sort-name-up:before {
  content: "\f15d";
} /* '' */
.rtcl-icon-sort-name-down:before {
  content: "\f15e";
} /* '' */
.rtcl-icon-sort-alt-up:before {
  content: "\f160";
} /* '' */
.rtcl-icon-sort-alt-down:before {
  content: "\f161";
} /* '' */
.rtcl-icon-sort-number-up:before {
  content: "\f162";
} /* '' */
.rtcl-icon-sort-number-down:before {
  content: "\f163";
} /* '' */
.rtcl-icon-thumbs-up-alt:before {
  content: "\f164";
} /* '' */
.rtcl-icon-thumbs-down-alt:before {
  content: "\f165";
} /* '' */
.rtcl-icon-youtube-squared:before {
  content: "\f166";
} /* '' */
.rtcl-icon-youtube:before {
  content: "\f167";
} /* '' */
.rtcl-icon-xing:before {
  content: "\f168";
} /* '' */
.rtcl-icon-xing-squared:before {
  content: "\f169";
} /* '' */
.rtcl-icon-youtube-play:before {
  content: "\f16a";
} /* '' */
.rtcl-icon-dropbox:before {
  content: "\f16b";
} /* '' */
.rtcl-icon-stackoverflow:before {
  content: "\f16c";
} /* '' */
.rtcl-icon-instagram:before {
  content: "\f16d";
} /* '' */
.rtcl-icon-flickr:before {
  content: "\f16e";
} /* '' */
.rtcl-icon-bitbucket:before {
  content: "\f171";
} /* '' */
.rtcl-icon-bitbucket-squared:before {
  content: "\f172";
} /* '' */
.rtcl-icon-tumblr:before {
  content: "\f173";
} /* '' */
.rtcl-icon-tumblr-squared:before {
  content: "\f174";
} /* '' */
.rtcl-icon-down:before {
  content: "\f175";
} /* '' */
.rtcl-icon-up:before {
  content: "\f176";
} /* '' */
.rtcl-icon-left:before {
  content: "\f177";
} /* '' */
.rtcl-icon-right:before {
  content: "\f178";
} /* '' */
.rtcl-icon-apple:before {
  content: "\f179";
} /* '' */
.rtcl-icon-windows:before {
  content: "\f17a";
} /* '' */
.rtcl-icon-android:before {
  content: "\f17b";
} /* '' */
.rtcl-icon-linux:before {
  content: "\f17c";
} /* '' */
.rtcl-icon-dribbble:before {
  content: "\f17d";
} /* '' */
.rtcl-icon-skype:before {
  content: "\f17e";
} /* '' */
.rtcl-icon-foursquare:before {
  content: "\f180";
} /* '' */
.rtcl-icon-trello:before {
  content: "\f181";
} /* '' */
.rtcl-icon-female:before {
  content: "\f182";
} /* '' */
.rtcl-icon-male:before {
  content: "\f183";
} /* '' */
.rtcl-icon-gittip:before {
  content: "\f184";
} /* '' */
.rtcl-icon-sun:before {
  content: "\f185";
} /* '' */
.rtcl-icon-moon:before {
  content: "\f186";
} /* '' */
.rtcl-icon-box:before {
  content: "\f187";
} /* '' */
.rtcl-icon-bug:before {
  content: "\f188";
} /* '' */
.rtcl-icon-vkontakte:before {
  content: "\f189";
} /* '' */
.rtcl-icon-weibo:before {
  content: "\f18a";
} /* '' */
.rtcl-icon-renren:before {
  content: "\f18b";
} /* '' */
.rtcl-icon-pagelines:before {
  content: "\f18c";
} /* '' */
.rtcl-icon-stackexchange:before {
  content: "\f18d";
} /* '' */
.rtcl-icon-right-circled2:before {
  content: "\f18e";
} /* '' */
.rtcl-icon-left-circled2:before {
  content: "\f190";
} /* '' */
.rtcl-icon-collapse-left:before {
  content: "\f191";
} /* '' */
.rtcl-icon-dot-circled:before {
  content: "\f192";
} /* '' */
.rtcl-icon-wheelchair:before {
  content: "\f193";
} /* '' */
.rtcl-icon-vimeo-squared:before {
  content: "\f194";
} /* '' */
.rtcl-icon-try:before {
  content: "\f195";
} /* '' */
.rtcl-icon-plus-squared-alt:before {
  content: "\f196";
} /* '' */
.rtcl-icon-space-shuttle:before {
  content: "\f197";
} /* '' */
.rtcl-icon-slack:before {
  content: "\f198";
} /* '' */
.rtcl-icon-wordpress:before {
  content: "\f19a";
} /* '' */
.rtcl-icon-openid:before {
  content: "\f19b";
} /* '' */
.rtcl-icon-bank:before {
  content: "\f19c";
} /* '' */
.rtcl-icon-graduation-cap:before {
  content: "\f19d";
} /* '' */
.rtcl-icon-yahoo:before {
  content: "\f19e";
} /* '' */
.rtcl-icon-google:before {
  content: "\f1a0";
} /* '' */
.rtcl-icon-reddit:before {
  content: "\f1a1";
} /* '' */
.rtcl-icon-reddit-squared:before {
  content: "\f1a2";
} /* '' */
.rtcl-icon-stumbleupon-circled:before {
  content: "\f1a3";
} /* '' */
.rtcl-icon-stumbleupon:before {
  content: "\f1a4";
} /* '' */
.rtcl-icon-delicious:before {
  content: "\f1a5";
} /* '' */
.rtcl-icon-digg:before {
  content: "\f1a6";
} /* '' */
.rtcl-icon-pied-piper-squared:before {
  content: "\f1a7";
} /* '' */
.rtcl-icon-pied-piper-alt:before {
  content: "\f1a8";
} /* '' */
.rtcl-icon-drupal:before {
  content: "\f1a9";
} /* '' */
.rtcl-icon-joomla:before {
  content: "\f1aa";
} /* '' */
.rtcl-icon-language:before {
  content: "\f1ab";
} /* '' */
.rtcl-icon-building-filled:before {
  content: "\f1ad";
} /* '' */
.rtcl-icon-child:before {
  content: "\f1ae";
} /* '' */
.rtcl-icon-paw:before {
  content: "\f1b0";
} /* '' */
.rtcl-icon-spoon:before {
  content: "\f1b1";
} /* '' */
.rtcl-icon-cube:before {
  content: "\f1b2";
} /* '' */
.rtcl-icon-cubes:before {
  content: "\f1b3";
} /* '' */
.rtcl-icon-behance:before {
  content: "\f1b4";
} /* '' */
.rtcl-icon-behance-squared:before {
  content: "\f1b5";
} /* '' */
.rtcl-icon-steam:before {
  content: "\f1b6";
} /* '' */
.rtcl-icon-steam-squared:before {
  content: "\f1b7";
} /* '' */
.rtcl-icon-recycle:before {
  content: "\f1b8";
} /* '' */
.rtcl-icon-cab:before {
  content: "\f1b9";
} /* '' */
.rtcl-icon-taxi:before {
  content: "\f1ba";
} /* '' */
.rtcl-icon-tree:before {
  content: "\f1bb";
} /* '' */
.rtcl-icon-spotify:before {
  content: "\f1bc";
} /* '' */
.rtcl-icon-deviantart:before {
  content: "\f1bd";
} /* '' */
.rtcl-icon-soundcloud:before {
  content: "\f1be";
} /* '' */
.rtcl-icon-database:before {
  content: "\f1c0";
} /* '' */
.rtcl-icon-file-pdf:before {
  content: "\f1c1";
} /* '' */
.rtcl-icon-file-image:before {
  content: "\f1c5";
} /* '' */
.rtcl-icon-file-archive:before {
  content: "\f1c6";
} /* '' */
.rtcl-icon-vine:before {
  content: "\f1ca";
} /* '' */
.rtcl-icon-codeopen:before {
  content: "\f1cb";
} /* '' */
.rtcl-icon-jsfiddle:before {
  content: "\f1cc";
} /* '' */
.rtcl-icon-lifebuoy:before {
  content: "\f1cd";
} /* '' */
.rtcl-icon-circle-notch:before {
  content: "\f1ce";
} /* '' */
.rtcl-icon-rebel:before {
  content: "\f1d0";
} /* '' */
.rtcl-icon-empire:before {
  content: "\f1d1";
} /* '' */
.rtcl-icon-git-squared:before {
  content: "\f1d2";
} /* '' */
.rtcl-icon-git:before {
  content: "\f1d3";
} /* '' */
.rtcl-icon-hacker-news:before {
  content: "\f1d4";
} /* '' */
.rtcl-icon-tencent-weibo:before {
  content: "\f1d5";
} /* '' */
.rtcl-icon-qq:before {
  content: "\f1d6";
} /* '' */
.rtcl-icon-wechat:before {
  content: "\f1d7";
} /* '' */
.rtcl-icon-paper-plane:before {
  content: "\f1d8";
} /* '' */
.rtcl-icon-paper-plane-empty:before {
  content: "\f1d9";
} /* '' */
.rtcl-icon-circle-thin:before {
  content: "\f1db";
} /* '' */
.rtcl-icon-header:before {
  content: "\f1dc";
} /* '' */
.rtcl-icon-sliders:before {
  content: "\f1de";
} /* '' */
.rtcl-icon-share:before {
  content: "\f1e0";
} /* '' */
.rtcl-icon-bomb:before {
  content: "\f1e2";
} /* '' */
.rtcl-icon-soccer-ball:before {
  content: "\f1e3";
} /* '' */
.rtcl-icon-tty:before {
  content: "\f1e4";
} /* '' */
.rtcl-icon-binoculars:before {
  content: "\f1e5";
} /* '' */
.rtcl-icon-plug:before {
  content: "\f1e6";
} /* '' */
.rtcl-icon-slideshare:before {
  content: "\f1e7";
} /* '' */
.rtcl-icon-twitch:before {
  content: "\f1e8";
} /* '' */
.rtcl-icon-yelp:before {
  content: "\f1e9";
} /* '' */
.rtcl-icon-newspaper:before {
  content: "\f1ea";
} /* '' */
.rtcl-icon-wifi:before {
  content: "\f1eb";
} /* '' */
.rtcl-icon-calc:before {
  content: "\f1ec";
} /* '' */
.rtcl-icon-paypal:before {
  content: "\f1ed";
} /* '' */
.rtcl-icon-gwallet:before {
  content: "\f1ee";
} /* '' */
.rtcl-icon-cc-visa:before {
  content: "\f1f0";
} /* '' */
.rtcl-icon-cc-mastercard:before {
  content: "\f1f1";
} /* '' */
.rtcl-icon-cc-discover:before {
  content: "\f1f2";
} /* '' */
.rtcl-icon-cc-amex:before {
  content: "\f1f3";
} /* '' */
.rtcl-icon-cc-paypal:before {
  content: "\f1f4";
} /* '' */
.rtcl-icon-cc-stripe:before {
  content: "\f1f5";
} /* '' */
.rtcl-icon-bell-off:before {
  content: "\f1f6";
} /* '' */
.rtcl-icon-bell-off-empty:before {
  content: "\f1f7";
} /* '' */
.rtcl-icon-trash:before {
  content: "\f1f8";
} /* '' */
.rtcl-icon-copyright:before {
  content: "\f1f9";
} /* '' */
.rtcl-icon-at:before {
  content: "\f1fa";
} /* '' */
.rtcl-icon-eyedropper:before {
  content: "\f1fb";
} /* '' */
.rtcl-icon-brush:before {
  content: "\f1fc";
} /* '' */
.rtcl-icon-birthday:before {
  content: "\f1fd";
} /* '' */
.rtcl-icon-chart-area:before {
  content: "\f1fe";
} /* '' */
.rtcl-icon-chart-pie:before {
  content: "\f200";
} /* '' */
.rtcl-icon-chart-line:before {
  content: "\f201";
} /* '' */
.rtcl-icon-lastfm:before {
  content: "\f202";
} /* '' */
.rtcl-icon-lastfm-squared:before {
  content: "\f203";
} /* '' */
.rtcl-icon-toggle-off:before {
  content: "\f204";
} /* '' */
.rtcl-icon-toggle-on:before {
  content: "\f205";
} /* '' */
.rtcl-icon-bicycle:before {
  content: "\f206";
} /* '' */
.rtcl-icon-bus:before {
  content: "\f207";
} /* '' */
.rtcl-icon-ioxhost:before {
  content: "\f208";
} /* '' */
.rtcl-icon-angellist:before {
  content: "\f209";
} /* '' */
.rtcl-icon-cc:before {
  content: "\f20a";
} /* '' */
.rtcl-icon-shekel:before {
  content: "\f20b";
} /* '' */
.rtcl-icon-meanpath:before {
  content: "\f20c";
} /* '' */
.rtcl-icon-buysellads:before {
  content: "\f20d";
} /* '' */
.rtcl-icon-connectdevelop:before {
  content: "\f20e";
} /* '' */
.rtcl-icon-dashcube:before {
  content: "\f210";
} /* '' */
.rtcl-icon-forumbee:before {
  content: "\f211";
} /* '' */
.rtcl-icon-leanpub:before {
  content: "\f212";
} /* '' */
.rtcl-icon-sellsy:before {
  content: "\f213";
} /* '' */
.rtcl-icon-shirtsinbulk:before {
  content: "\f214";
} /* '' */
.rtcl-icon-simplybuilt:before {
  content: "\f215";
} /* '' */
.rtcl-icon-skyatlas:before {
  content: "\f216";
} /* '' */
.rtcl-icon-diamond:before {
  content: "\f219";
} /* '' */
.rtcl-icon-ship:before {
  content: "\f21a";
} /* '' */
.rtcl-icon-user-secret:before {
  content: "\f21b";
} /* '' */
.rtcl-icon-motorcycle:before {
  content: "\f21c";
} /* '' */
.rtcl-icon-street-view:before {
  content: "\f21d";
} /* '' */
.rtcl-icon-heartbeat:before {
  content: "\f21e";
} /* '' */
.rtcl-icon-venus:before {
  content: "\f221";
} /* '' */
.rtcl-icon-mars:before {
  content: "\f222";
} /* '' */
.rtcl-icon-mercury:before {
  content: "\f223";
} /* '' */
.rtcl-icon-transgender:before {
  content: "\f224";
} /* '' */
.rtcl-icon-transgender-alt:before {
  content: "\f225";
} /* '' */
.rtcl-icon-venus-double:before {
  content: "\f226";
} /* '' */
.rtcl-icon-mars-double:before {
  content: "\f227";
} /* '' */
.rtcl-icon-venus-mars:before {
  content: "\f228";
} /* '' */
.rtcl-icon-mars-stroke:before {
  content: "\f229";
} /* '' */
.rtcl-icon-mars-stroke-v:before {
  content: "\f22a";
} /* '' */
.rtcl-icon-mars-stroke-h:before {
  content: "\f22b";
} /* '' */
.rtcl-icon-neuter:before {
  content: "\f22c";
} /* '' */
.rtcl-icon-genderless:before {
  content: "\f22d";
} /* '' */
.rtcl-icon-facebook-official:before {
  content: "\f230";
} /* '' */
.rtcl-icon-pinterest:before {
  content: "\f231";
} /* '' */
.rtcl-icon-whatsapp:before {
  content: "\f232";
} /* '' */
.rtcl-icon-server:before {
  content: "\f233";
} /* '' */
.rtcl-icon-user-plus:before {
  content: "\f234";
} /* '' */
.rtcl-icon-user-times:before {
  content: "\f235";
} /* '' */
.rtcl-icon-bed:before {
  content: "\f236";
} /* '' */
.rtcl-icon-viacoin:before {
  content: "\f237";
} /* '' */
.rtcl-icon-train:before {
  content: "\f238";
} /* '' */
.rtcl-icon-subway:before {
  content: "\f239";
} /* '' */
.rtcl-icon-medium:before {
  content: "\f23a";
} /* '' */
.rtcl-icon-y-combinator:before {
  content: "\f23b";
} /* '' */
.rtcl-icon-optin-monster:before {
  content: "\f23c";
} /* '' */
.rtcl-icon-opencart:before {
  content: "\f23d";
} /* '' */
.rtcl-icon-expeditedssl:before {
  content: "\f23e";
} /* '' */
.rtcl-icon-battery-4:before {
  content: "\f240";
} /* '' */
.rtcl-icon-battery-3:before {
  content: "\f241";
} /* '' */
.rtcl-icon-battery-2:before {
  content: "\f242";
} /* '' */
.rtcl-icon-battery-1:before {
  content: "\f243";
} /* '' */
.rtcl-icon-battery-0:before {
  content: "\f244";
} /* '' */
.rtcl-icon-mouse-pointer:before {
  content: "\f245";
} /* '' */
.rtcl-icon-i-cursor:before {
  content: "\f246";
} /* '' */
.rtcl-icon-object-group:before {
  content: "\f247";
} /* '' */
.rtcl-icon-object-ungroup:before {
  content: "\f248";
} /* '' */
.rtcl-icon-sticky-note:before {
  content: "\f249";
} /* '' */
.rtcl-icon-sticky-note-o:before {
  content: "\f24a";
} /* '' */
.rtcl-icon-cc-jcb:before {
  content: "\f24b";
} /* '' */
.rtcl-icon-cc-diners-club:before {
  content: "\f24c";
} /* '' */
.rtcl-icon-clone:before {
  content: "\f24d";
} /* '' */
.rtcl-icon-balance-scale:before {
  content: "\f24e";
} /* '' */
.rtcl-icon-hourglass-o:before {
  content: "\f250";
} /* '' */
.rtcl-icon-hourglass-1:before {
  content: "\f251";
} /* '' */
.rtcl-icon-hourglass-2:before {
  content: "\f252";
} /* '' */
.rtcl-icon-hourglass-3:before {
  content: "\f253";
} /* '' */
.rtcl-icon-hourglass:before {
  content: "\f254";
} /* '' */
.rtcl-icon-hand-grab-o:before {
  content: "\f255";
} /* '' */
.rtcl-icon-hand-paper-o:before {
  content: "\f256";
} /* '' */
.rtcl-icon-hand-scissors-o:before {
  content: "\f257";
} /* '' */
.rtcl-icon-hand-lizard-o:before {
  content: "\f258";
} /* '' */
.rtcl-icon-hand-spock-o:before {
  content: "\f259";
} /* '' */
.rtcl-icon-hand-pointer-o:before {
  content: "\f25a";
} /* '' */
.rtcl-icon-hand-peace-o:before {
  content: "\f25b";
} /* '' */
.rtcl-icon-trademark:before {
  content: "\f25c";
} /* '' */
.rtcl-icon-registered:before {
  content: "\f25d";
} /* '' */
.rtcl-icon-creative-commons:before {
  content: "\f25e";
} /* '' */
.rtcl-icon-gg:before {
  content: "\f260";
} /* '' */
.rtcl-icon-gg-circle:before {
  content: "\f261";
} /* '' */
.rtcl-icon-tripadvisor:before {
  content: "\f262";
} /* '' */
.rtcl-icon-odnoklassniki:before {
  content: "\f263";
} /* '' */
.rtcl-icon-odnoklassniki-square:before {
  content: "\f264";
} /* '' */
.rtcl-icon-get-pocket:before {
  content: "\f265";
} /* '' */
.rtcl-icon-wikipedia-w:before {
  content: "\f266";
} /* '' */
.rtcl-icon-safari:before {
  content: "\f267";
} /* '' */
.rtcl-icon-chrome:before {
  content: "\f268";
} /* '' */
.rtcl-icon-firefox:before {
  content: "\f269";
} /* '' */
.rtcl-icon-opera:before {
  content: "\f26a";
} /* '' */
.rtcl-icon-internet-explorer:before {
  content: "\f26b";
} /* '' */
.rtcl-icon-television:before {
  content: "\f26c";
} /* '' */
.rtcl-icon-contao:before {
  content: "\f26d";
} /* '' */
.rtcl-icon-500px:before {
  content: "\f26e";
} /* '' */
.rtcl-icon-amazon:before {
  content: "\f270";
} /* '' */
.rtcl-icon-calendar-plus-o:before {
  content: "\f271";
} /* '' */
.rtcl-icon-calendar-minus-o:before {
  content: "\f272";
} /* '' */
.rtcl-icon-calendar-times-o:before {
  content: "\f273";
} /* '' */
.rtcl-icon-calendar-check-o:before {
  content: "\f274";
} /* '' */
.rtcl-icon-industry:before {
  content: "\f275";
} /* '' */
.rtcl-icon-map-pin:before {
  content: "\f276";
} /* '' */
.rtcl-icon-map-signs:before {
  content: "\f277";
} /* '' */
.rtcl-icon-map-o:before {
  content: "\f278";
} /* '' */
.rtcl-icon-map:before {
  content: "\f279";
} /* '' */
.rtcl-icon-commenting:before {
  content: "\f27a";
} /* '' */
.rtcl-icon-commenting-o:before {
  content: "\f27b";
} /* '' */
.rtcl-icon-houzz:before {
  content: "\f27c";
} /* '' */
.rtcl-icon-vimeo:before {
  content: "\f27d";
} /* '' */
.rtcl-icon-black-tie:before {
  content: "\f27e";
} /* '' */
.rtcl-icon-fonticons:before {
  content: "\f280";
} /* '' */
.rtcl-icon-reddit-alien:before {
  content: "\f281";
} /* '' */
.rtcl-icon-edge:before {
  content: "\f282";
} /* '' */
.rtcl-icon-credit-card-alt:before {
  content: "\f283";
} /* '' */
.rtcl-icon-codiepie:before {
  content: "\f284";
} /* '' */
.rtcl-icon-modx:before {
  content: "\f285";
} /* '' */
.rtcl-icon-fort-awesome:before {
  content: "\f286";
} /* '' */
.rtcl-icon-usb:before {
  content: "\f287";
} /* '' */
.rtcl-icon-product-hunt:before {
  content: "\f288";
} /* '' */
.rtcl-icon-mixcloud:before {
  content: "\f289";
} /* '' */
.rtcl-icon-scribd:before {
  content: "\f28a";
} /* '' */
.rtcl-icon-pause-circle:before {
  content: "\f28b";
} /* '' */
.rtcl-icon-pause-circle-o:before {
  content: "\f28c";
} /* '' */
.rtcl-icon-stop-circle:before {
  content: "\f28d";
} /* '' */
.rtcl-icon-stop-circle-o:before {
  content: "\f28e";
} /* '' */
.rtcl-icon-shopping-bag:before {
  content: "\f290";
} /* '' */
.rtcl-icon-shopping-basket:before {
  content: "\f291";
} /* '' */
.rtcl-icon-hashtag:before {
  content: "\f292";
} /* '' */
.rtcl-icon-bluetooth:before {
  content: "\f293";
} /* '' */
.rtcl-icon-bluetooth-b:before {
  content: "\f294";
} /* '' */
.rtcl-icon-percent:before {
  content: "\f295";
} /* '' */
.rtcl-icon-gitlab:before {
  content: "\f296";
} /* '' */
.rtcl-icon-wpbeginner:before {
  content: "\f297";
} /* '' */
.rtcl-icon-wpforms:before {
  content: "\f298";
} /* '' */
.rtcl-icon-envira:before {
  content: "\f299";
} /* '' */
.rtcl-icon-universal-access:before {
  content: "\f29a";
} /* '' */
.rtcl-icon-wheelchair-alt:before {
  content: "\f29b";
} /* '' */
.rtcl-icon-question-circle-o:before {
  content: "\f29c";
} /* '' */
.rtcl-icon-blind:before {
  content: "\f29d";
} /* '' */
.rtcl-icon-audio-description:before {
  content: "\f29e";
} /* '' */
.rtcl-icon-volume-control-phone:before {
  content: "\f2a0";
} /* '' */
.rtcl-icon-braille:before {
  content: "\f2a1";
} /* '' */
.rtcl-icon-assistive-listening-systems:before {
  content: "\f2a2";
} /* '' */
.rtcl-icon-american-sign-language-interpreting:before {
  content: "\f2a3";
} /* '' */
.rtcl-icon-asl-interpreting:before {
  content: "\f2a4";
} /* '' */
.rtcl-icon-glide-g:before {
  content: "\f2a6";
} /* '' */
.rtcl-icon-sign-language:before {
  content: "\f2a7";
} /* '' */
.rtcl-icon-low-vision:before {
  content: "\f2a8";
} /* '' */
.rtcl-icon-viadeo:before {
  content: "\f2a9";
} /* '' */
.rtcl-icon-viadeo-square:before {
  content: "\f2aa";
} /* '' */
.rtcl-icon-snapchat:before {
  content: "\f2ab";
} /* '' */
.rtcl-icon-snapchat-ghost:before {
  content: "\f2ac";
} /* '' */
.rtcl-icon-snapchat-square:before {
  content: "\f2ad";
} /* '' */
.rtcl-icon-pied-piper:before {
  content: "\f2ae";
} /* '' */
.rtcl-icon-first-order:before {
  content: "\f2b0";
} /* '' */
.rtcl-icon-yoast:before {
  content: "\f2b1";
} /* '' */
.rtcl-icon-themeisle:before {
  content: "\f2b2";
} /* '' */
.rtcl-icon-google-plus-circle:before {
  content: "\f2b3";
} /* '' */
.rtcl-icon-font-awesome:before {
  content: "\f2b4";
} /* '' */
.rtcl-icon-handshake-o:before {
  content: "\f2b5";
} /* '' */
.rtcl-icon-envelope-open:before {
  content: "\f2b6";
} /* '' */
.rtcl-icon-envelope-open-o:before {
  content: "\f2b7";
} /* '' */
.rtcl-icon-linode:before {
  content: "\f2b8";
} /* '' */
.rtcl-icon-address-book:before {
  content: "\f2b9";
} /* '' */
.rtcl-icon-address-book-o:before {
  content: "\f2ba";
} /* '' */
.rtcl-icon-address-card:before {
  content: "\f2bb";
} /* '' */
.rtcl-icon-address-card-o:before {
  content: "\f2bc";
} /* '' */
.rtcl-icon-user-circle:before {
  content: "\f2bd";
} /* '' */
.rtcl-icon-user-circle-o:before {
  content: "\f2be";
} /* '' */
.rtcl-icon-user-o:before {
  content: "\f2c0";
} /* '' */
.rtcl-icon-id-badge:before {
  content: "\f2c1";
} /* '' */
.rtcl-icon-id-card:before {
  content: "\f2c2";
} /* '' */
.rtcl-icon-id-card-o:before {
  content: "\f2c3";
} /* '' */
.rtcl-icon-quora:before {
  content: "\f2c4";
} /* '' */
.rtcl-icon-free-code-camp:before {
  content: "\f2c5";
} /* '' */
.rtcl-icon-telegram:before {
  content: "\f2c6";
} /* '' */
.rtcl-icon-thermometer:before {
  content: "\f2c7";
} /* '' */
.rtcl-icon-thermometer-3:before {
  content: "\f2c8";
} /* '' */
.rtcl-icon-thermometer-2:before {
  content: "\f2c9";
} /* '' */
.rtcl-icon-thermometer-quarter:before {
  content: "\f2ca";
} /* '' */
.rtcl-icon-thermometer-0:before {
  content: "\f2cb";
} /* '' */
.rtcl-icon-shower:before {
  content: "\f2cc";
} /* '' */
.rtcl-icon-bath:before {
  content: "\f2cd";
} /* '' */
.rtcl-icon-podcast:before {
  content: "\f2ce";
} /* '' */
.rtcl-icon-window-maximize:before {
  content: "\f2d0";
} /* '' */
.rtcl-icon-window-minimize:before {
  content: "\f2d1";
} /* '' */
.rtcl-icon-window-restore:before {
  content: "\f2d2";
} /* '' */
.rtcl-icon-window-close:before {
  content: "\f2d3";
} /* '' */
.rtcl-icon-window-close-o:before {
  content: "\f2d4";
} /* '' */
.rtcl-icon-bandcamp:before {
  content: "\f2d5";
} /* '' */
.rtcl-icon-grav:before {
  content: "\f2d6";
} /* '' */
.rtcl-icon-etsy:before {
  content: "\f2d7";
} /* '' */
.rtcl-icon-imdb:before {
  content: "\f2d8";
} /* '' */
.rtcl-icon-ravelry:before {
  content: "\f2d9";
} /* '' */
.rtcl-icon-eercast:before {
  content: "\f2da";
} /* '' */
.rtcl-icon-microchip:before {
  content: "\f2db";
} /* '' */
.rtcl-icon-snowflake-o:before {
  content: "\f2dc";
} /* '' */
.rtcl-icon-superpowers:before {
  content: "\f2dd";
} /* '' */
.rtcl-icon-wpexplorer:before {
  content: "\f2de";
} /* '' */
.rtcl-icon-meetup:before {
  content: "\f2e0";
} /* '' */
.rtcl-icon-github-squared:before {
  content: "\f300";
} /* '' */
.rtcl-icon-twitter-squared:before {
  content: "\f304";
} /* '' */
.rtcl-icon-facebook-squared:before {
  content: "\f308";
} /* '' */
.rtcl-icon-linkedin-squared:before {
  content: "\f30c";
} /* '' */
.toast-title {
  font-weight: bold;
}

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #ffffff;
}

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}

#toast-container * {
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toast-container > div:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #030303;
}

.toast-success {
  background-color: #51a351;
}

.toast-error {
  background-color: #bd362f;
}

.toast-info {
  background-color: #2f96b4;
}

.toast-warning {
  background-color: #f89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
#toast-container .toast {
  background-color: #030303;
  border: none;
}
#toast-container .toast-success {
  background-color: #51a351;
}
#toast-container .toast-error {
  background-color: #bd362f;
}
#toast-container .toast-info {
  background-color: #2f96b4;
}
#toast-container .toast-warning {
  background-color: #f89406;
}

#rtcl-bhs-holder {
  position: relative;
}
#rtcl-bhs-holder .form-check-input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  max-width: 15px;
  max-height: 15px;
}
#rtcl-bhs-holder .form-check-input:focus {
  outline: none;
}
#rtcl-bhs-holder .form-check {
  padding-left: 1.25rem;
  line-height: 1;
}
#rtcl-bhs-holder .form-check-label {
  line-height: 1.5rem;
  cursor: pointer;
}
#rtcl-bhs-holder [for=rtcl-active-bhs],
#rtcl-bhs-holder [for=rtcl-active-special-bhs] {
  font-weight: bold;
}
#rtcl-bhs-holder #rtcl-special-bhs-container {
  display: none;
}
#rtcl-bhs-holder #rtcl-special-bhs-wrap {
  position: relative;
  margin-top: 25px;
}
#rtcl-bhs-holder input#rtcl-active-bhs, #rtcl-bhs-holder input#rtcl-active-special-bhs {
  top: 0.6rem;
  left: 0;
  margin: 0;
  position: absolute;
}
#rtcl-bhs-holder input[type=checkbox]#rtcl-active-special-bhs:checked + #rtcl-special-bhs-container {
  display: block;
}

.rtcl-bhs {
  display: flex;
  flex-direction: column;
}
.rtcl-bhs .rtcl-bhs-btn {
  cursor: pointer;
  color: #fff !important;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtcl-bhs .rtcl-bhs-btn:hover {
  opacity: 0.6;
}
.rtcl-bhs .rtcl-bhs-btn.rtcl-icon-plus {
  background-color: green;
}
.rtcl-bhs .rtcl-bhs-btn.rtcl-icon-minus {
  background-color: #dc3545;
}
.rtcl-bhs .rtcl-bh {
  display: flex;
}
.rtcl-bhs .rtcl-bh .rtcl-day-label {
  flex: 0 0 120px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .rtcl-bhs .rtcl-bh .rtcl-day-label {
    flex: 0 0 100px;
    max-width: 100px;
  }
}
.rtcl-bhs .rtcl-bh + .rtcl-bh {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ced4da;
}
.rtcl-bhs .rtcl-day-actions {
  position: relative;
}
.rtcl-bhs .rtcl-day-actions .form-check-input {
  position: absolute;
  top: 0.6rem;
  margin: 0;
  left: 0.1rem;
}
.rtcl-bhs .rtcl-day-actions .form-check-input.check-time-slot {
  top: 2.45rem;
}
.rtcl-bhs .day-time-slot,
.rtcl-bhs .check-time-slot,
.rtcl-bhs .time-slots {
  display: none;
}
.rtcl-bhs .time-slots {
  max-width: 330px;
}
.rtcl-bhs input[type=checkbox].check-open:checked + .day-time-slot,
.rtcl-bhs input[type=checkbox].check-open:checked + .day-time-slot + input[type=checkbox].check-time-slot,
.rtcl-bhs input[type=checkbox].check-time-slot:checked + .time-slots {
  display: block;
}
.rtcl-bhs .time-slot {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 6px;
}
.rtcl-bhs .time-slot .time-slot-action {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.rtcl-bhs .time-slot .time-slot-action a:focus {
  box-shadow: none;
}
.rtcl-bhs .time-slot .time-slot-start, .rtcl-bhs .time-slot .time-slot-end {
  display: flex;
  flex-direction: column;
}
.rtcl-bhs .time-slot:first-child .time-slot-end:before, .rtcl-bhs .time-slot:first-child .time-slot-start:before {
  font-weight: bold;
}
.rtcl-bhs .time-slot:first-child .time-slot-start:before {
  content: attr(data-column);
  margin-bottom: 5px;
}
.rtcl-bhs .time-slot:first-child .time-slot-end:before {
  content: attr(data-column);
  margin-bottom: 5px;
}
.rtcl-bhs .time-slot + .time-slot {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ced4da;
}
.rtcl-bhs input.bhs-datepicker, .rtcl-bhs input.bhs-timepicker {
  border: 2px solid #ccc;
  border-radius: 5px;
  box-shadow: none;
  background-color: #eee;
  max-width: 8em;
}
@media screen and (max-width: 600px) {
  .rtcl-bhs input.bhs-datepicker, .rtcl-bhs input.bhs-timepicker {
    max-width: 6em;
  }
}
.rtcl-bhs input.bhs-datepicker {
  max-width: 10em;
}
@media screen and (max-width: 600px) {
  .rtcl-bhs input.bhs-datepicker {
    max-width: 7em;
  }
}
.rtcl-bhs .rtcl-special-bh {
  display: flex;
}
.rtcl-bhs .rtcl-special-bh .rtcl-special-bh-actions {
  flex: 1;
  margin: 0 15px;
  max-width: 400px;
}
@media screen and (max-width: 600px) {
  .rtcl-bhs .rtcl-special-bh .rtcl-special-bh-actions {
    margin: 0 10px;
  }
}

/* single listing Front end */
.rtclbh-separator {
  text-align: center;
}

.rtclbh-block {
  background-color: #fff;
  padding: 25px;
  margin-top: 20px;
  font-size: 16px;
  box-shadow: 0 0 20px #f0f0f0;
  border-radius: 4px;
}
.rtclbh-block .rtclbh {
  border-color: rgba(0, 0, 0, 0.1);
}
.rtclbh-block .rtclbh th,
.rtclbh-block .rtclbh td {
  border-color: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .rtclbh-block .rtclbh th,
  .rtclbh-block .rtclbh td {
    padding: 5px;
  }
}
.rtclbh-block .rtclbh-status {
  margin: 0 0 1.25rem 0;
  font-weight: 500;
}
.rtclbh-block .rtclbh-status-open {
  color: green;
}
.rtclbh-block .rtclbh-status-closed {
  color: red;
}
.rtclbh-block .rtclbh-active.rtclbh-opened td, .rtclbh-block .rtclbh-active.rtclbh-closed td {
  font-weight: 500;
}
.rtclbh-block .rtclbh-active.rtclbh-opened td {
  color: green;
}
.rtclbh-block .rtclbh-active.rtclbh-closed td {
  color: red;
}

* {
  box-sizing: border-box;
}

.rtcl-admin-btn {
  border-radius: 0.2rem;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.25rem 0.5rem;
  background-color: transparent;
  border: 1px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.rtcl-admin-btn.lg {
  border-radius: 0.3rem;
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 0.5rem 1rem;
}
.rtcl-admin-btn:disabled {
  cursor: not-allowed;
}
.rtcl-admin-btn.nav-link {
  background-color: var(--rtcl-primary-color);
  color: #fff;
}
.rtcl-admin-btn.outline {
  border-color: var(--rtcl-primary-color);
  color: var(--rtcl-primary-color);
}
.rtcl-admin-btn.outline:hover {
  background-color: var(--rtcl-primary-color);
  color: #fff;
}
.rtcl-admin-btn.primary {
  background-color: var(--rtcl-primary-color);
  border-color: var(--rtcl-primary-color);
  color: #fff;
}
.rtcl-admin-btn.primary:hover {
  opacity: 0.7;
}
.rtcl-admin-btn.success {
  background-color: #5eba00;
  border-color: #5eba00;
  color: #fff;
}
.rtcl-admin-btn.success:hover {
  background-color: #4b9400;
  border-color: #448700;
  color: #fff;
}
.rtcl-admin-btn.block {
  width: 100%;
}

.rtcl-modal-field {
  display: flex;
  grid-gap: 10px;
}
.rtcl-modal-field + .rtcl-modal-field {
  margin-top: 10px;
}
.rtcl-modal-field .rtcl-mf-label {
  font-size: inherit;
  line-height: 1.5;
  margin-bottom: 0;
  padding-bottom: calc(0.375rem + 1px);
  padding-top: calc(0.375rem + 1px);
  flex: 0 0 25%;
  max-width: 25%;
}
.rtcl-modal-field .rtcl-mf-label label {
  font-size: 14px;
  font-weight: 600;
}
.rtcl-modal-field .rtcl-mf-content {
  flex: 1;
  padding-bottom: calc(0.375rem + 1px);
  padding-top: calc(0.375rem + 1px);
}
.rtcl-modal-field .rtcl-mf-content [type=text],
.rtcl-modal-field .rtcl-mf-content [type=number],
.rtcl-modal-field .rtcl-mf-content textarea {
  line-height: 1.2;
  padding: 8px 15px;
}
.rtcl-modal-field .rtcl-mf-content [type=text],
.rtcl-modal-field .rtcl-mf-content textarea {
  width: 100%;
}
.rtcl-modal-field .rtcl-mf-content.invalid input, .rtcl-modal-field .rtcl-mf-content.invalid textarea {
  border-color: red;
}
.rtcl-modal-field .rtcl-mf-content .description {
  font-size: 80%;
  font-style: italic;
}
.rtcl-modal-field .rtcl-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rtcl-modal-field .rtcl-checkbox-group label {
  cursor: pointer;
}

.rtcl-cat-label {
  display: flex;
  gap: 5px;
  align-items: center;
}
.rtcl-cat-label .rtcl-cat-img {
  width: 20px;
  height: 20px;
}
.rtcl-cat-label .rtcl-cat-icon {
  font-size: 20px;
}

/* ============== Password strength START ============== */
.rtcl-pass-strength-result {
  background-color: #f0f0f1;
  border: 1px solid #dcdcde;
  color: #1d2327;
  margin: -1px 1px 5px;
  padding: 3px 5px;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
}
.rtcl-pass-strength-result.empty {
  display: none;
}
.rtcl-pass-strength-result.short, .rtcl-pass-strength-result.bad {
  background-color: #facfd2;
  border-color: #f86368;
  opacity: 1;
}
.rtcl-pass-strength-result.good {
  background-color: #f5e6ab;
  border-color: #f0c33c;
  opacity: 1;
}
.rtcl-pass-strength-result.strong {
  background-color: #b8e6bf;
  border-color: #68de7c;
  opacity: 1;
}

/* ============== Password strangth END ================ */
/* spinner loading */
.rtcl-loading {
  min-height: 100px;
  min-width: 100%;
}

.rtcl-loading-overlay::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  content: "";
  background: url("../images/spinner.gif") center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}

/* form */
.rtcl-pro {
  color: red;
  font-weight: bold;
  margin: 0 5px;
  display: inline-block;
}

.rtcl-checkbox-list {
  align-items: center;
  margin: 0 -5px 10px;
}
.rtcl-checkbox-list.rtcl-checkbox-inline {
  display: flex;
  flex-wrap: wrap;
}
.rtcl-checkbox-list .rtcl-checkbox {
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.rtcl-checkbox-list .rtcl-checkbox label {
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 5px;
  margin: 0;
  line-height: 1.3;
  cursor: pointer;
}

/* ============== Price ============== */
#rtcl-price-wrap {
  display: flex;
  justify-content: space-between;
}
#rtcl-price-wrap .price-wrap {
  flex: 1;
}

#rtcl-pricing-items.rtcl-pricing-disabled {
  display: none;
}
#rtcl-pricing-items.rtcl-pricing-range .rtcl-price-item .rtcl-max-price {
  display: block !important;
}
#rtcl-pricing-items.rtcl-pricing-range .rtcl-price-item .price-wrap {
  flex: 0 0 48%;
}

#rtcl-price-items.rtcl-price-type-on_call, #rtcl-price-items.rtcl-price-type-free, #rtcl-price-items.rtcl-price-type-no_price {
  display: none;
}

.rtcl-form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.rtcl .rtcl_error_tip {
  color: #fff;
  font-size: 0.8em;
  text-align: center;
  border-radius: 3px;
  padding: 0.618em 1em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  max-width: 20em;
  line-height: 1.8em;
  position: absolute;
  white-space: normal;
  background: #d82223;
  margin: 1.5em 1px 0 -1em;
  z-index: 9999999;
}
.rtcl .rtcl_error_tip::after {
  content: "";
  display: block;
  border: 8px solid transparent;
  border-bottom-color: #d82223;
  position: absolute;
  top: -3px;
  left: 50%;
  margin: -1em 0 0 -3px;
}
.rtcl .rtcl_error_tip code {
  padding: 1px;
  background: #888;
}
.rtcl .badge {
  font-weight: normal;
}
.rtcl .rtcl-hints {
  font-size: 90%;
  font-style: italic;
  margin: 5px 0;
}
.rtcl .rtcl-form-group.has-danger .rtcl-form-control,
.rtcl .rtcl-form-group.has-danger .form-control,
.rtcl .form-group.has-danger .rtcl-form-control,
.rtcl .form-group.has-danger .form-control {
  border-color: red !important;
}
.rtcl .rtcl-form-group.has-danger .with-errors,
.rtcl .form-group.has-danger .with-errors {
  display: block;
}
.rtcl .rtcl-form-group.has-danger .col-form-label, .rtcl .rtcl-form-group.has-danger .check-list,
.rtcl .form-group.has-danger .col-form-label,
.rtcl .form-group.has-danger .check-list {
  color: red;
}
.rtcl .rtcl-form-group .with-errors,
.rtcl .form-group .with-errors {
  display: none;
  color: red;
}
.rtcl .rtcl-form-group label,
.rtcl .form-group label {
  font-weight: normal;
}
.rtcl .rtcl-form-group label .require-star, .rtcl .rtcl-form-group label .rtcl-required,
.rtcl .form-group label .require-star,
.rtcl .form-group label .rtcl-required {
  margin-left: 5px;
  color: red;
  display: inline-block;
  vertical-align: middle;
}
.rtcl .rtcl-form-group label .col-form-label,
.rtcl .form-group label .col-form-label {
  text-align: right;
  font-weight: bold;
}

.rtcl-table {
  border: #dee2e6 solid 1px;
  background: #fff;
  border-spacing: 0;
  border-radius: 0;
  table-layout: auto;
  padding: 0;
  margin: 0;
  width: 100%;
  clear: both;
  box-sizing: content-box;
  border-collapse: collapse;
}
.rtcl-table > tbody > tr > td, .rtcl-table > tbody > tr > td, .rtcl-table > thead > tr > td, .rtcl-table > thead > tr > td, .rtcl-table > thead > tr > td, .rtcl-table > thead > tr > td {
  padding: 8px;
  vertical-align: top;
  background: #fff;
  text-align: left;
  border-style: solid;
  font-weight: normal;
  border-color: #dee2e6;
}
.rtcl-table > tbody > tr {
  z-index: 1;
}
.rtcl-table > tbody > tr > td {
  border-color: #dee2e6;
  border-width: 1px 0 0 1px;
}
.rtcl-table > tbody > tr > td:first-child {
  border-top-width: 0;
}
.rtcl-table td,
.rtcl-table th {
  border-color: #dee2e6;
}
.rtcl-table.-clear {
  border: 0 none;
}
.rtcl-table.-clear > tbody > tr > td, .rtcl-table.-clear > tbody > tr > td, .rtcl-table.-clear > thead > tr > td, .rtcl-table.-clear > thead > tr > td, .rtcl-table.-clear > thead > tr > td, .rtcl-table.-clear > thead > tr > td {
  border: 0 none;
  padding: 4px;
}

.rtcl-switch-wrap .rtcl-switch {
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  background: #f5f5f5;
  height: 30px;
  vertical-align: middle;
  border: #7e8993 solid 1px;
  transition: background 0.25s ease;
}
.rtcl-switch-wrap .rtcl-switch span {
  display: inline-block;
  float: left;
  text-align: center;
  font-size: 13px;
  line-height: 22px;
  padding: 4px 10px;
  min-width: 15px;
}
.rtcl-switch-wrap .rtcl-switch .rtcl-switch-on, .rtcl-switch-wrap .rtcl-switch .rtcl-switch-off {
  min-width: 21px;
}
.rtcl-switch-wrap .rtcl-switch .rtcl-switch-on {
  color: #fff;
  text-shadow: #007cba 0 1px 0;
}
.rtcl-switch-wrap .rtcl-switch .rtcl-switch-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 50%;
  z-index: 1;
  background: #fff;
  border-radius: 3px;
  border: #7e8993 solid 1px;
  transition: all 0.25s ease;
  transition-property: left, right;
}
.rtcl-switch-wrap .rtcl-switch-input {
  display: none;
}
.rtcl-switch-wrap .rtcl-switch-input:checked + .rtcl-switch {
  background: #0d99d5;
  border-color: #007cba;
}
.rtcl-switch-wrap .rtcl-switch-input:checked + .rtcl-switch .rtcl-switch-slider {
  left: 50%;
  right: 2px;
  border-color: #007cba;
}

/* rtcl-geo-location-field */
.rtcl-geo-address-field {
  position: relative;
}
.rtcl-geo-address-field .rtcl-geo-address-input {
  padding-right: 30px !important;
}
.rtcl-geo-address-field i.rtcl-icon {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.rtcl .pac-container.pac-logo::after {
  content: "";
}

/* Common css */
html [data-rt-depends], .rtcl .row[data-rt-depends], [data-rt-depends] {
  display: none;
}

#rtcl-custom-fields-list .form-group {
  margin-bottom: 1rem;
}

.rtcl-spinner {
  font-size: 20px;
}

.rtcl-spinner.block {
  text-align: center;
  display: block;
  padding: 20px 0;
}
.rtcl-spinner.block .rtcl-icon-spinner {
  font-size: 30px;
}

.rtcl-custom-fields-list .rtcl-spinner {
  padding: 50px 0;
}

.rtcl-loader {
  display: none;
  border: none !important;
  box-shadow: none !important;
  font-size: 20px;
  line-height: 64px;
}
.rtcl-loader.animate-spin {
  display: none;
  line-height: 28px;
}

.rtcl-modal {
  display: none;
}

.rtcl-hide {
  display: none !important;
}

/* map */
.rtcl-map {
  width: 100%;
  height: 400px;
  margin: 10px 0;
}
.rtcl-map iframe {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 0 none;
  margin: 0;
}
.rtcl-map .marker {
  display: none;
}

/* Select 2 */
.rtcl-select2 + .select2-container {
  min-width: 140px;
}

/* ========================
      Flash message
 =========================*/
.rtcl-flash-messages {
  clear: both;
  overflow: hidden;
  padding: 10px 15px 10px 48px;
  margin: 0 0 10px 0;
  line-height: 14px;
  color: white;
}
.rtcl-flash-messages.rtcl-flash-success:before, .rtcl-flash-messages.rtcl-flash-error:before, .rtcl-flash-messages.rtcl-flash-warn:before {
  font-family: "rtcl", serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  vertical-align: top;
  color: rgba(255, 255, 255, 0.75);
  font-size: 32px;
  line-height: 32px;
  width: 32px;
  height: 32px;
  text-align: center;
  margin-left: -32px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  float: left;
}
.rtcl-flash-messages.rtcl-flash-success {
  background-color: #5bc3a2;
}
.rtcl-flash-messages.rtcl-flash-success:before {
  content: "\e811";
}
.rtcl-flash-messages.rtcl-flash-error {
  background-color: #d9675d;
}
.rtcl-flash-messages.rtcl-flash-error:before {
  content: "\f129";
}
.rtcl-flash-messages.rtcl-flash-warn {
  background-color: #ffcc00;
}
.rtcl-flash-messages.rtcl-flash-warn:before {
  content: "\f129";
}
.rtcl-flash-messages a, .rtcl-flash-messages a:hover, .rtcl-flash-messages a:visited {
  color: white;
  text-decoration: underline;
}
.rtcl-flash-messages:after {
  clear: both;
  display: block;
  content: "";
}

/***********************
   Animation for spinners
*******************************/
.animate-spin {
  animation: spin 2s infinite linear;
  display: inline-block;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes spinner-line-fade-more {
  0%, 100% {
    opacity: 0; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}
@keyframes spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25; /* minimum opacity */
  }
  40% {
    opacity: 1;
  }
}
@keyframes spinner-line-fade-default {
  0%, 100% {
    opacity: 0.22; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}
.rtcl-container {
  width: 100%;
  max-width: 1240px;
  padding-right: calc(var(--rtcl-gutter-x) * 0.5);
  padding-left: calc(var(--rtcl-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .rtcl-container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 992px) {
  .rtcl-container {
    max-width: 960px;
  }
}
@media screen and (max-width: 768px) {
  .rtcl-container {
    max-width: 720px;
  }
}
@media screen and (max-width: 576px) {
  .rtcl-container {
    max-width: 640px;
  }
}

.rtcl-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--rtcl-gutter-y));
  margin-right: calc(-0.5 * var(--rtcl-gutter-x));
  margin-left: calc(-0.5 * var(--rtcl-gutter-x));
}

.rtcl-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--rtcl-gutter-x) * 0.5);
  padding-left: calc(var(--rtcl-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.rtcl-order-2 {
  order: 2;
}

.rtcl-order-1 {
  order: 1;
}

@media screen and (min-width: 768px) {
  .rtcl-post-contact-details .rtcl-contact-details-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
  }
  .rtcl-post-contact-details .rtcl-contact-details-row > div {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
  }
}
.media {
  display: inline-flex;
  width: 100%;
  gap: 10px;
}

.media-body {
  flex: 1;
}

.rtcl-col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.rtcl-col-6 {
  flex: 0 0 auto;
  max-width: 50%;
}

.rtcl-col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.rtcl-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.rtcl .rtcl-bs-table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
}
.rtcl .rtcl-bs-table td,
.rtcl .rtcl-bs-table th,
.rtcl .rtcl-bs-table tr {
  border-color: inherit;
  border-style: solid;
}
.rtcl .rtcl-bs-table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  border-bottom-width: 1px;
}
.rtcl .rtcl-bs-table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.rtcl .rtcl-bs-table td,
.rtcl .rtcl-bs-table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.rtcl .rtcl-bs-table.rtcl-bs-table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.rtcl .rtcl-bs-table.rtcl-bs-table-bordered {
  border: 1px solid #dee2e6;
}
.rtcl .rtcl-bs-table.rtcl-bs-table-bordered th,
.rtcl .rtcl-bs-table.rtcl-bs-table-bordered td {
  border: 1px solid #dee2e6;
}
.rtcl .rtcl-bs-table.rtcl-bs-table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.rtcl .rtcl-bs-table.rtcl-bs-table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
.rtcl .rtcl-bs-table.rtcl-bs-table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.rtcl .rtcl-bs-table.rtcl-bs-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.rtcl .rtcl-bs-table.rtcl-bs-table-sm td,
.rtcl .rtcl-bs-table.rtcl-bs-table-sm th {
  padding: 0.3rem;
}
.rtcl .d-flex {
  display: flex !important;
}
.rtcl .ml-auto {
  margin-left: auto !important;
}
.rtcl .alert {
  border: 1px solid transparent;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  position: relative;
}
.rtcl .alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.rtcl .alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.rtcl .alert-dismissible {
  padding-right: 4rem;
}
.rtcl .text-center {
  text-align: center;
}
.rtcl .text-right {
  text-align: right;
}
.rtcl .rtcl-list-group {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  margin-bottom: 0;
  padding-left: 0;
}
.rtcl .rtcl-list-group-item {
  position: relative;
  display: block;
  color: #797f89;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .rtcl-col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .rtcl-col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .rtcl-col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .rtcl-col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .rtcl-col-md-8 {
    flex: 0 0 auto;
    width: 66.666666%;
  }
  .rtcl-col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .rtcl-col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
}
@media (min-width: 576px) {
  .rtcl-col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .rtcl-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .rtcl-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .rtcl-col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
}
.rtcl .custom-file,
.rtcl .custom-file-input {
  height: calc(1.5em + 0.75rem + 2px);
  position: relative;
  width: 100%;
}

.rtcl .custom-file-input {
  margin: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 2;
}

.rtcl .custom-file-label {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-weight: 400;
  height: calc(1.5em + 0.75rem + 2px);
  left: 0;
  overflow: hidden;
  z-index: 1;
  color: #495057;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  position: absolute;
  right: 0;
  top: 0;
}
.rtcl .custom-file-label:after {
  color: #495057;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
  bottom: 0;
  content: "Browse";
  display: block;
  height: calc(1.5em + 0.75rem);
  z-index: 3;
}

.rtcl .rtcl-form-control,
.rtcl-form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out;
}

.rtcl .rtcl-form-group,
.rtcl-form-group {
  margin-bottom: 20px;
}

.rtcl .rtcl-field-label,
.rtcl-from-label {
  display: block;
  color: #202428;
  margin-bottom: 10px;
  font-weight: 500;
}

.rtcl-form-check-label {
  margin-bottom: 0;
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

span[class^=badge] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
  border-radius: 4px;
}

.rtcl .rtcl-btn,
.rtcl-btn {
  background-color: var(--rtcl-button-bg-color) !important;
  border: 1px solid transparent !important;
  border-radius: 0.25rem;
  color: var(--rtcl-button-color) !important;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  text-align: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
  text-decoration: none !important;
  cursor: pointer;
}
.rtcl .rtcl-btn .rtcl-icon,
.rtcl-btn .rtcl-icon {
  margin-right: 5px;
}
.rtcl .rtcl-btn:hover,
.rtcl-btn:hover {
  background-color: var(--rtcl-button-hover-bg-color) !important;
  color: var(--rtcl-button-hover-color) !important;
}

.rtcl .rtcl-btn-danger,
.rtcl-btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.rtcl-checkout-content {
  background-color: #fff;
  padding: 25px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 480px) {
  .rtcl-checkout-content {
    padding: 15px;
  }
}
.rtcl-checkout-content .rtcl-checkout-heading {
  font-size: 20px;
  margin-bottom: 10px;
}
.rtcl-checkout-content .rtcl-checkout-form-wrap {
  font-size: 16px;
}
.rtcl-checkout-content .rtcl-checkout-form-wrap label {
  font-size: inherit;
}
.rtcl-checkout-content .rtcl-checkout-form-wrap > p {
  margin: 0 0 20px;
}
.rtcl-checkout-content #rtcl-payment-methods .pm-heading {
  font-size: 20px;
  margin-bottom: 10px;
}
.rtcl-checkout-content .rtcl-payment-receipt {
  font-size: 16px;
}
.rtcl-checkout-content .rtcl-payment-receipt .billing-info,
.rtcl-checkout-content .rtcl-payment-receipt .pricing-info {
  margin-bottom: 20px;
}
.rtcl-checkout-content .rtcl-payment-receipt .billing-info h2,
.rtcl-checkout-content .rtcl-payment-receipt .pricing-info h2 {
  font-size: 24px;
  margin: 0 0 10px;
}
.rtcl-checkout-content .rtcl-payment-receipt .action-btn {
  text-align: center;
}
.rtcl-checkout-content .rtcl-payment-receipt .action-btn .rtcl-btn {
  padding: 10px 15px;
}
.rtcl-checkout-content .rtcl-pricing-details-dp .pricing-description > *:last-child {
  margin-bottom: 0 !important;
}
.rtcl-checkout-content .rtcl-submit-btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rtcl-checkout-content .rtcl-submit-btn-wrap .rtcl-btn {
  padding: 10px 15px;
}

#rtcl-payment-methods ul.rtcl-list-group {
  list-style: none;
  padding: 0;
  margin: 0;
}
#rtcl-payment-methods ul.rtcl-list-group li.rtcl-list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-left: 0;
  margin-right: 0;
}
#rtcl-payment-methods ul.rtcl-list-group li.rtcl-list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
#rtcl-payment-methods ul.rtcl-list-group li.rtcl-list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
#rtcl-payment-methods .payment_box {
  padding: 1.5em;
  background: #eee;
  margin-top: 1rem;
}
#rtcl-payment-methods .payment_box fieldset {
  padding: 1.5em 1.5em 0;
  border: 0;
  background: #f6f6f6;
}
#rtcl-payment-methods .payment_box fieldset.rtcl-payment-form.loading {
  position: relative;
}
#rtcl-payment-methods .payment_box fieldset.rtcl-payment-form.loading:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 3;
}
#rtcl-payment-methods .rtcl-payment-method > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
#rtcl-payment-methods .rtcl-payment-method > label img {
  max-height: 30px;
  max-width: 200px;
}
#rtcl-payment-methods .rtcl-payment-method > label .rtcl-payment-method-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.rtcl-billing-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.rtcl form .rtcl-form-row {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 575px) {
  .rtcl form .rtcl-form-row.half {
    width: calc(50% - 0.5rem);
  }
}
.rtcl form .rtcl-form-row label {
  width: 100%;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
  color: #444444;
  display: inline-block;
}
.rtcl form .rtcl-form-row .required {
  color: red;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
}
.rtcl form .rtcl-form-row .select2-selection {
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.57rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  outline: 0;
}
.rtcl form .rtcl-form-row .select2-selection .select2-selection__rendered {
  padding: 0 20px 0 0;
  line-height: 1.1;
}
.rtcl form .rtcl-form-row .select2-selection .select2-selection__arrow {
  top: 5px;
  right: 0;
}

#rtcl-billing-fields,
#rtcl-payment-overview,
#rtcl-payment-methods {
  margin-bottom: 1.5rem;
}

.rtcl-checkout-form-wrap .rtcl-checkout-overview-table .tax-rate .price-amount {
  display: block;
}
.rtcl-checkout-form-wrap .rtcl-checkout-overview-table .tax-rate .price-amount .checkout-tax-label {
  margin-left: 6px;
}

#rtcl-checkout-store-gateway {
  display: none;
  margin-bottom: 1.5rem;
}
#rtcl-checkout-store-gateway .rtcl-store-gateway-info {
  margin-bottom: 10px;
  font-weight: 600;
}

.rtcl .rtcl-checkout-pricing-wrapper {
  row-gap: 20px;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing {
  border: 1px solid #e4e4e4;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-checkout-pricing-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}
@media screen and (max-width: 991px) {
  .rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-checkout-pricing-inner {
    padding: 15px 10px;
  }
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-title {
  background-color: var(--rtcl-primary-color);
  color: #ffffff;
  padding: 10px 20px;
  line-height: 1.4;
  border-radius: 6px 6px 0 0;
  margin: 0;
  font-size: 22px;
  text-align: center;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-description {
  margin: 0 0 10px;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-price {
  display: block;
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
  color: #222222;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-features {
  padding-bottom: 25px;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-membership-promotions .promotion-item {
  display: block;
  border: none;
  padding-top: 5px;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-membership-promotions .promotion-item > span {
  position: relative;
  display: inline-flex;
  padding-left: 30px;
  align-items: center;
  width: 100%;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-membership-promotions .promotion-item > span > span {
  margin-left: 5px;
}
@media screen and (max-width: 991px) {
  .rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-membership-promotions .promotion-item > span {
    font-size: 15px;
    align-items: start;
  }
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-membership-promotions .promotion-item > span:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 14px;
  background: #dedeff;
  color: var(--rtcl-primary-color);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn {
  position: relative;
  height: 46px;
  margin-top: auto;
  text-align: center;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn label,
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn label {
  display: inline-flex;
  cursor: pointer;
  z-index: 90;
  line-height: 1;
  border: 1px solid var(--rtcl-primary-color);
  color: #222;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn label {
    font-size: 14px;
  }
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn input[type=radio],
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn input[type=checkbox] {
  opacity: 0.011;
  z-index: 100;
}
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn input[type=radio]:checked + label,
.rtcl .rtcl-checkout-pricing-wrapper .rtcl-checkout-pricing .rtcl-pricing-btn input[type=checkbox]:checked + label {
  color: #ffffff;
  background-color: var(--rtcl-primary-color);
}
.rtcl .rtcl-checkout-pricing-wrapper.has-danger .rtcl-pricing-btn label {
  color: red;
  border-color: red;
}

@media (max-width: 767px) {
  #rtcl-payment-methods .payment_box {
    padding: 0.5rem;
  }
}
@media (max-width: 575px) {
  #rtcl-payment-methods .rtcl-payment-method > label .rtcl-payment-method-icons {
    display: none;
  }
}
@media (max-width: 420px) {
  .rtcl-checkout-content .rtcl-submit-btn-wrap {
    flex-wrap: wrap;
    gap: 15px;
  }
}
/* RTCL GALLERY */
#rtcl-gallery-upload-ui-wrapper .moxie-shim.moxie-shim-html5 {
  cursor: pointer;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery {
  width: 100%;
  height: 130px;
  border: 1px solid #e5e5e5;
  background-color: #fcfcfc;
  padding: 0 0 20px 0;
  opacity: 0.7;
  z-index: 0;
  text-align: center;
  line-height: 100%;
  font-weight: bold;
  margin: auto;
  box-sizing: border-box;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery p {
  font-size: 1.3em;
  font-weight: normal;
  margin: 20px 0 20px;
  padding: 0;
  color: gray;
  box-sizing: border-box;
}
#rtcl-gallery-upload-ui-wrapper.drag-over .rtcl-drag-drop-area {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 130px;
  opacity: 1;
  z-index: 5;
  box-sizing: border-box;
}
#rtcl-gallery-upload-ui-wrapper.drag-over .rtcl-gallery {
  opacity: 0.7;
  background: rgba(0, 0, 0, 0.9);
  border: 4px dashed white;
}
#rtcl-gallery-upload-ui-wrapper.drag-over .rtcl-gallery .rtcl-gallery-browse-button {
  display: none;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads {
  overflow: hidden;
  padding: 0 3px 3px 3px !important;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item {
  background-color: #fff;
  width: 150px;
  height: 105px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  transition: height 0.1s ease-in-out, margin 0.1s ease-in-out;
  position: relative;
  float: left;
  margin: 10px 10px 0 0;
  overflow: hidden;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-upload-item-img {
  width: 150px;
  border-radius: 0px !important;
  box-shadow: none !important;
  border: none !important;
  cursor: move;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item a {
  display: inline-block;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 2px;
  width: 30px;
  height: 28px;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item a.rtcl-button-remove {
  color: red;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-item-features {
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 14px;
  line-height: 18px;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-item-features .rtcl-gallery-item-feature {
  color: white;
  padding: 3px 3px;
  background: rgba(0, 0, 0, 0.075);
  display: block;
  float: left;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-upload-actions {
  position: absolute;
  display: none;
  margin: 0;
  padding: 0;
  height: 30px;
  bottom: 3px;
  right: 3px;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-upload-actions .rtcl-icon-spinner {
  vertical-align: top;
}
@media screen and (max-width: 991px) {
  #rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-upload-actions {
    display: block;
  }
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-upload-update {
  width: 100%;
  height: 105px;
  text-align: center;
  position: absolute;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item .rtcl-gallery-upload-update .rtcl-icon-spinner {
  font-size: 64px;
  line-height: 105px;
}
#rtcl-gallery-upload-ui-wrapper .rtcl-gallery-uploads .rtcl-gallery-upload-item:hover .rtcl-gallery-upload-actions {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}
#rtcl-gallery-upload-ui-wrapper .description {
  margin-top: 15px;
}

.rtcl-form-aligned .rtcl-plupload-upload-ui {
  width: 60%;
  float: left;
}

.rtcl-update-description-success {
  font-size: 20px;
  line-height: 28px;
  display: none;
}

.rtcl-form input[type=number].rtcl-image-scale-width,
.rtcl-form input[type=number].rtcl-image-scale-height {
  margin: 0;
}

.rtcl-gallery-upload-failed {
  font-size: 10px;
  line-height: 12px;
  overflow: hidden;
  display: inline-block;
  padding: 0 2px 0 2px;
}

.rtcl-gallery-upload-update.rtcl-icon-attention {
  cursor: pointer;
}
.rtcl-gallery-upload-update.rtcl-icon-attention::before {
  display: block;
  font-size: 42px;
  color: red;
  margin: 10px auto 0;
}

.wprtcl-overlay {
  width: 100%;
  height: 100%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 160000;
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
}
.wprtcl-overlay.show {
  display: block;
}
.wprtcl-overlay h2 {
  font-size: 22px;
}
.wprtcl-overlay p {
  margin: 5px 0 25px 0;
}
.wprtcl-overlay input[type=radio] {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wprtcl-overlay > .wprtcl-overlay-body {
  position: fixed;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  overflow: hidden;
  margin: auto;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid silver;
  padding: 0;
}
.wprtcl-overlay .wprtcl-overlay-header {
  clear: both;
  margin: 0;
  background: #fcfcfc;
  border-bottom: 1px solid #ddd;
  padding: 0 0 0 0;
  height: 50px;
  display: flex;
  justify-content: space-between;
}
.wprtcl-overlay .wprtcl-overlay-header .wprtcl-overlay-title {
  padding: 0 16px;
  font-size: 22px;
  line-height: 50px;
  margin: 0;
  flex: 1;
}

.wprtcl-attachment-media-view {
  float: left;
  width: 65%;
  height: 100%;
}

.wprtcl-overlay-buttons {
  display: flex;
}
.wprtcl-overlay-buttons .wprtcl-overlay-button {
  cursor: pointer;
  color: #72777c;
  background-color: transparent;
  height: 50px;
  width: 50px;
  padding: 0;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  border: 0;
  border-left: 1px solid #ddd;
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out;
  display: inline-block;
  text-decoration: none !important;
}
.wprtcl-overlay-buttons .wprtcl-overlay-button.wprtcl-navi-disabled {
  opacity: 0.6;
  cursor: default;
}
.wprtcl-overlay-buttons .wprtcl-overlay-button:not(.wprtcl-navi-disabled):hover {
  background: #ddd none repeat scroll 0 0;
  border-color: #ccc;
  color: #000;
}
@media (max-width: 767px) {
  .wprtcl-overlay-buttons .wprtcl-overlay-button.rtcl-icon-left-open, .wprtcl-overlay-buttons .wprtcl-overlay-button.rtcl-icon-right-open {
    display: none;
  }
  .wprtcl-overlay-buttons .wprtcl-overlay-button.wprtcl-overlay-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }
}

.wprtcl-attachment-info {
  overflow: auto;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 12px 16px 0;
  width: 35%;
  height: 100%;
  box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  border-left: 1px solid #ddd;
  background: #f3f3f3;
}

.wprtcl-overlay .rtcl-form-aligned .rtcl-control-group > label {
  width: 100%;
  font-weight: bold;
  margin: 6px 0 6px 0;
}

.wprtcl-overlay input[type=text],
.wprtcl-overlay textarea {
  width: 100%;
}

.wprtcl-attachment-details {
  position: absolute;
  top: 50px;
  left: 0;
  bottom: 0;
  right: 0;
}

.rtcl-form.rtcl-form-aligned .rtcl-control-group.wprtcl-file-browser-video-actions > div {
  width: 100%;
  padding: 0;
  height: 38px;
}

.wprtcl-overlay .wprtcl-attachment-info .details {
  position: relative;
  overflow: hidden;
  float: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  font-size: 12px;
  max-width: 100%;
  line-height: 18px;
  color: #666;
}

.wprtcl-attachment-other,
.wprtcl-attachment-image {
  padding: 25px;
  text-align: center;
  position: relative;
  height: inherit;
}

.rtcl-gallery-upload-item-file {
  display: block;
  width: 100%;
  height: 105px;
  text-align: center;
  margin: 0;
  padding: 0;
}
.rtcl-gallery-upload-item-file .rtcl-gallery-upload-item-file-icon {
  font-size: 74px;
  line-height: 94px;
}
.rtcl-gallery-upload-item-file .rtcl-gallery-upload-item-file-name {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.5);
  text-align: left;
  right: 0;
  padding: 1px 6px;
}

.rtcl-image-missing {
  text-align: center;
}

.rtcl-image-preview {
  padding: 25px;
}

.rtcl-image-preview > img {
  max-width: 100%;
  max-height: 100%;
}

.rtcl-image-action-scale {
  vertical-align: middle;
}

.wprtcl-image-apply-to {
  padding: 0;
  margin: 1em 0 0 0;
}

.wprtcl-image-apply-to > label {
  float: none !important;
}

.wprtcl-file-browser-video {
  -o-object-fit: contain;
     object-fit: contain;
}

.wprtcl-attachment-icon-big-wrap {
  margin: 0 0 2em 0;
}

.wprtcl-attachment-icon-big-wrap .wprtcl-attachment-icon-big {
  font-size: 128px;
  opacity: 0.35;
}

.wprtcl-file-preview {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  clear: both;
  overflow: hidden;
}

.wprtcl-file-preview .wprtcl-image-sizes {
  background: white;
  border: 1px solid silver;
  width: 100%;
}

.wprtcl-file-size-explain {
  font-size: 12px;
  max-width: 100%;
  line-height: 18px;
  color: #666;
}

.rtcl-image-scale-width,
.rtcl-image-scale-height {
  width: 70px !important;
  height: 30px;
  box-sizing: border-box !important;
  border-radius: 1px;
}

.wprtcl-file-error {
  position: fixed;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  overflow: hidden;
  margin: auto;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid silver;
  padding: 0;
  z-index: 170000;
}
.wprtcl-file-error > div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.wprtcl-image-edit-spinner {
  font-size: 24px;
  vertical-align: middle;
}

.wprtcl-file-browser-image-actions {
  padding: 5px 0 5px 0;
}

.rtcl-browser-admin.wprtcl-overlay .rtcl-form-aligned .rtcl-control-group > label {
  display: block;
}
.rtcl-browser-admin.wprtcl-overlay .rtcl-form-aligned .rtcl-control-group > label.inline-block {
  display: inline-block;
  font-size: inherit;
  font-weight: normal;
  width: auto;
}
.rtcl-browser-admin .rtcl-gallery {
  border: 4px dashed #e5e5e5;
}
.rtcl-browser-admin .rtcl-gallery > p {
  font-size: 22px;
}
.rtcl-browser-admin .rtcl-gallery .rtcl-gallery-browse-button {
  height: auto;
}
.rtcl-browser-admin .rtcl-gallery .rtcl-btn {
  background-color: var(--rtcl-primary-color) !important;
  color: #ffffff !important;
}
.rtcl-browser-admin .rtcl-gallery-uploads .rtcl-gallery-upload-item a {
  text-align: center;
  font-size: 16px;
}
.rtcl-browser-admin.drag-over .rtcl-gallery {
  background: rgba(0, 0, 0, 0.65);
  border: 4px dashed white;
}
.rtcl-browser-admin.drag-over .rtcl-gallery > p {
  color: white;
}
.rtcl-browser-admin .rtcl-form fieldset {
  margin: 0;
  padding: 0.35em 0 0.75em;
  border: 0;
}

.rtcl-attachment-details {
  display: flex;
  gap: 20px;
}
.rtcl-attachment-details .rtcl-attachment-image-preview {
  flex: 1;
}
.rtcl-attachment-details .rtcl-attachment-info {
  overflow: auto;
  box-sizing: border-box;
  padding: 10px 15px;
  width: 35%;
  height: 100%;
  box-shadow: inset 0 4px 4px -4px rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  border-left: 1px solid #ddd;
  background: #f3f3f3;
}
.rtcl-attachment-details .rtcl-attachment-field + .rtcl-attachment-field {
  margin-top: 10px;
}
.rtcl-attachment-details .rtcl-attachment-field label {
  font-weight: 700;
  margin-bottom: 6px;
  width: 100%;
}
.rtcl-attachment-details .rtcl-attachment-field.rtcl-asbtn {
  text-align: right;
}
.rtcl-attachment-details .details {
  border-top: 1px solid #ddd;
  color: #666;
  float: none;
  font-size: 12px;
  line-height: 18px;
  margin-top: 15px;
  max-width: 100%;
  overflow: hidden;
  padding-top: 15px;
  position: relative;
}

@media (max-width: 420px) {
  .wprtcl-overlay > .wprtcl-overlay-body {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: scroll;
  }
  .wprtcl-attachment-media-view {
    width: 100%;
    height: auto;
  }
  .wprtcl-attachment-info {
    width: 100%;
  }
  .rtcl-gallery-upload-actions {
    display: block;
  }
  .wprtcl-attachment-media-image-editor {
    height: 350px;
  }
  .rtcl-image-preview,
  .wprtcl-attachment-media-image-editor .wprtcl-attachment-image {
    padding: 5px;
  }
  .rtcl-form input[type=number].rtcl-image-scale-width,
  .rtcl-form input[type=number].rtcl-image-scale-height {
    padding: 6px;
    margin: 0;
    display: inline-block;
  }
}
/* Modal */
/* ============== Rtcl Modal START ============== */
.rtcl-ui-modal {
  width: 100%;
  z-index: 2000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  transition: opacity 0.15s linear;
}
.rtcl-ui-modal .rtcl-modal-wrapper {
  width: auto;
  height: 100%;
  margin: 0.5rem;
  position: relative;
  z-index: 2003;
  max-height: calc(100% - 1rem);
  min-height: calc(100% - 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  max-height: none;
  overflow: hidden;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-title * {
  margin: 0;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  overflow-y: auto;
  max-height: calc(100vh - 150px);
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-close {
  cursor: pointer;
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  background-color: transparent;
  border: 0;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap {
  position: relative;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap h4 {
  font-size: 17px;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap h4 span:before {
  font-family: "rtcl", serif;
  content: "\f105";
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-select-action {
  position: absolute;
  top: 0;
  right: 0;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-select-action .go-back {
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-select-action .go-back:before {
  font-family: "rtcl", serif;
  content: "\f104";
  margin-right: 5px;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul li {
  border-top: solid 1px #d4ded9;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul li a {
  padding: 8px 0;
  display: flex;
  position: relative;
  color: #444;
  align-items: center;
  text-decoration: none;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul li a .icon {
  margin: 0 5px;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul li a .icon .tcl-cat-icon:before {
  margin-left: 0;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul li a .icon img {
  max-width: 15px;
  max-height: 15px;
  margin-right: 0.2rem;
  display: inline-block;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul li.has-sub a:after {
  display: inline-block;
  font: normal normal normal 14px/1 "rtcl";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: "\f105";
  -moz-osx-font-smoothing: grayscale;
  float: right;
  margin-left: auto;
}
.rtcl-ui-modal .rtcl-modal-wrapper.no-heading .rtcl-modal-header {
  padding: 0;
  border: 0;
}
.rtcl-ui-modal .rtcl-modal-wrapper.no-heading .rtcl-modal-title {
  display: none;
}
.rtcl-ui-modal .rtcl-modal-wrapper.no-heading .rtcl-modal-content {
  overflow: initial;
}
.rtcl-ui-modal .rtcl-modal-wrapper.no-heading .rtcl-modal-close {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  background: #000;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rtcl-ui-modal .rtcl-modal-wrapper.no-heading .rtcl-modal-close i {
  color: #fff;
}
.rtcl-ui-modal .rtcl-mask-wrapper {
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 2001;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  transition: opacity 0.15s linear;
}

html[dir=rtl] .rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-close {
  margin-left: -1rem;
}

body.rtcl-modal-open {
  overflow: hidden;
  min-width: 100%;
}
body.rtcl-modal-open .rtcl-ui-modal {
  overflow: auto;
  display: block;
}
body.rtcl-modal-open .rtcl-ui-modal .rtcl-mask-wrapper {
  opacity: 0.5;
}

body.wp-admin .rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-header {
  align-items: center;
}
body.wp-admin .rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-close {
  background: transparent;
  box-shadow: none;
  font-size: 16px;
}
body.wp-admin .rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-close i {
  color: #1d2327;
}

/* ============== Rtcl Modal END ================ */
/************************** RTL START **************************/
html[dir=rtl] .rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap h4 span:before {
  content: "\f104";
}
html[dir=rtl] .rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-select-action {
  right: inherit;
  left: 0;
}
html[dir=rtl] .rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul li.has-sub a::after {
  float: left;
  content: "\f104";
}

/* ============== Media query responsive ============== */
@media (min-width: 992px) {
  .rtcl-ui-modal .rtcl-modal-wrapper {
    max-width: 800px;
    margin: 1.75rem auto;
  }
}
@media only screen and (min-width: 576px) {
  .rtcl-ui-modal .rtcl-modal-wrapper {
    min-height: calc(100% - 3.5rem);
    max-height: calc(100% - 3.5rem);
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
@media only screen and (max-width: 600px) {
  .rtcl-ui-modal .rtcl-modal-content .sub-wrapper.is-active {
    padding-left: 0;
    padding-right: 10px;
  }
}
.ui-autocomplete {
  position: absolute;
  z-index: 1000;
  cursor: default;
  padding: 0;
  margin-top: 2px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.ui-autocomplete > li {
  padding: 3px 20px;
}

.ui-autocomplete > li.ui-state-focus {
  background-color: #DDD;
  cursor: pointer;
}

.ui-helper-hidden-accessible {
  display: none;
}

.rtcl.rtcl-page {
  background-color: #F0F5FA;
}
.rtcl .help-block.with-errors {
  font-size: small;
}
.rtcl .rtcl-list-group-item {
  background-color: transparent;
}
.rtcl .rtcl-content-wrapper {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  gap: 30px;
  width: 100%;
  overflow-x: hidden;
}
@media all and (max-width: 767px) {
  .rtcl .rtcl-content-wrapper {
    flex-wrap: wrap;
  }
}
@media all and (min-width: 768px) {
  .rtcl .rtcl-content-wrapper #primary,
  .rtcl .rtcl-content-wrapper #secondary {
    width: calc(100% - (var(--rtcl-sidebar-width) + 30px));
    flex: 0 0 calc(100% - (var(--rtcl-sidebar-width) + 30px));
  }
}
@media all and (max-width: 767px) {
  .rtcl .rtcl-content-wrapper #primary,
  .rtcl .rtcl-content-wrapper #secondary {
    padding: 0;
  }
}
.rtcl .rtcl-content-wrapper > * {
  box-sizing: border-box;
  flex-shrink: 0;
  max-width: 100%;
}
@media all and (min-width: 768px) {
  .rtcl .rtcl-content-wrapper > #primary {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    flex-grow: 1;
  }
  .rtcl .rtcl-content-wrapper .rtcl-sidebar-wrapper {
    flex: 0 0 var(--rtcl-sidebar-width);
    max-width: var(--rtcl-sidebar-width);
  }
}
@media all and (max-width: 991px) {
  .rtcl.single-rtcl_listing .rtcl-content-wrapper {
    flex-wrap: wrap;
  }
  .rtcl.single-rtcl_listing .rtcl-content-wrapper .rtcl-sidebar-wrapper {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}

#rtcl-report-abuse-form .rtcl-form-group {
  margin-bottom: 0;
}
#rtcl-report-abuse-form .rtcl-btn {
  margin-top: 10px;
}

.rtcl-listable {
  line-height: 1.3;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.rtcl-listable .listable-repeater-field,
.rtcl-listable .rtcl-listable-item {
  display: inline-flex;
  align-items: start;
  font-size: 14px;
  font-weight: 500;
  color: #828282;
  gap: 5px;
}
.rtcl-listable .listable-repeater-field:after,
.rtcl-listable .rtcl-listable-item:after {
  content: "|";
  margin: 0 3px;
}
.rtcl-listable .listable-repeater-field:last-child,
.rtcl-listable .rtcl-listable-item:last-child {
  margin: 0;
}
.rtcl-listable .listable-repeater-field:last-child:after,
.rtcl-listable .rtcl-listable-item:last-child:after {
  content: none;
}
.rtcl-listable .listable-repeater-field .listable-label-wrap,
.rtcl-listable .rtcl-listable-item .listable-label-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
}
.rtcl-listable .listable-repeater-field .listable-label,
.rtcl-listable .rtcl-listable-item .listable-label {
  font-weight: bold;
}
.rtcl-listable .listable-repeater-field .listable-label:after,
.rtcl-listable .rtcl-listable-item .listable-label:after {
  content: ":";
}
.rtcl-listable .rtcl-listable-item.element-repeater {
  flex-direction: column;
}
.rtcl-listable .rtcl-listable-item.element-repeater > .listable-label-wrap {
  width: 100%;
  justify-content: center;
}
.rtcl-listable .rtcl-listable-item.element-repeater > .listable-label-wrap .listable-label:after {
  content: none;
}
.rtcl-listable .listable-repeater-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rtcl-listable .listable-repeater-item {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.rtcl-listable .rtcl-cfp-vi {
  display: inline-flex;
  gap: 5px;
}

.rtcl-grid-view .rtcl-listable {
  gap: 10px;
  flex-wrap: nowrap;
  flex-direction: column;
}
.rtcl-grid-view .listable-repeater-field,
.rtcl-grid-view .rtcl-listable-item {
  flex-wrap: wrap;
}
.rtcl-grid-view .listable-repeater-field:after,
.rtcl-grid-view .rtcl-listable-item:after {
  content: none;
}

/* ============== Repeater fields END ================ */
/* ============== Repeater view Single page START ============== */
.rtcl-cf-properties {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rtcl-cf-properties .rtcl-cfp-item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rtcl-cf-properties .rtcl-cfp-item:last-child {
  border-bottom: none;
}
.rtcl-cf-properties .rtcl-cfp-item .rtcl-cfp-repeater-item .cfp-label {
  width: auto;
  font-size: 16px;
  font-weight: 500;
}
.rtcl-cf-properties .rtcl-cfp-item .rtcl-cfp-vi {
  display: inline-flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.rtcl-cf-properties .rtcl-cfp-item .cfp-color {
  width: 20px;
  height: 20px;
  display: inline-block;
}
.rtcl-cf-properties .rtcl-cfp-item.rtcl-cfp-color_picker {
  display: flex;
  align-items: center;
}
.rtcl-cf-properties .rtcl-cfp-item.rtcl-cfp-color_picker .rtin-title {
  display: inline-flex;
}
.rtcl-cf-properties .rtcl-cfp-label-wrap {
  display: flex;
  gap: 5px;
}
.rtcl-cf-properties .cfp-label {
  font-weight: 500;
}
.rtcl-cf-properties .cfp-label:after {
  content: ":";
}
.rtcl-cf-properties .rtcl-file-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rtcl-cf-properties .rtcl-file-item {
  display: flex;
  gap: 5px;
}
.rtcl-cf-properties .rtcl-file-item.rtcl-file-item-image img {
  width: 50px;
  height: 50px;
}
.rtcl-cf-properties .rtcl-cfp-repeater > .rtcl-cfp-label-wrap {
  justify-content: center;
}
.rtcl-cf-properties .rtcl-cfp-repeater > .rtcl-cfp-label-wrap .cfp-label {
  font-weight: bold;
}
.rtcl-cf-properties .rtcl-cfp-repeater > .rtcl-cfp-label-wrap .cfp-label:after {
  content: none;
}

.rtcl-single-custom-fields {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .rtcl-single-custom-fields .rtcl-cf-properties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.rtcl-single-custom-fields .rtcl-cf-properties .rtcl-cfp-item {
  color: #797f89;
  border: none;
  gap: 0;
  flex-wrap: initial;
}
.rtcl-single-custom-fields .rtcl-cf-properties .rtcl-cfp-item .cfp-label {
  color: #000000;
  font-weight: 600;
  margin-right: 5px;
}

.rtcl-cfp-repeater {
  flex-direction: column;
}
.rtcl-cfp-repeater-items {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.rtcl-cfp-repeater-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rtcl-cfp-repeater-field {
  display: flex;
  gap: 10px;
}

/* ============== Repeater view Single page END ================ */
.post-type-archive-rtcl_listing .bb-grid.site-content-grid,
.single-rtcl_listing .bb-grid.site-content-grid {
  display: block;
}
.post-type-archive-rtcl_listing .post-password-form,
.single-rtcl_listing .post-password-form {
  background-color: #ffffff;
  padding: 30px 30px 20px;
  width: 100%;
}

/* ============== Embed Video responsive START ============== */
.rtcl .responsive-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.rtcl .responsive-container iframe,
.rtcl .responsive-container object,
.rtcl .responsive-container embed,
.rtcl .responsive-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rtcl-sold-out {
  background: var(--rtcl-primary-color);
  z-index: 2;
  left: -33px;
  top: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 35px;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-45deg);
  position: absolute;
}

.is-sold.rtcl-listing-item, .is-sold .rtcl-single-listing-details {
  overflow: hidden;
  position: relative;
}
.is-sold .rtcl-single-listing-details .rtcl-listing-title {
  margin-left: 45px;
}

/* ============== Embed Video responsive END ================ */
/* ============== Modal START ============== */
.rtcl-bs-modal {
  display: none;
}

body.modal-open {
  overflow: hidden;
}
body.modal-open .rtcl-bs-modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* ============== Modal END ================ */
/* meta buttons */
.rtcl-meta-buttons {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, 26px);
}
.rtcl-meta-buttons .rtcl-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.rtcl-meta-buttons .rtcl-btn .rtcl-icon {
  color: #fff;
}
.rtcl-meta-buttons .rtcl-btn.selected {
  opacity: 0.5;
}
.rtcl-meta-buttons .rtcl-btn .favourite-label {
  display: none;
}
.rtcl-meta-buttons:empty {
  display: none;
}

/* ============== Price box START ============== */
.item-content .rtcl-price-wrap {
  margin-top: 12px;
}

.rtcl-single-listing-details {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 20px #f0f0f0;
}
.rtcl-single-listing-details .rtcl-listing-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 25px;
}
.rtcl-single-listing-details .rtcl-listing-title .entry-title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
  line-height: 1;
}
.rtcl-single-listing-details .rtcl-listing-meta {
  padding: 10px 25px 0;
  margin-bottom: 5px;
}
.rtcl-single-listing-details .rtcl-listing-meta .rtcl-listing-badge-wrap {
  margin-bottom: 10px;
}
.rtcl-single-listing-details .rtcl-slider-wrapper {
  margin: 0 25px 0;
}
.rtcl-single-listing-details .rtcl-main-content-wrapper {
  padding: 10px 25px 20px;
}
.rtcl-single-listing-details .rtcl-price-wrap {
  margin: 15px 0;
}
.rtcl-single-listing-details .rtcl-price-wrap .rtcl-price {
  font-size: 24px;
}
.rtcl-single-listing-details .rtcl-price-wrap .rtcl-price .rtcl-price-meta {
  font-weight: 400;
  font-size: 16px;
  margin-top: 5px;
}

.rtcl .rtcl-single-listing-map {
  background-color: #fff;
  padding: 25px;
  border-radius: 4px;
  box-shadow: 0 0 20px #f0f0f0;
  margin-top: 20px;
}
.rtcl .rtcl-single-listing-map .rtcl-map {
  margin: 0;
}

.rtcl-price-meta {
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  margin-top: 3px;
  margin-left: 2px;
}
.rtcl-price-meta > span {
  padding: 0 3px;
}
.rtcl-price-meta .rtcl-on_call {
  font-size: inherit !important;
}

.rtcl-price {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: var(--rtcl-primary-color);
  display: flex;
  flex-wrap: wrap;
}
.rtcl-price.on_call .rtcl-price-meta {
  font-size: inherit;
}

.rtcl-price-range {
  display: inline-block;
}

/* ============== Price box END ================ */
/* info box */
.rtcl-map-view {
  width: 100%;
  height: 520px;
}

.rtcl-flex {
  display: flex;
}
.rtcl-flex-column {
  flex-direction: column;
}
.rtcl-flex-align-center {
  align-items: center;
}

.rtcl-responsive-img {
  max-width: 100%;
}

.rtcl-listings-sc-wrapper.has-map {
  display: flex;
}
.rtcl-listings-sc-wrapper.has-map .rtcl-listings-wrapper {
  flex: 0 0 50%;
  max-width: 50%;
}
.rtcl-listings-sc-wrapper.has-map .rtcl-search-map {
  flex: 0 0 49%;
  max-width: 49%;
  margin-left: 1%;
}
.rtcl-listings-sc-wrapper.has-map .rtcl-search-map .rtcl-map-view {
  height: 100%;
}
.rtcl-listings-sc-wrapper.rtcl .rtcl-listing-meta-data {
  margin-left: -0.2em;
}

.rtcl-search-map-lat-long.hidden {
  display: none !important;
}

.rtcl-g-recaptcha-wrap {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.rtcl .rtcl-listing-header {
  margin: 50px 0 0;
}
.rtcl .rtcl-listing-header .page-title {
  font-weight: 600;
  font-size: 30px;
  margin: 0;
}
.rtcl .rtcl-notices-wrapper {
  margin: 20px 0;
}

.rtcl-media-upload {
  position: relative !important;
  background: #eeeeee;
  min-height: 100px;
  max-width: 200px;
  min-width: 100px;
  text-align: center;
}
.rtcl-media-upload .rtcl-media-action {
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
  height: 50px;
  background: rgba(255, 255, 255, 0.6);
}
.rtcl-media-upload .rtcl-media-action span {
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px;
  width: 25px;
  height: 20px;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.rtcl-media-upload .rtcl-media-action span:before {
  float: left;
  font-size: 18px;
  line-height: 16px;
  margin: 0;
  text-indent: 0;
}
.rtcl-media-upload .rtcl-media-action span.add {
  top: 0;
  color: green;
}
.rtcl-media-upload .rtcl-media-action span.remove {
  top: 30px;
  color: red;
}
.rtcl-media-upload.rtcl-media-upload-pp {
  width: 100px;
  height: 100px;
}

/* Add New Listing form */
.rtcl {
  /**
   * Reviews
   */
  /**
   * Star ratings
   */
  /* Widget search form */
  /* Listing Post form */
  /* Check out */
  /* Single listing */
  /* social */
  /* listings actions */
  /* related listing */
  /* categories listing */
  /* sidebar */
  /* manage listing */
  /* fixing twentysixteen pagination @deprecated*/
}
.rtcl .rtcl-flex {
  display: flex;
}
.rtcl td.rtcl-form-check {
  display: table-cell;
}
.rtcl .form-group.has-danger .form-check {
  color: red;
}
.rtcl .form-group.has-danger .form-check .with-errors {
  display: block !important;
}
.rtcl .form-group.has-danger .form-check .with-errors:before {
  content: attr(data-error);
}
.rtcl .rtcl-Reviews.rtcl {
  display: flow-root;
  margin-top: 20px;
}
.rtcl .rtcl-Reviews.rtcl #respond {
  margin: 0;
  border: 0;
  padding: 0;
}
.rtcl .rtcl-Reviews.rtcl #respond p.stars {
  margin-bottom: 0 !important;
}
.rtcl .rtcl-Reviews.rtcl #respond p.stars > span {
  line-height: 1;
}
.rtcl .rtcl-Reviews.rtcl #respond .comment-reply-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
.rtcl .rtcl-Reviews.rtcl #respond .comment-form {
  margin-bottom: 0;
}
.rtcl .rtcl-Reviews.rtcl #respond .comment-form .rtcl-form-group {
  margin-bottom: 15px;
}
.rtcl .rtcl-Reviews.rtcl #respond .comment-form label {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  text-transform: capitalize;
  color: #646464;
}
.rtcl .rtcl-Reviews.rtcl #respond .alert {
  margin-top: 15px;
}
.rtcl .rtcl-Reviews.rtcl #comments {
  background: #fff;
  padding: 25px;
  box-shadow: 0 0 20px #f0f0f0;
  border-radius: 4px;
}
.rtcl .rtcl-Reviews.rtcl #comments + #review-form-wrapper {
  margin-top: 20px;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .rtcl-section-heading-simple {
  margin-bottom: 0;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .rtcl-section-heading-simple h3 {
  margin: 0;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .listing-meta {
  margin-bottom: 0;
  margin-left: 0.9375rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .listing-meta .listing-meta-rating {
  margin-right: 0.9375rem;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid #39b449;
  color: #39b449;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .listing-meta .reviews-rating {
  display: flex;
  align-items: center;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .listing-meta .reviews-rating .star-rating {
  display: flex;
  margin: 0 0.4375rem 0 0;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .listing-meta .reviews-rating .reviews-rating-count {
  font-size: 14px;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .rtcl-reviews-meta-action {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .rtcl-reviews-meta-action {
    display: none;
  }
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .rtcl-reviews-meta-action a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.1875rem 0.75rem;
  background-color: #faf5fa;
  border: 1px solid #ececec;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #3d0941;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .rtcl-reviews-meta-action a:hover {
  text-decoration: none;
}
.rtcl .rtcl-Reviews.rtcl #comments .rtcl-reviews-meta .rtcl-reviews-meta-action a i {
  margin-left: 0.4375rem;
  font-size: 16px;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list {
  margin: 0;
  padding: 0;
  width: 100%;
  background: none;
  list-style: none;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list::after {
  display: block;
  clear: both;
  content: "";
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li {
  position: relative;
  background: 0;
  margin: 0 0 25px 0;
  padding: 0 0 25px 0;
  border-bottom: 1px solid #e7e7e7;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .media {
  position: relative;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .media-info {
  display: flex;
  flex: 0 0 23.5%;
  max-width: 23.5%;
}
@media screen and (max-width: 1199px) {
  .rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .media-info {
    flex: 0 0 32%;
    max-width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .media-info {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .media-info > img {
  max-height: 60px;
  box-shadow: none;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .rtcl-review-meta {
  display: flex;
  flex-direction: column;
  margin-left: 0.9375rem;
  padding-right: 0.4375rem;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .rtcl-review-meta .rtcl-review-author {
  font-weight: 400;
  line-height: 1.3;
  color: #3d0941;
  display: block;
  margin-bottom: 5px;
  word-break: break-word;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .rtcl-review-meta .rtcl-review-published-date {
  display: block;
  font-size: 90%;
  line-height: 1.3;
  margin-bottom: 5px;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .media-body .rtcl-review__title {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.2;
  color: #3d0941;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li .comment-container .media-body .description p {
  margin-bottom: 0;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list li img.avatar {
  border-radius: 50% !important;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list ul.children .star-rating {
  display: none;
}
.rtcl .rtcl-Reviews.rtcl #comments ol.comment-list #respond {
  border: 1px solid var(--rtcl-button-bg-color);
  border-radius: 4px;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}
.rtcl .rtcl-Reviews.rtcl #comments .comment-list > li::before {
  content: "";
}
.rtcl .rtcl-Reviews.rtcl #review-form-wrapper #review-form {
  background: #fff;
  padding: 25px;
  box-shadow: 0 0 20px #f0f0f0;
  border-radius: 4px;
}
.rtcl .star-rating {
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5em;
  font-family: "rtcl", serif;
  letter-spacing: 1px;
}
.rtcl .star-rating::before {
  content: "\e872\e872\e872\e872\e872";
  color: #cc9000;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.rtcl .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.rtcl .star-rating span::before {
  content: "\e808\e808\e808\e808\e808";
  top: 0;
  position: absolute;
  left: 0;
  color: #ffb400;
}
.rtcl .rtcl-listing-rating {
  line-height: 2;
  display: block;
}
.rtcl .rtcl-listing-rating::after {
  display: block;
  clear: both;
  content: "";
}
.rtcl .rtcl-listing-rating .star-rating {
  margin: 0.5em 4px 0 0;
  float: left;
}
.rtcl .listing .star-rating {
  display: block;
  margin: 0 0 0.5em;
  float: none;
}
.rtcl #review-form #respond {
  position: static;
  margin: 0;
  width: auto;
  padding: 0;
  background: transparent none;
  border: 0;
}
.rtcl #review-form #respond::after {
  display: block;
  clear: both;
  content: "";
}
.rtcl #review-form #respond p {
  margin: 0 0 10px;
}
.rtcl #review-form #respond .form-submit input {
  left: auto;
}
.rtcl p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}
.rtcl p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: "rtcl", serif;
  content: "\e872";
  text-indent: 0;
  color: #ffb400;
}
.rtcl p.stars a:hover ~ a::before {
  content: "\e872";
}
.rtcl p.stars:hover a::before {
  content: "\e808";
}
.rtcl p.stars.selected a.active::before {
  content: "\e808";
}
.rtcl p.stars.selected a.active ~ a::before {
  content: "\e872";
}
.rtcl p.stars.selected a:not(.active)::before {
  content: "\e808";
}
.rtcl .rt-autocomplete-wrapper {
  position: relative;
}
.rtcl .rt-autocomplete-wrapper span.rtcl-icon-spinner {
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 20px;
}
.rtcl .rtcl-login-form-wrap,
.rtcl .rtcl-registration-form-wrap {
  max-width: 550px;
}
.rtcl .confirm-password-wrap {
  position: relative;
}
.rtcl .confirm-password-wrap .rtcl-checkmark {
  position: absolute;
  display: none;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 6px;
}
.rtcl .confirm-password-wrap .rtcl-checkmark::before {
  position: absolute;
  left: 0;
  top: 50%;
  height: 50%;
  width: 2px;
  background-color: #4da70f;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}
.rtcl .confirm-password-wrap .rtcl-checkmark::after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #4da70f;
  content: "";
  transform: translateX(10px) rotate(-45deg);
  transform-origin: left bottom;
}
.rtcl .rtcl-forgot-password > span {
  display: inline-block;
  margin: 0 6px 0 10px;
}
@media (min-width: 768px) {
  .rtcl .rtcl-registration-form-wrap .login-link {
    display: inline-block;
    margin-left: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .rtcl .rtcl-registration-form-wrap .login-link {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.rtcl .modal-vertical-centered {
  transform: translate(0, 50%) !important;
  -ms-transform: translate(0, 50%) !important; /* IE 9 */
  -webkit-transform: translate(0, 50%) !important; /* Safari and Chrome */
}
@media (min-width: 1024px) {
  .rtcl.rtcl-widget-search .active-4 .ws-item {
    max-width: 33.333333%;
  }
  .rtcl.rtcl-widget-search .active-4 .ws-item.ws-price, .rtcl.rtcl-widget-search .active-4 .ws-item.ws-text {
    max-width: 40%;
  }
  .rtcl.rtcl-widget-search .active-4 .ws-item.ws-button {
    max-width: 20%;
  }
  .rtcl.rtcl-widget-search .active-3 .ws-item {
    max-width: 21%;
  }
  .rtcl.rtcl-widget-search .active-3 .ws-item.ws-button {
    max-width: 16%;
  }
  .rtcl.rtcl-widget-search .active-2 .ws-item {
    max-width: 27%;
  }
  .rtcl.rtcl-widget-search .active-2 .ws-item.ws-button {
    max-width: 18%;
  }
  .rtcl.rtcl-widget-search .active-1 .ws-item {
    max-width: 40%;
  }
  .rtcl.rtcl-widget-search .active-1 .ws-item.ws-button {
    max-width: 20%;
  }
  .rtcl.rtcl-widget-search .ws-location {
    order: 10;
  }
  .rtcl.rtcl-widget-search .ws-category {
    order: 20;
  }
  .rtcl.rtcl-widget-search .ws-type {
    order: 30;
  }
  .rtcl.rtcl-widget-search .ws-price {
    order: 40;
  }
  .rtcl.rtcl-widget-search .ws-text {
    order: 50;
  }
  .rtcl.rtcl-widget-search .ws-button {
    order: 50;
  }
  .rtcl.rtcl-widget-search .rtcl-widget-search-inline {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
  }
  .rtcl.rtcl-widget-search .rtcl-widget-search-inline .ws-item > label {
    display: none;
  }
  .rtcl.rtcl-widget-search .rtcl-widget-search-vertical .ws-item {
    max-width: 100% !important;
    flex: 0 0 100%;
  }
  .rtcl.rtcl-widget-search .rtcl-widget-search-vertical .ws-text {
    order: 1;
  }
}
.rtcl.rtcl-widget-search .rtcl-search-input-button {
  width: 100%;
  text-align: left;
}
.rtcl.rtcl-widget-search .rtcl-search-input-category:before {
  content: "\e826";
}
.rtcl.rtcl-widget-search .rtcl-search-input-location:before {
  content: "\e838";
}
.rtcl.rtcl-widget-search .rtcl-search-input-category:before, .rtcl.rtcl-widget-search .rtcl-search-input-location:before {
  font-family: "rtcl", serif;
  font-size: 16px;
}
.rtcl.rtcl-widget-search button {
  width: 100%;
}
.rtcl a {
  text-decoration: none;
  box-shadow: none !important;
}
.rtcl .rtcl-response {
  margin-top: 15px;
}
.rtcl .rtcl-error p:last-child,
.rtcl .rtcl-response p:last-child {
  margin-bottom: 0;
}
.rtcl .rtcl-post-section {
  margin-bottom: 35px;
}
.rtcl .rtcl-post-section-title {
  margin-bottom: 25px;
}
.rtcl .rtcl-post-section-title h3 {
  padding-bottom: 15px;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 15px 0;
}
.rtcl .rtcl-post-section-title h3:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  height: 1px;
  background-color: #dadada;
}
.rtcl .rtcl-post-section-title h3 .rtcl-icon {
  font-size: 18px;
  margin-right: 5px;
}
.rtcl p {
  margin: 0 0 10px;
}
.rtcl img.rtcl-thumbnail {
  max-width: 100%;
  height: auto;
}
.rtcl #rtcl-sub-category-wrap select {
  margin-bottom: 1rem;
}
.rtcl .rtcl-pricing-options {
  margin-bottom: 1rem;
}
.rtcl .rtcl-pricing-visibility span {
  display: inline-block;
  margin-right: 4px;
}
.rtcl .rtcl-pricing-visibility span:last-child {
  margin-right: 0;
}
.rtcl .rtcl-pricing-details-dp span {
  margin: 5px;
}
.rtcl .rtcl-child-terms {
  margin-top: 10px;
}
.rtcl .rtcl-listing-title a {
  text-decoration: none;
}
.rtcl .rtcl-listing-title .entry-title {
  line-height: 1.4;
}
.rtcl .rtcl-section-heading {
  position: relative;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.rtcl .rtcl-section-heading h3 {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
}
.rtcl .rtcl-section-heading:after {
  position: absolute;
  content: "";
  left: 0;
  height: 4px;
  width: 40px;
  bottom: -2px;
  background-color: var(--rtcl-primary-color);
}
.rtcl .rtcl-section-heading-simple {
  position: relative;
  margin-bottom: 20px;
}
.rtcl .rtcl-section-heading-simple h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
}
.rtcl .rtcl-listing-description {
  font-size: 16px;
}
.rtcl .rtcl-listing-description iframe {
  max-width: 100%;
}
.rtcl .single-listing-custom-fields-action {
  font-size: 16px;
  display: inline-block;
  width: 100%;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li {
  padding: 5px 0;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li:last-child {
  border-bottom: none;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li .cfp-label {
  font-weight: 500;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li.list-group-tag-terms .terms-name {
  font-weight: normal;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li.list-group-tag-terms .terms-name a {
  font-weight: normal;
  color: inherit;
  text-decoration: none;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li.list-group-tag-terms .terms-name a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li.list-group-tag-terms .terms-name span.delimiter {
  display: inline-block;
  margin-right: 4px;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties,
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li,
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action li {
  padding-left: 0;
  padding-right: 0;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li .rtcl-icon,
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action li .rtcl-icon {
  margin-right: 5px;
}
.rtcl .single-listing-custom-fields-action .custom-field-properties li a,
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action li a {
  font-weight: 500;
}
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action {
  border-top: 1px solid #e7e7e7;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action li {
  color: #797f89;
}
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action li a {
  color: inherit;
}
.rtcl .single-listing-custom-fields-action .rtcl-single-listing-action li a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl .rtcl-sidebar-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.rtcl .rtcl-sidebar-social a {
  display: inline-block;
  margin-right: 0;
  color: #fff;
  font-weight: 400;
  transition: all 0.5s ease-out;
}
.rtcl .rtcl-sidebar-social a :hover {
  opacity: 0.8;
}
.rtcl .rtcl-sidebar-social a.twitter {
  background: #000000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.rtcl .rtcl-sidebar-social .rtcl-icon {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  text-align: center;
  margin-right: 0 !important;
  background-color: #1e73be;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rtcl .rtcl-sidebar-social .rtcl-icon.rtcl-icon-facebook {
  background: #3b5998;
}
.rtcl .rtcl-sidebar-social .rtcl-icon.rtcl-icon-twitter {
  width: 16px;
  height: 16px;
  background: #ffffff;
}
.rtcl .rtcl-sidebar-social .rtcl-icon.rtcl-icon-linkedin {
  background: #1178b3;
}
.rtcl .rtcl-sidebar-social .rtcl-icon.rtcl-icon-pinterest-circled {
  background: #c8232c;
}
.rtcl .rtcl-sidebar-social .rtcl-icon.rtcl-icon-whatsapp {
  background: #25d366;
}
.rtcl .rtcl-sidebar-social .rtcl-icon.rtcl-icon-telegram {
  background: #0088cc;
}
.rtcl .rtcl-listings-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
}
.rtcl .rtcl-listings-actions .rtcl-result-count {
  font-size: 18px;
  font-weight: 500;
  margin-right: auto;
  color: #212529;
}
@media screen and (max-width: 991px) {
  .rtcl .rtcl-listings-actions .rtcl-result-count {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .rtcl .rtcl-listings-actions {
    flex-wrap: wrap;
  }
}
.rtcl .rtcl-listings-actions .rtcl-ordering {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 0;
}
.rtcl .rtcl-listings-actions .rtcl-ordering select {
  outline: none;
  padding: 0 10px;
  font-size: 16px;
  cursor: pointer;
  background-color: #ffffff;
  color: #212529;
  box-shadow: none;
  border: 1px solid #D0D0D0;
  height: 40px;
  border-radius: 5px;
}
.rtcl .rtcl-listings-actions .rtcl-ordering select option {
  outline: none;
  background: none;
  cursor: pointer;
}
.rtcl .rtcl-listings-actions .rtcl-view-switcher {
  display: inline-block;
  vertical-align: middle;
}
.rtcl .rtcl-listings-actions .rtcl-view-switcher > a {
  border-radius: 2px;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #797f89;
}
.rtcl .rtcl-listings-actions .rtcl-view-switcher > a.active {
  background-color: var(--rtcl-primary-color);
  border-color: var(--rtcl-primary-color);
  color: #ffffff;
}
.rtcl .rtcl-listings {
  margin: 0 0 20px;
}
.rtcl .rtcl-listings .listing-item {
  padding: 15px 0;
  background-color: #fff;
}
.rtcl .rtcl-listings .listing-item.is-featured {
  background: #e5f8f7;
}
.rtcl .rtcl-listings .listing-item.as-top {
  border: 1px solid #ffd274;
  background-color: #fffdea;
  box-shadow: none;
}
.rtcl .rtcl-listings .listing-item .listing-thumb {
  text-align: center;
}
.rtcl .rtcl-listings .listing-item .listing-thumb a {
  display: inline-block;
}
.rtcl .rtcl-listings .listing-item .listing-thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
}
.rtcl .rtcl-listings .listing-item h3.listing-title {
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
  word-break: break-word;
}
.rtcl .rtcl-listings .listing-item h3.listing-title a {
  text-decoration: none !important;
  box-shadow: none;
  border: none;
  color: #000000;
}
.rtcl .rtcl-listings .listing-item h3.listing-title a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl .rtcl-listings .listing-item:hover .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rtcl .rtcl-listing-badge-wrap {
  line-height: 100%;
  margin: 8px 0;
}
.rtcl .rtcl-listing-badge-wrap:empty {
  display: none;
}
.rtcl .rtcl-excerpt {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
.rtcl .rtcl-listing-meta-data {
  font-size: 15px;
  color: var(--meta-color);
  margin: 5px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.rtcl .rtcl-listing-meta-data li {
  margin-right: 10px;
  margin-bottom: 8px;
  margin-left: 0;
  color: #646464;
}
.rtcl .rtcl-listing-meta-data li.rt-categories {
  font-size: 0;
}
.rtcl .rtcl-listing-meta-data li.rt-categories * {
  font-size: 15px;
}
.rtcl .rtcl-listing-meta-data li.rt-categories span.rtcl-delimiter {
  margin-right: 4px;
}
.rtcl .rtcl-listing-meta-data li a {
  color: inherit;
  transition: color 0.3s ease-in-out;
}
.rtcl .rtcl-listing-meta-data li a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl .rtcl-listing-meta-data li i {
  color: inherit;
}
.rtcl .rtcl-listing-meta-data li .rtcl-icon {
  margin-right: 5px;
}
.rtcl .rtcl-listing-meta-data li:last-child {
  margin-right: 0;
}
.rtcl .rtcl-listing-meta-data li.updated .rtcl-icon:before {
  margin-left: 0;
}
.rtcl .listing-thumb .listing-thumb-inner {
  position: relative;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons {
  position: absolute;
  width: 100%;
  left: 15px;
  bottom: 20px;
  z-index: 2;
  transition: all 0.3s ease-out;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn {
  background-color: #fff;
  color: #000;
  border-radius: 2px;
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 1;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn:first-child {
  transition-delay: 0s;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn:nth-child(2) {
  transition-delay: 0.2s;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn:nth-child(3) {
  transition-delay: 0.3s;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn .rtcl-icon {
  margin-right: 0;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn .rtcl-favourites,
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn .rtcl-icon {
  color: inherit;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn:hover {
  background-color: var(--rtcl-primary-color);
  color: #fff;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn:hover a {
  color: inherit;
}
.rtcl .listing-thumb .listing-thumb-inner .rtcl-meta-buttons .rtcl-btn:hover .rtcl-icon {
  color: inherit;
}
.rtcl .rtcl-list-view .listing-item {
  display: flex;
  width: 100%;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 0 0 rgba(212, 222, 217, 0);
  margin-bottom: 20px;
  color: #797f89;
  font-size: 16px;
}
.rtcl .rtcl-list-view .listing-item .item-content {
  padding: 0 0 0 20px;
  word-break: break-word;
}
.rtcl .rtcl-list-view .listing-item .listing-thumb img {
  border-radius: 8px;
}
@media (min-width: 768px) {
  .rtcl .rtcl-list-view .listing-item .listing-thumb {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .rtcl .rtcl-list-view .listing-item .item-content {
    flex: 1;
  }
  .rtcl .rtcl-list-view .listing-item .listing-price {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    text-align: right;
  }
  .rtcl .rtcl-list-view .listing-item .item-content.no-price {
    flex: 1;
    max-width: initial;
  }
}
.rtcl .rtcl-list-view .listing-item.is-featured {
  margin-bottom: 1rem;
}
.rtcl .rtcl-list-view#top-listing-wrapper .is-top {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .rtcl .rtcl-list-view .listing-item {
    flex-direction: column;
  }
  .rtcl .rtcl-list-view .listing-item .item-content {
    padding: 10px 0;
  }
  .rtcl .rtcl-list-view .listing-item .listing-price {
    text-align: left;
  }
}
.rtcl .row.listing-item div[class^=col-] .listing-thumb {
  max-width: initial;
}
.rtcl .rtcl-grid-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.rtcl .rtcl-grid-view.owl-carousel {
  display: block;
}
.rtcl .rtcl-grid-view.columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.rtcl .rtcl-grid-view.columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.rtcl .rtcl-grid-view.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.rtcl .rtcl-grid-view.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.rtcl .rtcl-grid-view.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.rtcl .rtcl-grid-view.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.rtcl .rtcl-grid-view.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.rtcl .rtcl-grid-view.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 991px) {
  .rtcl .rtcl-grid-view {
    grid-template-columns: repeat(3, 1fr);
  }
  .rtcl .rtcl-grid-view.columns-8, .rtcl .rtcl-grid-view.columns-7, .rtcl .rtcl-grid-view.columns-6, .rtcl .rtcl-grid-view.columns-5, .rtcl .rtcl-grid-view.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .rtcl .rtcl-grid-view.tab-columns-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .rtcl .rtcl-grid-view {
    grid-template-columns: repeat(1, 1fr);
  }
  .rtcl .rtcl-grid-view.columns-8, .rtcl .rtcl-grid-view.columns-7, .rtcl .rtcl-grid-view.columns-6, .rtcl .rtcl-grid-view.columns-5, .rtcl .rtcl-grid-view.columns-4, .rtcl .rtcl-grid-view.columns-3, .rtcl .rtcl-grid-view.columns-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .rtcl .rtcl-grid-view.mobile-columns-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .rtcl .rtcl-grid-view.mobile-columns-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .rtcl .rtcl-grid-view.mobile-columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .rtcl .rtcl-grid-view.mobile-columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .rtcl .rtcl-grid-view.mobile-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .rtcl .rtcl-grid-view.mobile-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .rtcl .rtcl-grid-view.mobile-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.rtcl .rtcl-grid-view .listing-item {
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.rtcl .rtcl-grid-view .listing-item.is-featured {
  background: #e5f8f7;
  border: 1px solid #17a2b8;
}
.rtcl .rtcl-grid-view .listing-item.as-top {
  background: #fffdea;
  border: 1px solid #ffd274;
}
.rtcl .rtcl-grid-view .listing-item .item-content {
  padding: 15px 15px 20px;
}
.rtcl .rtcl-grid-view .listing-item .listing-price {
  padding: 0 10px 10px;
}
.rtcl .rtcl-grid-view .rtcl-listing-meta-data {
  flex-direction: column;
  margin: 6px 0 0;
}
.rtcl .rtcl-grid-view .rtcl-listing-meta-data li {
  display: block;
  line-height: 20px;
  margin-right: 0;
  color: #646464;
}
.rtcl .rtcl-grid-view .rtcl-listing-meta-data li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.rtcl .rtcl-grid-view .rtcl-listing-meta-data li a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl .rtcl-grid-view .rtcl-listing-meta-data li .rtcl-icon:before {
  margin-left: 0;
}
.rtcl .listing-item.rtcl-flex .listing-thumb {
  flex: 0 0 35%;
}
.rtcl .listing-item.rtcl-flex .item-content {
  flex: 1;
}
.rtcl .rtcl-widget-listing-item h3,
.rtcl .grid-item h3 {
  font-weight: 500;
  text-transform: capitalize;
  margin: 10px 0;
  font-size: 18px;
  line-height: 22px;
}
.rtcl .rtcl-widget-listing-item ul.listing-meta,
.rtcl .grid-item ul.listing-meta {
  display: block;
  margin: 6px 0 10px;
  font-size: 14px;
  line-height: 18px;
  padding: 0;
  list-style: none;
}
.rtcl .rtcl-widget-listing-item ul.listing-meta li,
.rtcl .grid-item ul.listing-meta li {
  display: block;
  margin-bottom: 8px;
  line-height: 18px;
}
.rtcl .rtcl-widget-listing-item ul.listing-meta li:last-child,
.rtcl .grid-item ul.listing-meta li:last-child {
  margin-bottom: 0;
}
.rtcl .rtcl-widget-listing-item .price,
.rtcl .grid-item .price {
  font-size: 18px;
  font-weight: 600;
}
.rtcl .rtcl-related-listing-wrap {
  background: #fff;
  box-shadow: 0 0 20px #f0f0f0;
  border-radius: 4px;
  margin-top: 20px;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 30px;
  line-height: 1;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-title h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-listings {
  padding: 0 25px 25px;
  margin-top: 25px;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-listings .listing-item {
  padding: 0;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-listings .listing-item .related-item-inner.grid-item {
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-listings .listing-item .related-item-inner .item-content {
  padding: 15px 15px 20px;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-listings .listing-item .related-item-inner .item-content h3.listing-title {
  margin: 0 0 5px 0;
  font-size: 18px;
  line-height: 1.4;
}
.rtcl .rtcl-related-listing-wrap .rtcl-related-listings .listing-item .related-item-inner .item-content .listing-price {
  margin-top: 12px;
}
.rtcl.rtcl-categories .cat-item-wrap {
  margin-bottom: 30px;
}
.rtcl.rtcl-categories .cat-item-wrap .cat-details img {
  display: inline-block;
}
.rtcl.rtcl-categories .cat-item-wrap .cat-details .icon a {
  line-height: 100%;
  display: inline-block;
  box-shadow: none;
}
.rtcl.rtcl-categories .cat-item-wrap .cat-details .icon a .rtcl-icon {
  font-size: 32px;
  color: #37a000;
}
.rtcl.rtcl-categories .cat-item-wrap .cat-details h3 {
  margin: 10px 0;
}
.rtcl.rtcl-categories .cat-item-wrap .cat-details h3 a {
  box-shadow: none;
}
.rtcl.rtcl-categories .cat-item-wrap .cat-details .views {
  margin-bottom: 15px;
}
.rtcl.rtcl-widget-listings .rtcl-grid-view .rtcl-widget-listing-item {
  background: #fff;
}
.rtcl.rtcl-widget-listings .rtcl-grid-view .rtcl-widget-listing-item.as-top {
  border: 1px solid #ffd274;
  background-color: #fffdea;
}
.rtcl.rtcl-widget-listings .rtcl-grid-view .rtcl-widget-listing-item.is-featured {
  background: #e5f8f7;
  border: 1px solid #17a2b8;
}
.rtcl.rtcl-widget-listings .rtcl-grid-view .rtcl-widget-listing-item .rtcl-listing-badge-wrap {
  margin-top: 0;
}
.rtcl.rtcl-widget-listings .rtcl-grid-view.rtcl-carousel-slider {
  padding-right: 1px;
}
.rtcl.rtcl-widget-listings .view-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  top: calc(50% - 17px);
}
.rtcl.rtcl-widget-listings .view-slider .owl-nav .owl-next {
  position: absolute;
  right: 0;
  top: calc(50% - 17px);
}
.rtcl .listing-sidebar .rtcl-listing-side-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
}
.rtcl .listing-sidebar .rtcl-listing-side-title h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
}
.rtcl .listing-sidebar .rtcl-listing-user-info {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 20px #f0f0f0;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group {
  padding: 20px;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .listing-author .author-name {
  font-size: 18px;
  margin-top: 10px;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .rtcl-list-group-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  font-size: 15px;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .rtcl-list-group-item:first-child {
  padding-top: 0;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .rtcl-list-group-item .rtcl-listing-author {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .rtcl-list-group-item .rtcl-listing-author:hover {
  text-decoration: none;
  color: var(--rtcl-primary-color);
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .rtcl-list-group-item .rtcl-author-badge {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--rtcl-primary-color);
  margin-top: 5px;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .rtcl-list-group-item .media .avatar {
  max-width: 40px;
  border-radius: 50%;
}
.rtcl .listing-sidebar .rtcl-listing-user-info .rtcl-list-group .rtcl-list-group-item .rtcl-icon::before {
  margin-left: 0;
}
.rtcl .rtcl-manage-listings .rtcl-listings-title-wrap h3, .rtcl .rtcl-favourite-listings .rtcl-listings-title-wrap h3 {
  font-size: 22px;
  font-weight: normal;
}
.rtcl .manage-listing .listing-details {
  flex: 1;
  padding: 0 15px;
}
.rtcl .manage-listing .listing-details .item-content {
  padding: 0;
}
.rtcl .manage-listing .listing-details .item-content > p {
  font-size: 16px;
}
.rtcl .manage-listing .listing-details .rtcl-actions {
  margin-top: 10px;
}
.rtcl nav[role=navigation] .pagination {
  border-top: 0;
  flex-wrap: wrap;
}
.rtcl nav[role=navigation] .pagination:before, .rtcl nav[role=navigation] .pagination:after {
  content: none;
}

/* slider */
.rtcl-slider-video-item .fluid-width-video-wrapper {
  height: 400px;
}

/* user info */
.rtcl-listing-user-info .reveal-phone:hover {
  cursor: pointer;
}
.rtcl-listing-user-info .reveal-phone.revealed small {
  display: none;
}
.rtcl-listing-user-info .reveal-phone.revealed:not(.rtcl-mobile) {
  cursor: default;
}
.rtcl-listing-user-info .reveal-phone.revealed .numbers {
  display: flex;
  flex-direction: column;
}
.rtcl-listing-user-info .reveal-phone.revealed .numbers .revealed-phone-number i,
.rtcl-listing-user-info .reveal-phone.revealed .numbers .revealed-whatsapp-number i {
  margin-right: 8px;
}
.rtcl-listing-user-info .rtcl-do-email .rtcl-do-email-link {
  color: inherit;
}
.rtcl-listing-user-info .rtcl-do-email .rtcl-form-group {
  margin-bottom: 10px;
}
.rtcl-listing-user-info .rtcl-do-email #rtcl-contact-form {
  display: none;
  padding: 10px 0;
}
.rtcl-listing-user-info .rtcl-do-email #rtcl-contact-form .rtcl-g-recaptcha-wrap,
.rtcl-listing-user-info .rtcl-do-email #rtcl-contact-form #rtcl-contact-g-recaptcha {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
.rtcl-listing-user-info .rtcl-contact-seller .rtcl-chat-link {
  color: inherit;
}
.rtcl-listing-user-info .rtcl-contact-seller .rtcl-chat-link .rtcl-icon {
  margin-right: 5px;
}

.rtcl-listing-badge-wrap span.badge {
  margin-right: 4px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.15;
}
.rtcl-listing-badge-wrap span.badge:last-child {
  margin-right: 0;
}

.rtcl-range-slider-field .rtcl-range-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group .rtcl-geo-address-field + .rtcl-range-slider-field {
  margin-top: 1rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=range].rtcl-range-input-slider {
    overflow: hidden;
    width: 80px;
    -webkit-appearance: none;
    background-color: #9a905d;
  }
  input[type=range].rtcl-range-input-slider::-webkit-slider-runnable-track {
    height: 10px;
    -webkit-appearance: none;
    color: #13bba4;
    margin-top: -1px;
  }
  input[type=range].rtcl-range-input-slider::-webkit-slider-thumb {
    width: 10px;
    -webkit-appearance: none;
    height: 10px;
    cursor: ew-resize;
    background: #434343;
    box-shadow: -80px 0 0 80px #43e5f7;
  }
}
@media (max-width: 1180px) {
  .rtcl-reviews.rtcl #comments ol.comment-list li .comment-container .media-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .comment-container .media {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .rtcl-listings .listing-item.rtcl-flex {
    flex-direction: column;
  }
  .rtcl-responsive-table th, .rtcl-responsive-table td, .rtcl-responsive-table tr {
    display: block !important;
  }
  .rtcl-responsive-table tr:nth-of-type(1),
  .rtcl-responsive-table tr.heading {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .rtcl-responsive-table td {
    position: relative;
    padding-left: 200px !important;
    min-height: 50px;
  }
  .rtcl-responsive-table td:before {
    position: absolute;
    top: 12px;
    left: 10px;
    width: 200px;
    padding-right: 40px;
    white-space: nowrap;
    font-weight: 700;
    content: attr(data-label);
  }
  .rtcl-responsive-table td.text-right {
    text-align: left !important;
  }
}
@media (max-width: 479px) {
  .rtcl .rtcl-responsive-table td {
    padding-left: 150px !important;
  }
  .rtcl .rtcl-responsive-table td:before {
    width: 115px;
  }
  .rtcl .rtcl-responsive-table.rtcl-membership-pricing-options td {
    padding-left: 130px !important;
  }
  .rtcl .rtcl-responsive-table.rtcl-membership-pricing-options .promotion-item .item-label {
    flex: 0 0 70px;
  }
}
@media (max-width: 390px) {
  .rtcl .rtcl-responsive-table.rtcl-membership-pricing-options .promotion-item .item-label {
    flex: 0 0 50px;
  }
}
.rtcl-checkout .content-area,
.rtcl-form-page .content-area,
.rtcl-account .site-content {
  background: #F5F7FA;
}

.rtcl-form-page .rtcl-post-form-wrap,
.rtcl-form-page .rtcl-listing-info-selecting {
  background: #fff;
  padding: 25px;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
}
.rtcl-form-page .form-control,
.rtcl-form-page .rtcl-form-control {
  font-size: 16px;
}
.rtcl-form-page .rtcl-form-group > label,
.rtcl-form-page .form-group > label {
  font-size: 16px;
  font-weight: 500;
}
.rtcl-form-page .price-wrap .rtcl-field-label {
  font-size: 16px;
  font-weight: 500;
}
.rtcl-form-page .rtcl-tags-input-wrap {
  position: relative;
}
.rtcl-form-page .rtcl-tags-input-wrap .rtcl-tags-input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  border: 1px solid #e7e7e7;
  padding: 10px;
}
.rtcl-form-page .rtcl-tags-input-wrap .rtcl-tags-input div {
  display: inline-block;
  background-color: #dddddd;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 3px;
}
.rtcl-form-page .rtcl-tags-input-wrap .rtcl-tags-input div span.remove {
  margin-left: 6px;
  cursor: pointer;
}
.rtcl-form-page .rtcl-tags-input-wrap .rtcl-tags-input input {
  display: inline-block;
  width: auto;
  flex-grow: 1;
  border: none;
  box-shadow: none;
  padding: 0;
  height: auto;
}
.rtcl-form-page .rtcl-tags-input-wrap .rtcl-tags-input input:focus, .rtcl-form-page .rtcl-tags-input-wrap .rtcl-tags-input input:active {
  box-shadow: none;
}
.rtcl-form-page .rtcl-tags-input-wrap ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  background: #fff;
  padding: 0;
  z-index: 9;
  border-radius: 3px;
  box-shadow: 0 0 20px #f0f0f0;
  transition: all 0.3s ease-in-out;
}
.rtcl-form-page .rtcl-tags-input-wrap ul li {
  list-style: none;
  padding: 12px 15px;
  line-height: 1;
  cursor: pointer;
}
.rtcl-form-page .rtcl-tags-input-wrap ul li:hover {
  background-color: #f6f6f6;
}
.rtcl-form-page .selected-cat .rtcl-icon {
  margin: 0 5px;
}

.rtcl-form-page .rtcl-login-form-wrap,
.rtcl-checkout .rtcl-login-form-wrap {
  box-shadow: 0 0 20px #f0f0f0;
  background-color: #ffffff;
  max-width: 100%;
  padding: 20px;
}
.rtcl-form-page .rtcl-login-form-wrap .rtcl-login-form-submit-wrap,
.rtcl-checkout .rtcl-login-form-wrap .rtcl-login-form-submit-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.rtcl-form-page .rtcl-login-form-wrap .rtcl-btn,
.rtcl-checkout .rtcl-login-form-wrap .rtcl-btn {
  padding: 14px 25px;
  line-height: 1;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
  border-width: 1px;
  border-style: solid;
  transition: all 0.3s ease-out;
}
.rtcl-form-page .rtcl-login-form-wrap .rtcl-field-label,
.rtcl-checkout .rtcl-login-form-wrap .rtcl-field-label {
  font-weight: 500;
}
.rtcl-form-page .rtcl-login-form-wrap a,
.rtcl-checkout .rtcl-login-form-wrap a {
  color: var(--rtcl-primary-color);
}
.rtcl-form-page .rtcl-login-form-wrap a:hover,
.rtcl-checkout .rtcl-login-form-wrap a:hover {
  color: var(--rtcl-secondary-color);
}

/*------ Theme Support ---------*/
.theme-oceanwp.rtcl .container {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.theme-twentytwentytwo .alignwide {
  max-width: 1000px;
  margin: 0 auto;
}
.theme-twentytwentytwo.rtcl-checkout .rtcl, .theme-twentytwentytwo.rtcl-form-page .rtcl, .theme-twentytwentytwo.rtcl-account .rtcl {
  max-width: 1000px;
}

.single-rtcl_listing.ast-separate-container .ast-article-single:not(.ast-related-post) {
  background-color: transparent;
  padding: 0;
}

.theme-astra.rtcl-form-page.ast-separate-container .ast-article-single, .theme-astra.rtcl-account.ast-separate-container .ast-article-single {
  padding: 0;
  background: transparent;
}
.theme-astra.rtcl-form-page.ast-separate-container .ast-article-single .ast-no-thumbnail .entry-title, .theme-astra.rtcl-account.ast-separate-container .ast-article-single .ast-no-thumbnail .entry-title {
  margin-left: 25px;
}
.theme-astra.rtcl-form-page .rtcl-message.alert {
  margin-left: 25px;
  margin-right: 25px;
}

.theme-twentytwentyone.rtcl-page .site-content {
  max-width: var(--responsive--alignwide-width);
  margin: 0 auto;
}
.theme-twentytwentyone div.entry-content > div.rtcl {
  max-width: var(--responsive--alignwide-width) !important;
}
.theme-twentytwentyone input[type=checkbox],
.theme-twentytwentyone input[type=radio] {
  top: 6px;
}
.theme-twentytwentyone.rtcl-form-page input[type=checkbox],
.theme-twentytwentyone.rtcl-form-page input[type=radio] {
  top: 0;
}
.theme-twentytwentyone .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
  background-color: var(--rtcl-button-hover-bg-color);
  color: var(--rtcl-button-hover-color);
}

/* slider */
/**
 * Swiper 7.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 24, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.rtcl-slider .rtcl-listing-gallery__trigger {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 14px;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 100%;
  box-sizing: content-box;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtcl-slider.active-video-slider .rtcl-listing-gallery__trigger {
  display: none;
}
.rtcl-slider.swiper-initialized .rtcl-slider-item {
  cursor: move;
  width: 100% !important;
}
.rtcl-slider.off:not(.swiper-initialized).off .swiper-wrapper {
  display: block;
}
.rtcl-slider.off:not(.swiper-initialized).off .swiper-slide + .swiper-slide {
  margin-top: 15px;
}

.rtcl-slider-nav {
  margin-top: 10px;
  max-height: 95px;
}
.rtcl-slider-nav .rtcl-slider-thumb-item {
  cursor: pointer;
  opacity: 0.6;
}
.rtcl-slider-nav .rtcl-slider-thumb-item:hover, .rtcl-slider-nav .rtcl-slider-thumb-item.active, .rtcl-slider-nav .rtcl-slider-thumb-item.swiper-slide-thumb-active {
  opacity: 1;
}
.rtcl-slider-nav .rtcl-slider-thumb-item img {
  height: 95px;
  max-width: 100%;
  max-height: 100%;
}
.rtcl-slider-nav .rtcl-slider-thumb-item.rtcl-slider-video-thumb {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rtcl-slider-nav .rtcl-slider-thumb-item.rtcl-slider-video-thumb:before {
  position: absolute;
  z-index: 99;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) url("../images/video-play.png") center center no-repeat;
  background-size: 40%;
}
.rtcl-slider-nav:not(.swiper-initialized) .rtcl-slider-thumb-item {
  width: auto;
}

.rtcl-slider, .rtcl-slider-nav,
.rtcl-carousel-slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.rtcl-slider [class^=swiper-button], .rtcl-slider-nav [class^=swiper-button],
.rtcl-carousel-slider [class^=swiper-button] {
  visibility: hidden;
}
.rtcl-slider.swiper-initialized [class^=swiper-button], .rtcl-slider-nav.swiper-initialized [class^=swiper-button],
.rtcl-carousel-slider.swiper-initialized [class^=swiper-button] {
  visibility: visible;
}

.rtcl-related-slider:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  grid-gap: 15px;
}
.rtcl-related-slider:not(.swiper-initialized) .swiper-slide {
  flex-shrink: initial;
}

.swiper-wrapper .entry {
  margin-top: 0;
}

.badge.rtcl-badge-featured {
  color: var(--rtcl-badge-featured-color);
  background-color: var(--rtcl-badge-featured-bg-color);
}
.badge.rtcl-badge-new {
  color: var(--rtcl-badge-new-color);
  background-color: var(--rtcl-badge-new-bg-color);
}

.rtcl-user-single-wrapper .rtcl-user-info-wrap {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 20px;
}
@media screen and (max-width: 575px) {
  .rtcl-user-single-wrapper .rtcl-user-info-wrap {
    display: block;
  }
}
.rtcl-user-single-wrapper .rtcl-user-info-wrap .rtcl-user-img {
  max-width: 250px;
  margin-right: 20px;
}
@media screen and (max-width: 575px) {
  .rtcl-user-single-wrapper .rtcl-user-info-wrap .rtcl-user-img {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.rtcl-user-single-wrapper .rtcl-user-info-wrap .rtcl-user-info {
  max-width: calc(100% - 270px);
  flex: 0 0 calc(100% - 270px);
}
@media screen and (max-width: 575px) {
  .rtcl-user-single-wrapper .rtcl-user-info-wrap .rtcl-user-info {
    max-width: 100%;
  }
}
.rtcl-user-single-wrapper .rtcl-user-info-wrap .rtcl-user-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.rtcl-user-single-wrapper .rtcl-user-info-wrap .rtcl-user-social a {
  display: inline-flex;
}
.rtcl-user-single-wrapper .rtcl-user-listing-list > h2 {
  margin: 20px 0;
}
.rtcl-user-single-wrapper .rtcl-user-listing-list .rtcl-list-view .listing-item {
  border: none;
  margin-bottom: 20px;
  padding: 15px;
}

.rtcl-social-profile-wrap {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 15px 25px;
  background-color: #fff;
  box-shadow: 0 0 20px #f0f0f0;
  border-radius: 4px;
}
.rtcl-social-profile-wrap .rtcl-social-profile-label {
  text-transform: capitalize;
  font-size: 16px;
  margin-right: 5px;
  font-weight: 600;
}
.rtcl-social-profile-wrap .rtcl-social-profiles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 15px;
  align-items: center;
}
.rtcl-social-profile-wrap .rtcl-social-profiles a {
  display: inline-flex;
  align-items: center;
}

.rtcl-EditAccountForm .rtcl-social-wrap-row .form-control {
  margin-bottom: 10px;
}

.rtcl .rtcl-icon-twitter,
.rtcl .rtcl-icon-tiktok {
  display: inline-block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 16px;
  height: 16px;
}

.rtcl-icon-tiktok {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z'/%3E%3C/svg%3E");
}

/*
.rtcl-icon-twitter {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");

	&:before {
		content: none;
	}
}
*/
.rtcl-slider-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border-radius: 4px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  background-color: var(--rtcl-button-bg-color);
  color: var(--rtcl-button-color);
  font-size: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 1366px) {
  .rtcl-slider-btn {
    left: -17px;
  }
}
.rtcl-slider-btn:focus, .rtcl-slider-btn:hover {
  color: var(--rtcl-button-hover-color);
  background-color: var(--rtcl-button-hover-bg-color);
}
.rtcl-slider-btn:focus {
  outline: 0;
  box-shadow: none;
}
.rtcl-slider-btn.button-right {
  left: initial;
  right: 0;
}
@media (min-width: 1366px) {
  .rtcl-slider-btn.button-right {
    right: -17px;
  }
}
.rtcl-slider-btn.swiper-button-disabled {
  opacity: 0.5;
  visibility: hidden;
}
@media (min-width: 1366px) {
  .rtcl-slider-btn-style-1 .rtcl-slider-btn {
    transform: translate(20px, -50%);
  }
  .rtcl-slider-btn-style-1 .rtcl-slider-btn.button-right {
    transform: translate(-20px, -50%);
  }
}
.rtcl-slider-btn-style-2 .rtcl-slider-btn, .rtcl-slider-btn-style-3 .rtcl-slider-btn {
  top: 0;
  transform: unset;
  visibility: visible;
  opacity: 1;
}
.rtcl-slider-btn-style-2 .rtcl-slider-btn {
  left: 0;
}
@media (min-width: 1366px) {
  .rtcl-slider-btn-style-2 .rtcl-slider-btn {
    left: 0;
  }
}
.rtcl-slider-btn-style-2 .rtcl-slider-btn.button-right {
  left: 44px;
}
@media (min-width: 1366px) {
  .rtcl-slider-btn-style-2 .rtcl-slider-btn.button-right {
    left: 44px;
  }
}
.rtcl-slider-btn-style-3 .rtcl-slider-btn {
  right: 44px;
  left: auto;
}
@media (min-width: 1366px) {
  .rtcl-slider-btn-style-3 .rtcl-slider-btn {
    left: auto;
    right: 44px;
  }
}
.rtcl-slider-btn-style-3 .rtcl-slider-btn.button-right {
  left: auto;
  right: 0;
}
@media (min-width: 1366px) {
  .rtcl-slider-btn-style-3 .rtcl-slider-btn.button-right {
    left: auto;
    right: 0;
  }
}

.rtcl-slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
}
.rtcl-slider-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  cursor: pointer;
  width: 24px;
  height: 8px;
  background-color: #f5f7fa;
  opacity: 1;
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 0.6;
  background-color: var(--rtcl-primary-color);
}
.rtcl-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.rtcl-slider-pagination-style-2 .rtcl-slider-pagination .swiper-pagination-bullet {
  width: 25px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid var(--rtcl-primary-color);
}
.rtcl-slider-pagination-style-2 .rtcl-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 45px;
  background-color: var(--rtcl-primary-color);
  border-color: var(--rtcl-primary-color);
}
.rtcl-slider-pagination-style-3 .rtcl-slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.rtcl-slider-pagination-style-4 .rtcl-slider-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: transparent !important;
  position: relative;
  z-index: 5;
}
.rtcl-slider-pagination-style-4 .rtcl-slider-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--rtcl-black-color);
}
.rtcl-slider-pagination-style-4 .rtcl-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--rtcl-primary-color);
}
.rtcl-slider-pagination-style-4 .rtcl-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: var(--rtcl-primary-color);
}

.rtcl-el-slider-wrapper {
  --rtcl-black-color: #000;
  --rtcl-white-color: #fff;
  position: relative;
}
.rtcl-el-slider-wrapper:hover .rtcl-slider-btn:not(.swiper-button-disabled) {
  visibility: visible;
  opacity: 1;
}
.rtcl-el-slider-wrapper.rtcl-slider-btn-style-1 .rtcl-slider-btn {
  visibility: hidden;
  opacity: 0;
}
.rtcl-el-slider-wrapper.rtcl-slider-btn-style-1:hover .rtcl-slider-btn:not(.swiper-button-disabled) {
  visibility: visible;
  opacity: 1;
  transform: translate(0, -50%);
}
.rtcl-el-slider-wrapper.rtcl-slider-btn-style-1:hover .rtcl-slider-btn:not(.swiper-button-disabled).button-right {
  transform: translate(0, -50%);
}
@media (min-width: 1366px) {
  .rtcl-el-slider-wrapper.rtcl-slider-btn-style-1 .rtcl-slider-btn {
    visibility: hidden;
    opacity: 0;
  }
  .rtcl-el-slider-wrapper.rtcl-slider-btn-style-1:hover .rtcl-slider-btn:not(.swiper-button-disabled) {
    visibility: visible;
    opacity: 1;
    transform: translate(0, -50%);
  }
  .rtcl-el-slider-wrapper.rtcl-slider-btn-style-1:hover .rtcl-slider-btn:not(.swiper-button-disabled).button-right {
    transform: translate(0, -50%);
  }
}
.rtcl-el-slider-wrapper.rtcl-slider-btn-style-2, .rtcl-el-slider-wrapper.rtcl-slider-btn-style-3 {
  padding-top: 50px;
}

.rtcl-el-slider-wrapper .rtcl-slider-pagination.swiper-pagination-bullets {
  bottom: -30px;
}
.rtcl-el-slider-wrapper .swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  z-index: 99;
}

body.rtl .rtcl-el-slider-wrapper .swiper {
  direction: rtl;
}
body.rtl .rtcl-el-slider-wrapper.rtcl-slider-btn-style-2 .rtcl-slider-btn.button-right {
  right: inherit;
}

.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-close {
  left: inherit;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 1;
  border-radius: 1.3rem;
  border: 3px solid #fff;
  background-color: #2f3432;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.75);
  padding: 0;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  text-shadow: none;
}
.rtcl-ui-modal .rtcl-modal-wrapper .rtcl-modal-content .rtcl-modal-close i {
  color: #fff;
}
.rtcl-ui-modal .rtcl-ui-select-list-wrap {
  position: relative;
}
.rtcl-ui-modal .rtcl-ui-select-list-wrap h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
}
.rtcl-ui-modal .rtcl-ui-select-list-wrap .rtcl-ui-select-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.tax-rtcl_category .rtcl-ajax-filter-item.rtcl-filter_category:not(.showAllItems) .rtcl-ajax-filter-data-item.rtcl-filter-checkbox-item:not(.active) {
  display: none;
}

.tax-rtcl_location .rtcl-ajax-filter-item.rtcl-filter_location:not(.showAllItems) .rtcl-ajax-filter-data-item.rtcl-filter-checkbox-item:not(.active) {
  display: none;
}

.tax-rtcl_tag .rtcl-ajax-filter-item.rtcl-filter_tag:not(.showAllItems) .rtcl-ajax-filter-data-item.rtcl-filter-checkbox-item:not(.active) {
  display: none;
}

.rtcl-filter-checkbox-item label {
  margin: 0;
  cursor: pointer;
}

.rtcl-widget-ajax-filter-class .rtcl-ajax-filter-wrap {
  padding: 0;
}

.rtcl-ajax-filter-item {
  font-size: 16px;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item label {
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item label:before {
  align-self: flex-start;
  -webkit-appearance: none;
  background-color: initial;
  border: 1px solid #91939d;
  content: "";
  cursor: pointer;
  display: inline-block;
  padding: 6px;
  position: relative;
  transition: all 0.3s ease-in-out;
  vertical-align: middle;
  border-radius: 2px;
  margin: 0 8px 0 0;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item label:after {
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 12px;
  width: 5px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item input.rtcl-filter-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: none;
  height: 0;
  visibility: hidden;
  width: 0;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item input.rtcl-filter-checkbox:checked + label::before {
  background-color: var(--rtcl-primary-color, #111);
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item input.rtcl-filter-checkbox:checked + label::after {
  opacity: 1;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item input.rtcl-filter-checkbox[type=radio] + label:before {
  border-radius: 50%;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item input.rtcl-filter-checkbox[type=radio] + label::after {
  border-radius: 50%;
  height: 12px;
  left: 1px;
  opacity: 0;
  top: 1px;
  width: 12px;
  border: none;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item input.rtcl-filter-checkbox[type=radio]:checked + label:before {
  background-color: transparent;
}
.rtcl-ajax-filter-item .rtcl-filter-checkbox-item input.rtcl-filter-checkbox[type=radio]:checked + label:after {
  opacity: 1;
  background-color: var(--rtcl-primary-color, #111);
  transform: scale(1);
}
.rtcl-ajax-filter-item .rtcl-filter-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  padding: 12px 20px;
  border-bottom: 1px solid #d4ded9;
}
.rtcl-ajax-filter-item .rtcl-filter-title-wrap .rtcl-filter-title {
  flex: 1;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  line-height: 1.3;
}
.rtcl-ajax-filter-item .rtcl-filter-title-wrap .rtcl-icon {
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s;
  background-color: #d8d8f4;
  border: 1px solid var(--rtcl-primary-color);
  color: var(--rtcl-primary-color);
  border-radius: 50%;
  height: 22px;
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rtcl-ajax-filter-item .rtcl-filter-content {
  margin: 0;
  padding: 20px;
}
.rtcl-ajax-filter-item .rtcl-price-range-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
}
.rtcl-ajax-filter-item .rtcl-price-range-wrap .rtcl-range-slider-input-wrap {
  display: flex;
  grid-gap: 20px;
}
.rtcl-ajax-filter-item .rtcl-more-less-btn {
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: color 0.3s, margin 0.3s;
}
.rtcl-ajax-filter-item .rtcl-more-less-btn .text {
  display: flex;
  grid-gap: 5px;
  align-items: center;
}
.rtcl-ajax-filter-item .rtcl-more-less-btn .text .rtcl-icon {
  display: inline-block;
  text-align: center;
}
.rtcl-ajax-filter-item .rtcl-more-less-btn .text.less-text {
  display: none;
}
.rtcl-ajax-filter-item .rtcl-more-less-btn.active .more-text {
  display: none;
}
.rtcl-ajax-filter-item .rtcl-more-less-btn.active .less-text {
  display: flex;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data {
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data.sub-list {
  margin-left: 20px;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item {
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item.hideAble {
  display: none;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item.hideAble.active {
  display: flex;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item .rtcl-ajax-filter-diiWrap {
  display: flex;
  grid-gap: 10px;
  align-items: center;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item .rtcl-ajax-filter-diiWrap .rtcl-cat-icon:before {
  margin: 0 5px 0 0;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item .rtcl-ajax-filter-diiWrap img.rtcl-cat-img {
  max-width: 16px;
  max-height: 20px;
  margin-right: 5px;
  display: inline-block;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item .rtcl-ajax-filter-diiWrap .rtcl-load-sub-list {
  margin-left: auto;
  cursor: pointer;
  transition: transform 0.3s;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item .rtcl-ajax-filter-diiWrap .rtcl-load-sub-list i {
  display: flex;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item.has-sub.is-open > .rtcl-ajax-filter-diiWrap .rtcl-load-sub-list i:before {
  content: "\e892";
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-data-item.has-sub:not(.is-open) > .sub-list {
  display: none;
}
.rtcl-ajax-filter-item .rtcl-radius-search-wrap {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
}
.rtcl-ajax-filter-item .rtcl-noUiSlider {
  border: 0;
  height: 5px;
  margin: 8px 17px 8px 5px;
  background: #DEE2E3;
}
.rtcl-ajax-filter-item .rtcl-noUiSlider .noUi-connect, .rtcl-ajax-filter-item .rtcl-noUiSlider .noUi-origin {
  transition: transform 0.08s;
}
.rtcl-ajax-filter-item .rtcl-noUiSlider .noUi-connect {
  background-color: var(--rtcl-primary-color, #5787FA);
}
.rtcl-ajax-filter-item .rtcl-noUiSlider .noUi-handle {
  background-color: var(--rtcl-primary-color, #5787FA);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  height: 20px;
  top: -8px;
  width: 20px;
  cursor: pointer;
}
.rtcl-ajax-filter-item .rtcl-noUiSlider .noUi-handle:before, .rtcl-ajax-filter-item .rtcl-noUiSlider .noUi-handle:after {
  content: none;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-text {
  position: relative;
}
.rtcl-ajax-filter-item .rtcl-ajax-filter-text i {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  color: var(--rtcl-primary-color, red);
}
.rtcl-ajax-filter-item .list-tree {
  margin-top: 15px;
  list-style-type: none;
  padding: 0;
}
.rtcl-ajax-filter-item .list-tree-item {
  margin: 0;
  padding-left: 0;
  display: flex;
  grid-gap: 5px;
  align-items: center;
}
.rtcl-ajax-filter-item .rtcl-filter-ratings {
  font-size: 15px;
}
.rtcl-ajax-filter-item .rtcl-filter-ratings-item {
  cursor: pointer;
}
.rtcl-ajax-filter-item .rtcl-filter-ratings-item.selected .star-rating span:before, .rtcl-ajax-filter-item .rtcl-filter-ratings-item.selected .star-rating:before, .rtcl-ajax-filter-item .rtcl-filter-ratings-item:hover .star-rating span:before, .rtcl-ajax-filter-item .rtcl-filter-ratings-item:hover .star-rating:before {
  color: rgba(255, 122, 0, 0.949);
}
.rtcl-ajax-filter-item .rtcl-reset {
  cursor: pointer;
  display: none;
}
.rtcl-ajax-filter-item.is-open .rtcl-filter-title-wrap .rtcl-icon-angle-down {
  transform: rotate(180deg);
}
.rtcl-ajax-filter-item.is-active .rtcl-clear-text,
.rtcl-ajax-filter-item.is-active .rtcl-reset {
  display: block;
}
.rtcl-ajax-filter-item .rtcl-show-all {
  cursor: pointer;
}

.rtcl-ajax-filter-cf-wrap + .rtcl-ajax-filter-item {
  margin-top: 20px;
}

.rtcl-active-filters-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 25px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  font-size: 15px;
  margin-bottom: 30px;
  padding: 20px;
}
.rtcl-active-filters-wrap .rtcl-active-filters {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 15px;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px 10px;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-name {
  color: #333;
  font-weight: 500;
  text-transform: capitalize;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi {
  position: relative;
  border: 1px solid #ced4da;
  border-radius: 4px;
  display: inline-flex;
  font-size: 14px;
  padding: 2px 12px;
  text-transform: capitalize;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi:hover {
  border-color: var(--rtcl-primary-color, #004BFF);
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi .rtcl-remove-filter {
  cursor: pointer;
  left: -8px;
  top: -8px;
  position: absolute;
  background-color: var(--rtcl-primary-color, #004BFF);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 3px;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi .rtcl-remove-filter i.remove-icon {
  color: #ffffff;
  vertical-align: middle;
  border: none;
  border-radius: 50%;
  background: transparent;
  position: relative;
  width: 10px;
  height: 10px;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi .rtcl-remove-filter i.remove-icon:before, .rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi .rtcl-remove-filter i.remove-icon:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 10px;
  width: 2px;
  background-color: currentColor;
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi .rtcl-remove-filter i.remove-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.rtcl-active-filters-wrap .rtcl-active-filters .rtcl-active-filter .af-items .afi .rtcl-remove-filter i.remove-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.rtcl-active-filters-wrap .rtcl-clear-filters {
  color: #333;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  gap: 5px;
}
.rtcl-active-filters-wrap .rtcl-clear-filters .icon-wrap {
  margin-right: 6px;
}
.rtcl-active-filters-wrap .rtcl-clear-filters .icon-wrap i {
  color: #ff0000;
}

.rtcl-filter-number-field-wrap {
  display: flex;
  grid-gap: 25px;
}
.rtcl-filter-number-field-wrap.min-max .rtcl-filter-number-field {
  width: 50%;
}

.rtcl-ajax-pagination-wrap {
  margin-top: 30px;
  padding: 15px 0 10px;
}
.rtcl-ajax-pagination-wrap ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 5px;
}
.rtcl-ajax-pagination-wrap ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.rtcl-ajax-pagination-wrap ul li span {
  display: inline-block;
  padding: 8px 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  text-decoration: none;
  color: var(--rtcl-primary-color, #5787FA);
  background-color: #ffffff;
  transition: all 0.5s ease-out;
}
.rtcl-ajax-pagination-wrap ul li.page-item {
  cursor: pointer;
}
.rtcl-ajax-pagination-wrap ul li.page-item.active span, .rtcl-ajax-pagination-wrap ul li.page-item:hover span {
  color: #ffffff;
  background-color: var(--rtcl-primary-color, #5787FA);
}
.rtcl-ajax-pagination-wrap ul li.page-item.active {
  cursor: not-allowed;
}

@media screen and (min-width: 768px) {
  .rtcl-ajax-filter-floating-mobile {
    display: none;
  }
  .rtcl-ajax-filter-wrap {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  }
}
@media screen and (max-width: 767px) {
  .rtcl-widget-ajax-filter-wrapper .rtcl-ajax-filter-floating-mobile {
    display: flex;
    align-items: center;
    background: var(--rtcl-primary-color);
    padding: 15px 20px;
    border-radius: 2px;
  }
  .rtcl-widget-ajax-filter-wrapper .rtcl-ajax-filter-floating-mobile h4 {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
  }
  .rtcl-widget-ajax-filter-wrapper .rtcl-ajax-filter-floating-mobile .rtcl-ajax-filter-open-filter {
    margin-left: auto;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    padding: 10px 0;
    align-items: center;
    gap: 8px;
  }
  .rtcl-widget-ajax-filter-wrapper .rtcl-ajax-filter-floating-mobile .rtcl-ajax-filter-open-filter strong {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: none;
  }
  .rtcl-widget-ajax-filter-wrapper.rtcl-loading {
    min-height: auto;
  }
  .rtcl-widget-ajax-filter-wrapper.sidebar-filter-open.rtcl-loading .rtcl-loading-overlay {
    position: fixed !important;
    width: 260px !important;
    height: 100% !important;
    left: 0 !important;
    z-index: 100000 !important;
  }
  .rtcl-widget-ajax-filter-wrapper .rtcl-widget-ajax-filter-class {
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: -265px;
    overflow-x: hidden;
    transition: 0.5s;
    background-color: #ffffff;
    flex: 0 0 260px;
    width: 260px;
    border-radius: 0;
  }
  .rtcl-widget-ajax-filter-wrapper .rtcl-widget-ajax-filter-class .rtcl-widget-heading h3, .rtcl-widget-ajax-filter-wrapper .rtcl-widget-ajax-filter-class > h3 {
    border-radius: 0;
  }
  .sidebar-ajax-filter-opened {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
.rtcl-ajax-listings .no-listing-found {
  margin: 0;
  padding: 12px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.rtcl .rtcl-breadcrumb {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #e7e7e7;
  font-size: 16px;
  line-height: 1.4;
  color: #767676;
}
.rtcl .rtcl-breadcrumb a {
  color: #767676;
}
.rtcl .rtcl-breadcrumb a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl .rtcl-breadcrumb span:last-child {
  color: var(--rtcl-primary-color);
}
.rtcl .rtcl-breadcrumb .delimiter {
  display: inline-block;
  padding: 0 8px;
  font-style: normal;
}
.rtcl.single-rtcl_listing .rtcl-breadcrumb {
  margin-top: 20px;
}

.rtcl-widget-heading h3 {
  background-color: var(--rtcl-primary-color);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 8px 8px 0 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.rtcl-widget-heading h3:after {
  content: none;
}
.rtcl-widget-heading + div, .rtcl-widget-heading + ul {
  padding: 22px 25px;
}

.rtcl-sidebar-wrapper > div {
  margin-bottom: 30px;
  border-radius: 8px;
  border: none;
  padding: 0;
  background-color: #ffffff;
  color: #797f89;
}
.rtcl-sidebar-wrapper > div:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .rtcl-sidebar-wrapper {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .rtcl-widget-filter-wrapper #rtcl-toggle-filter-mobile {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .rtcl-widget-filter-wrapper #rtcl-toggle-filter-mobile {
    background-color: var(--rtcl-primary-color);
    color: #fff;
    display: block;
    padding: 10px 20px;
    border-radius: 2px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
  }
  .rtcl-widget-filter-wrapper .rtcl-widget-filter-class,
  .rtcl-widget-filter-wrapper .rtcl-widget-heading {
    display: none;
  }
}

.rtcl-widget-filter-class ul,
.rtcl-widget-categories-class ul,
.rtcl-widget-search-class ul,
.rtcl-widget-listing-class ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rtcl-widget-filter-class ul li,
.rtcl-widget-categories-class ul li,
.rtcl-widget-search-class ul li,
.rtcl-widget-listing-class ul li {
  margin: 5px 0;
}

.rtcl-widget-filter-class {
  border-radius: 2px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: #91939d;
  border: none;
  font-size: 16px;
  line-height: 1.4;
}
.rtcl-widget-filter-class a {
  color: #91939d;
}
.rtcl-widget-filter-class a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl-widget-filter-class .widget-title {
  font-size: 20px;
  padding: 12px 20px;
  margin-bottom: 0;
  border-radius: 2px 2px 0 0;
  background-color: var(--rtcl-primary-color);
  color: #fff;
  border: none;
}
.rtcl-widget-filter-class .panel-block {
  padding: 25px;
}
.rtcl-widget-filter-class .panel-block ul.filter-list.all-categories li.is-parent {
  padding-left: 0 !important;
}
.rtcl-widget-filter-class .panel-block ul.filter-list.all-categories li.is-parent:before {
  content: "";
}
.rtcl-widget-filter-class .panel-block ul.filter-list.all-categories li.is-parent > a {
  position: relative;
  padding-left: 2.2rem;
}
.rtcl-widget-filter-class .panel-block ul.filter-list.all-categories li.is-parent > a .icon {
  position: absolute;
  left: 0;
  font-size: 15px;
  top: -3px;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li {
  display: block;
  padding: 5px 0;
  position: relative;
  line-height: 1.4;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li span.rtcl-cat-icon,
.rtcl-widget-filter-class .panel-block ul.filter-list li img.rtcl-cat-img {
  max-height: 15px;
  max-width: 15px;
  margin-right: 10px;
  display: inline-block;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li .rtcl-cat-icon.rtcl-icon {
  margin-right: 10px;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li .rtcl-cat-icon.rtcl-icon:before {
  margin: 0;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li:not(.is-parent) {
  padding-left: 20px;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li:not(.is-parent) a:before {
  content: "\f105";
  position: absolute;
  left: 5px;
  top: 5px;
  font-family: "rtcl", serif;
  z-index: 3;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li ul.sub-list {
  display: none;
  margin-left: 10px;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.has-sub.is-open > ul.sub-list {
  display: block;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.has-sub .arrow {
  position: absolute;
  content: "";
  cursor: pointer;
  right: 0;
  -moz-transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.has-sub.is-open > .arrow {
  transform: rotate(180deg);
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.active > a {
  font-weight: bold;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .t-center {
  text-align: center;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-field .ui-input {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-buttons.has-expanded .rtcl-filter-btn {
  background-color: var(--rtcl-primary-color);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  text-transform: capitalize;
  border: 1px solid var(--rtcl-primary-color);
  display: inline-block;
  transition: all 0.3s;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-buttons.has-expanded .rtcl-filter-btn:hover {
  background-color: transparent;
  color: #000000;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-buttons.has-expanded .rtcl-filter-clear-btn {
  background-color: var(--rtcl-button-bg-color);
  border-color: var(--rtcl-button-bg-color);
  color: var(--rtcl-button-color);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-buttons.has-expanded .rtcl-filter-clear-btn:hover {
  background-color: var(--rtcl-button-hover-bg-color);
  border-color: var(--rtcl-button-hover-bg-color);
  color: var(--rtcl-button-hover-color);
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item:not(:first-child) .ui-accordion-title {
  margin-top: 0.75rem;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .ui-accordion-title {
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  border-bottom: 1px solid #e7e7e7;
  display: block;
  font-weight: 700;
  color: #212529;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .ui-accordion-title:hover {
  text-decoration: none;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .ui-accordion-count, .rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .ui-accordion-content {
  display: none;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .rtcl-form-group {
  margin: 0;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .price-container .rtcl-row {
  margin-right: 0;
  margin-left: 0;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .price-container .rtcl-row > div {
  padding-left: 0;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .price-container .rtcl-row .rtcl-form-control:focus {
  border-color: var(--rtcl-primary-color);
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item.is-open .ui-accordion-icon {
  transform: rotate(180deg);
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item.is-open .ui-accordion-content {
  display: block;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .ui-accordion-icon {
  float: right;
  display: inline-block;
  font: normal normal normal 14px/1 "rtcl";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.3s;
  background-color: #d8d8f4;
  border: 1px solid var(--rtcl-primary-color);
  color: var(--rtcl-primary-color);
  border-radius: 50%;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item .ui-accordion-icon:before {
  content: "\f107";
  padding: 0;
  margin: 0;
  width: 20px;
  height: 20px;
  transform: translateY(3px);
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item.rtcl-radius-filter .rtcl-range-slider-field .rtcl-range-label {
  margin-top: 10px;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-accordion-item.rtcl-radius-filter .rtcl-range-slider-field .rtcl-range-slider-input {
  width: 100%;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .t-small {
  font-size: 0.8572rem;
  line-height: 1.5;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-link-tree-item:not(.is-opener) {
  position: relative;
  padding-left: 1.2rem;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-link-tree-item {
  margin: 0.5rem 0;
  padding: 0;
  line-height: 1.5;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-link-tree-item label {
  padding: 0;
  margin: 0;
  outline: 0;
  cursor: pointer;
}
.rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-link-tree-item .ui-checkbox {
  position: absolute;
  top: 0.3rem;
  left: 0;
  margin-right: 0.4rem;
}
.rtcl-widget-filter-class .panel-block ul.filter-list.is-collapsed > li:not(:nth-child(-n+5)), .rtcl-widget-filter-class .panel-block ul.sub-list.is-collapsed > li:not(:nth-child(-n+5)), .rtcl-widget-filter-class .panel-block ul.ui-link-tree.is-collapsed > li:not(:nth-child(-n+5)) {
  display: none;
}
.rtcl-widget-filter-class .panel-block ul.filter-list.is-collapsed > li:not(:nth-child(-n+5)).is-opener, .rtcl-widget-filter-class .panel-block ul.filter-list.is-collapsed > li.is-open.is-loaded, .rtcl-widget-filter-class .panel-block ul.filter-list.is-collapsed > li.is-open.active, .rtcl-widget-filter-class .panel-block ul.sub-list.is-collapsed > li:not(:nth-child(-n+5)).is-opener, .rtcl-widget-filter-class .panel-block ul.sub-list.is-collapsed > li.is-open.is-loaded, .rtcl-widget-filter-class .panel-block ul.sub-list.is-collapsed > li.is-open.active, .rtcl-widget-filter-class .panel-block ul.ui-link-tree.is-collapsed > li:not(:nth-child(-n+5)).is-opener, .rtcl-widget-filter-class .panel-block ul.ui-link-tree.is-collapsed > li.is-open.is-loaded, .rtcl-widget-filter-class .panel-block ul.ui-link-tree.is-collapsed > li.is-open.active {
  display: block;
}
.rtcl-widget-filter-class .panel-block ul.filter-list.is-open > li:not(:nth-child(-n+5)).is-opener, .rtcl-widget-filter-class .panel-block ul.sub-list.is-open > li:not(:nth-child(-n+5)).is-opener, .rtcl-widget-filter-class .panel-block ul.ui-link-tree.is-open > li:not(:nth-child(-n+5)).is-opener {
  display: none;
}
.rtcl-widget-filter-class .panel-block ul.filter-list.is-open > li:not(:nth-child(-n+5)), .rtcl-widget-filter-class .panel-block ul.sub-list.is-open > li:not(:nth-child(-n+5)), .rtcl-widget-filter-class .panel-block ul.ui-link-tree.is-open > li:not(:nth-child(-n+5)) {
  display: block;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.is-opener, .rtcl-widget-filter-class .panel-block ul.sub-list li.is-opener, .rtcl-widget-filter-class .panel-block ul.ui-link-tree li.is-opener {
  display: none;
  padding-left: 0;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.is-opener:before, .rtcl-widget-filter-class .panel-block ul.sub-list li.is-opener:before, .rtcl-widget-filter-class .panel-block ul.ui-link-tree li.is-opener:before {
  content: "";
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.is-opener span, .rtcl-widget-filter-class .panel-block ul.sub-list li.is-opener span, .rtcl-widget-filter-class .panel-block ul.ui-link-tree li.is-opener span {
  cursor: pointer;
}
.rtcl-widget-filter-class .panel-block ul.filter-list li.is-opener span i, .rtcl-widget-filter-class .panel-block ul.sub-list li.is-opener span i, .rtcl-widget-filter-class .panel-block ul.ui-link-tree li.is-opener span i {
  margin-right: 5px;
}
.rtcl-widget-filter-class .panel-block .ui-accordion-item:not(.rtcl-ad-type-filter) ul.ui-link-tree {
  max-height: 250px;
  overflow-y: scroll;
}
.rtcl-widget-filter-class .panel-block ul.ui-link-tree input[type=radio], .rtcl-widget-filter-class .panel-block ul.ui-link-tree input[type=checkbox] {
  margin: 1px 0 0;
}
.rtcl-widget-filter-class .panel-block ul li.has-sub .arrow .rtcl-icon {
  color: #b0b0b0;
  font-size: 10px;
}
.rtcl-widget-filter-class .panel-block ul li:before {
  content: none;
}
.rtcl-widget-filter-class .panel-block ul li.is-opener span i {
  color: var(--rtcl-primary-color);
}

.theme-twentytwentyone .rtcl-widget-filter-class .panel-block .rtcl-filter-form .ui-link-tree-item:not(.is-opener) {
  padding-left: 35px;
}

nav.rtcl-pagination,
.rtcl-ajax-pagination-wrap {
  margin-top: 30px;
}
nav.rtcl-pagination ul,
.rtcl-ajax-pagination-wrap ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 10px;
}
nav.rtcl-pagination ul li,
.rtcl-ajax-pagination-wrap ul li {
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
nav.rtcl-pagination ul li > span,
nav.rtcl-pagination ul li .page-numbers,
.rtcl-ajax-pagination-wrap ul li > span,
.rtcl-ajax-pagination-wrap ul li .page-numbers {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  text-decoration: none;
  color: var(--rtcl-primary-color);
  background-color: #ffffff;
  transition: all 0.3s;
}
nav.rtcl-pagination ul li > span:hover,
nav.rtcl-pagination ul li .page-numbers:hover,
.rtcl-ajax-pagination-wrap ul li > span:hover,
.rtcl-ajax-pagination-wrap ul li .page-numbers:hover {
  color: #ffffff;
  border: 1px solid transparent;
  background-color: var(--rtcl-primary-color);
}
nav.rtcl-pagination ul li > span.current,
nav.rtcl-pagination ul li .page-numbers.current,
.rtcl-ajax-pagination-wrap ul li > span.current,
.rtcl-ajax-pagination-wrap ul li .page-numbers.current {
  color: #ffffff;
  border: 1px solid transparent;
  background-color: var(--rtcl-primary-color);
}

.rtcl-notices-wrapper .alert {
  border: 1px solid transparent;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  position: relative;
}
.rtcl-notices-wrapper .alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.rtcl-notices-wrapper .alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}
.rtcl-notices-wrapper .alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

html,
body.rtcl-account,
body.rtcl-account > .rtcl {
  height: 100%;
}

.rtcl-form-group-no-margin-bottom {
  margin-bottom: 0 !important;
}

.rtcl-account {
  background: #EEEEEE;
}
.rtcl-account *, .rtcl-account ::after, .rtcl-account ::before {
  box-sizing: border-box;
}
.rtcl-account #rtcl-user-login-wrapper > .rtcl-message {
  width: 100%;
}
.rtcl-account .rtcl-btn,
.rtcl-account .btn {
  cursor: pointer;
}
.rtcl-account .rtcl-btn:disabled,
.rtcl-account .btn:disabled {
  opacity: 0.65;
  cursor: initial;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rtcl-account .alert {
  margin: 10px auto;
  position: relative;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 6px;
}
.rtcl-account .alert.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.rtcl-account .alert.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.rtcl-account .rtcl-registration-form-wrap .name-row {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .rtcl-account .rtcl-registration-form-wrap .name-row {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.rtcl-account .rtcl-registration-form-wrap .name-row .second-name-column,
.rtcl-account .rtcl-registration-form-wrap .name-row .first-name-column {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .rtcl-account .rtcl-registration-form-wrap .name-row .second-name-column,
  .rtcl-account .rtcl-registration-form-wrap .name-row .first-name-column {
    flex: 0 0 100%;
  }
}
.rtcl-account .rtcl-user-registration-wrapper,
.rtcl-account #rtcl-user-login-wrapper {
  background-color: #ffffff;
  width: 100%;
  margin: 30px 0;
  padding: 30px;
  border-radius: 6px;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap form,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap form,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap form,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap form {
  font-size: 16px;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-field-label,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-field-label,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-field-label,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-field-label {
  display: block;
  font-weight: 400;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-required,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-required,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-required,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-required {
  color: red;
  font-weight: 400;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-form-control,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-form-control,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-form-control,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-form-control {
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-form-control:focus,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-form-control:focus,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-form-control:focus,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-form-control:focus {
  border-color: #111111;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-form-group,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-form-group,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-form-group,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-form-group {
  margin-bottom: 20px;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-login-form-submit-wrap,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-login-form-submit-wrap,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-login-form-submit-wrap,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-login-form-submit-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-forgot-password a,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-forgot-password a,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-forgot-password a,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-forgot-password a {
  color: var(--rtcl-primary-color);
}
.rtcl-account .rtcl-user-registration-wrapper .rtcl-login-form-wrap .rtcl-btn,
.rtcl-account .rtcl-user-registration-wrapper .rtcl-registration-form-wrap .rtcl-btn,
.rtcl-account #rtcl-user-login-wrapper .rtcl-login-form-wrap .rtcl-btn,
.rtcl-account #rtcl-user-login-wrapper .rtcl-registration-form-wrap .rtcl-btn {
  padding: 14px 25px;
  line-height: 1;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
  border-width: 1px;
  border-style: solid;
  transition: all 0.3s ease-out;
}
.rtcl-account .rtcl-user-registration-wrapper h2,
.rtcl-account #rtcl-user-login-wrapper h2 {
  font-size: 24px;
  margin: 0 0 20px;
}
.rtcl-account .rtcl-user-registration-wrapper.have-registration-form,
.rtcl-account #rtcl-user-login-wrapper.have-registration-form {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 1200px) {
  .rtcl-account .rtcl-user-registration-wrapper.have-registration-form,
  .rtcl-account #rtcl-user-login-wrapper.have-registration-form {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .rtcl-account .rtcl-user-registration-wrapper.have-registration-form,
  .rtcl-account #rtcl-user-login-wrapper.have-registration-form {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991px) {
  .rtcl-account .rtcl-user-registration-wrapper.have-registration-form .rtcl-registration-form-wrap,
  .rtcl-account #rtcl-user-login-wrapper.have-registration-form .rtcl-registration-form-wrap {
    margin-top: 40px;
  }
}
.rtcl-account .rtcl-user-registration-wrapper.have-registration-form .rtcl-registration-form-wrap,
.rtcl-account .rtcl-user-registration-wrapper.have-registration-form .rtcl-login-form-wrap,
.rtcl-account #rtcl-user-login-wrapper.have-registration-form .rtcl-registration-form-wrap,
.rtcl-account #rtcl-user-login-wrapper.have-registration-form .rtcl-login-form-wrap {
  flex: 0 0 50%;
  padding: 0 15px;
}
@media screen and (max-width: 991px) {
  .rtcl-account .rtcl-user-registration-wrapper.have-registration-form .rtcl-registration-form-wrap,
  .rtcl-account .rtcl-user-registration-wrapper.have-registration-form .rtcl-login-form-wrap,
  .rtcl-account #rtcl-user-login-wrapper.have-registration-form .rtcl-registration-form-wrap,
  .rtcl-account #rtcl-user-login-wrapper.have-registration-form .rtcl-login-form-wrap {
    flex: 0 0 100%;
  }
}
.rtcl-account .lost-password-confirmation,
.rtcl-account #rtcl-lost-password-form {
  width: 100%;
  margin: 30px 0;
  padding: 30px;
  background: #fff;
  border-radius: 6px;
}
.rtcl-account .lost-password-confirmation .rtcl-form-control,
.rtcl-account #rtcl-lost-password-form .rtcl-form-control {
  display: block;
  width: 100%;
  border-radius: 6px;
  border-color: #e4e4e4;
}
.rtcl-account .lost-password-confirmation .rtcl-form-control:focus,
.rtcl-account #rtcl-lost-password-form .rtcl-form-control:focus {
  border-color: #111111;
}

.rtcl {
  /* IE can just show/hide with no transition */
}
.rtcl .rtcl-myaccount-content-title {
  font-size: 24px;
  color: #111111;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 20px;
}
.rtcl .rtcl-form-control-static {
  margin-bottom: 0;
}
.rtcl .rtcl-field-label {
  color: #111111;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 12px;
  display: inline-block;
}
.rtcl .rtcl-field-label span.require-star {
  color: red;
}
.rtcl .rtcl-form-control {
  display: inline-block;
  border: 1px solid #e4e4e4;
  background-color: transparent;
  border-radius: 6px;
  color: #6D6D6D;
  height: auto;
  min-height: 45px;
  padding: 8px 10px;
  font-size: 16px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease-out;
}
.rtcl .rtcl-form-control:focus {
  border: 1px solid #646464;
  color: #646464;
  border-radius: 6px;
}
.rtcl .rtcl-tooltip-wrapper {
  position: relative;
  transform: translateZ(0); /* webkit flicker fix */
  -webkit-transform: translateZ(0); /* webkit flicker fix */
  -webkit-font-smoothing: antialiased; /* webkit text rendering fix */
}
.rtcl .rtcl-tooltip-wrapper .rtcl-tooltip {
  background: var(--rtcl-primary-color);
  bottom: 100%;
  color: #fff;
  display: block;
  left: 50%;
  margin-bottom: 15px;
  opacity: 0;
  padding: 7px 10px;
  pointer-events: none;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 2px;
  transform: translate(-50%, 10px);
  transition: all 0.25s ease-out;
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}
.rtcl .rtcl-tooltip-wrapper .rtcl-tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid var(--rtcl-primary-color) 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  position: absolute;
  width: 0;
  transform: translateX(-50%);
}
.rtcl .rtcl-tooltip-wrapper:hover .rtcl-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0px);
}
.rtcl .lte8 .rtcl-tooltip-wrapper .rtcl-tooltip {
  display: none;
}
.rtcl .lte8 .rtcl-tooltip-wrapper:hover .rtcl-tooltip {
  display: block;
}

.rtcl-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.rtcl-popup-wrapper.show {
  display: block;
}
.rtcl-popup-wrapper .rtcl-popup {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40%;
  pointer-events: none;
}
.rtcl-popup-wrapper .rtcl-popup .rtcl-popup-close {
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 9999;
  line-height: 1;
  background: red;
  font-size: 18px;
  padding: 0;
  display: inline-flex;
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}
@media (max-width: 991px) {
  .rtcl-popup-wrapper .rtcl-popup {
    max-width: 80%;
  }
}
.rtcl-popup-wrapper .rtcl-popup .rtcl-popup-content {
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  border-radius: 4px;
  overflow: auto;
}
.rtcl-popup-wrapper .rtcl-popup .rtcl-popup-content .rtcl-popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e4e4e4;
}
.rtcl-popup-wrapper .rtcl-popup .rtcl-popup-content .rtcl-popup-header .rtcl-popup-title {
  margin: 0;
}
.rtcl-popup-wrapper .rtcl-popup .rtcl-popup-content .rtcl-popup-body {
  padding: 20px;
}

.rtcl-global-pagination-wrap {
  margin-top: 20px;
}
.rtcl-global-pagination-wrap .rtcl-pagination {
  margin: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.rtcl-global-pagination-wrap .rtcl-pagination li {
  display: inline-block;
  list-style: none;
}
.rtcl-global-pagination-wrap .rtcl-pagination li .page-link {
  display: inline-flex;
  background-color: #EFEFEF;
  color: #646464;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.rtcl-global-pagination-wrap .rtcl-pagination li.active .page-link {
  background-color: var(--rtcl-primary-color);
  border-color: var(--rtcl-primary-color);
  color: #ffffff;
}

.rtcl-table-scroll-x {
  display: block;
  width: 100%;
  overflow-x: auto;
}

@media screen and (max-width: 991px) {
  .rtcl-table-responsive-list table {
    border-collapse: collapse;
  }
  .rtcl-table-responsive-list table thead tr {
    display: none;
  }
  .rtcl-table-responsive-list table tbody tr {
    display: grid;
  }
  .rtcl-table-responsive-list table tbody tr:not(:first-child) {
    margin-top: 20px;
  }
  .rtcl-table-responsive-list table tbody tr td {
    position: relative;
    border-radius: 0;
    border-right: 1px solid #dedede;
  }
  .rtcl-table-responsive-list table tbody tr td:first-child {
    border-top: 1px solid #dedede;
    border-radius: 4px 4px 0 0;
  }
  .rtcl-table-responsive-list table tbody tr td:last-child {
    border-radius: 0 0 4px 4px;
  }
  .rtcl-table-responsive-list table tbody tr td:before {
    content: attr(data-heading);
    font-weight: 500;
    margin-right: 10px;
  }
}

.rtcl-MyAccount-content-inner {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .rtcl-MyAccount-content-inner {
    padding: 20px;
  }
}

table.rtcl-table-striped-border {
  width: 100%;
  border-collapse: collapse;
  border: none;
  margin-bottom: 20px;
}
table.rtcl-table-striped-border th {
  background-color: #e4f0fd;
  color: #111111;
  font-weight: 500;
  text-align: left;
  border: 1px solid #e7e7e7;
  padding: 12px 18px;
  border-radius: 0;
  font-size: 15px;
  line-height: 1.5;
}
table.rtcl-table-striped-border td {
  padding: 12px 18px;
  border-left: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  border-right: none;
  border-top: none;
  border-radius: 0;
  transition: background-color 0.3s ease-in-out;
  font-size: 15px;
  line-height: 1.5;
}
table.rtcl-table-striped-border td:last-child {
  border-right: 1px solid #dedede;
}
table.rtcl-table-striped-border td a {
  color: inherit;
}
table.rtcl-table-striped-border td a:hover {
  color: var(--rtcl-primary-color);
}
table.rtcl-table-striped-border tr:nth-child(2n) td {
  background-color: #f4f4f4;
}
table.rtcl-table-striped-border tr:hover td {
  background-color: rgba(0, 0, 0, 0.075);
}

.rtcl-MyAccount-mobile-navbar {
  display: flex;
  background-color: #131313;
  padding: 25px 30px;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .rtcl-MyAccount-mobile-navbar {
    display: none;
  }
}
.rtcl-MyAccount-mobile-navbar .rtcl-myaccount-logo {
  max-width: 220px;
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu {
  margin-left: auto;
  cursor: pointer;
  position: relative;
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu span {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 1px;
  background-color: #ffffff;
  transition: 0.5s;
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu:after, .rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu:before {
  position: absolute;
  content: "";
  right: 0;
  height: 1px;
  width: 100%;
  background-color: #ffffff;
  transition: 0.5s;
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu:before {
  top: 0;
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu:after {
  top: 8px;
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu.sidebar-open span {
  opacity: 0;
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu.sidebar-open:before {
  top: 8px;
  transform: rotate(-45deg);
}
.rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu.sidebar-open:after {
  transform: rotate(45deg);
}

.rtcl-MyAccount-wrap {
  display: flex;
  min-height: 100%;
}
@media screen and (max-width: 991px) {
  .rtcl-MyAccount-wrap {
    flex-wrap: wrap;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation {
  background-color: #1d2327;
  flex: 0 0 300px;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation {
    flex: 0 0 220px;
    max-width: 220px;
  }
}
@media screen and (max-width: 991px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation {
    height: 100%;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: -225px;
    overflow-x: hidden;
    transition: 0.5s;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation .rtcl-myaccount-logo {
  padding: 25px 30px;
}
@media screen and (max-width: 991px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation .rtcl-myaccount-logo {
    max-width: 220px;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation .rtcl-myaccount-logo img {
  max-width: 100%;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  font-size: 0;
  list-style: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li {
  display: block;
  margin: 0;
  color: #BEBEBE;
  border: 1px solid #2c3338;
  border-left: none;
  border-bottom: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li a {
  position: relative;
  display: block;
  color: inherit;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
  padding: 18px 30px 18px 60px;
  transition: 0.3s;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li a:focus, .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li a:active, .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li:hover, .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.is-active {
  background: linear-gradient(90.76deg, #2c3338 1.3%, rgba(61, 61, 61, 0) 100.34%);
  color: #ffffff;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a:before {
  content: "";
  position: absolute;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 21px;
  height: 16px;
  left: 30px;
  background-color: #BEBEBE;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a:after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: var(--rtcl-primary-color);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.is-active a:after, .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link:hover a:after {
  opacity: 1;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--dashboard a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4128 18H11.2301C10.3551 18 9.64286 17.2877 9.64286 16.4128V9.94436C9.64286 9.06943 10.3551 8.35714 11.2301 8.35714H16.4128C17.2877 8.35714 18 9.06943 18 9.94436V16.4128C18 17.2877 17.2877 18 16.4128 18ZM11.2301 9.64286C11.0636 9.64286 10.9286 9.77786 10.9286 9.94436V16.4128C10.9286 16.5793 11.0636 16.7143 11.2301 16.7143H16.4128C16.5793 16.7143 16.7143 16.5793 16.7143 16.4128V9.94436C16.7143 9.77786 16.5793 9.64286 16.4128 9.64286H11.2301Z' fill='%23BEBEBE'/%3E%3Cpath d='M16.4128 7.07143H11.2301C10.3551 7.07143 9.64286 6.35914 9.64286 5.48421V1.58721C9.64286 0.712286 10.3551 0 11.2301 0H16.4128C17.2877 0 18 0.712286 18 1.58721V5.48421C18 6.35914 17.2877 7.07143 16.4128 7.07143ZM11.2301 1.28571C11.0636 1.28571 10.9286 1.42071 10.9286 1.58721V5.48421C10.9286 5.65071 11.0636 5.78571 11.2301 5.78571H16.4128C16.5793 5.78571 16.7143 5.65071 16.7143 5.48421V1.58721C16.7143 1.42071 16.5793 1.28571 16.4128 1.28571H11.2301Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.76993 9.64286H1.58721C0.712286 9.64286 0 8.93057 0 8.05564V1.58721C0 0.712286 0.712286 0 1.58721 0H6.76993C7.64486 0 8.35714 0.712286 8.35714 1.58721V8.05564C8.35714 8.93057 7.64486 9.64286 6.76993 9.64286ZM1.58721 1.28571C1.42071 1.28571 1.28571 1.42071 1.28571 1.58721V8.05564C1.28571 8.22214 1.42071 8.35714 1.58721 8.35714H6.76993C6.93643 8.35714 7.07143 8.22214 7.07143 8.05564V1.58721C7.07143 1.42071 6.93643 1.28571 6.76993 1.28571H1.58721Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.76993 18H1.58721C0.712286 18 0 17.2877 0 16.4128V12.5158C0 11.6409 0.712286 10.9286 1.58721 10.9286H6.76993C7.64486 10.9286 8.35714 11.6409 8.35714 12.5158V16.4128C8.35714 17.2877 7.64486 18 6.76993 18ZM1.58721 12.2143C1.42071 12.2143 1.28571 12.3493 1.28571 12.5158V16.4128C1.28571 16.5793 1.42071 16.7143 1.58721 16.7143H6.76993C6.93643 16.7143 7.07143 16.5793 7.07143 16.4128V12.5158C7.07143 12.3493 6.93643 12.2143 6.76993 12.2143H1.58721Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4128 18H11.2301C10.3551 18 9.64286 17.2877 9.64286 16.4128V9.94436C9.64286 9.06943 10.3551 8.35714 11.2301 8.35714H16.4128C17.2877 8.35714 18 9.06943 18 9.94436V16.4128C18 17.2877 17.2877 18 16.4128 18ZM11.2301 9.64286C11.0636 9.64286 10.9286 9.77786 10.9286 9.94436V16.4128C10.9286 16.5793 11.0636 16.7143 11.2301 16.7143H16.4128C16.5793 16.7143 16.7143 16.5793 16.7143 16.4128V9.94436C16.7143 9.77786 16.5793 9.64286 16.4128 9.64286H11.2301Z' fill='%23BEBEBE'/%3E%3Cpath d='M16.4128 7.07143H11.2301C10.3551 7.07143 9.64286 6.35914 9.64286 5.48421V1.58721C9.64286 0.712286 10.3551 0 11.2301 0H16.4128C17.2877 0 18 0.712286 18 1.58721V5.48421C18 6.35914 17.2877 7.07143 16.4128 7.07143ZM11.2301 1.28571C11.0636 1.28571 10.9286 1.42071 10.9286 1.58721V5.48421C10.9286 5.65071 11.0636 5.78571 11.2301 5.78571H16.4128C16.5793 5.78571 16.7143 5.65071 16.7143 5.48421V1.58721C16.7143 1.42071 16.5793 1.28571 16.4128 1.28571H11.2301Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.76993 9.64286H1.58721C0.712286 9.64286 0 8.93057 0 8.05564V1.58721C0 0.712286 0.712286 0 1.58721 0H6.76993C7.64486 0 8.35714 0.712286 8.35714 1.58721V8.05564C8.35714 8.93057 7.64486 9.64286 6.76993 9.64286ZM1.58721 1.28571C1.42071 1.28571 1.28571 1.42071 1.28571 1.58721V8.05564C1.28571 8.22214 1.42071 8.35714 1.58721 8.35714H6.76993C6.93643 8.35714 7.07143 8.22214 7.07143 8.05564V1.58721C7.07143 1.42071 6.93643 1.28571 6.76993 1.28571H1.58721Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.76993 18H1.58721C0.712286 18 0 17.2877 0 16.4128V12.5158C0 11.6409 0.712286 10.9286 1.58721 10.9286H6.76993C7.64486 10.9286 8.35714 11.6409 8.35714 12.5158V16.4128C8.35714 17.2877 7.64486 18 6.76993 18ZM1.58721 12.2143C1.42071 12.2143 1.28571 12.3493 1.28571 12.5158V16.4128C1.28571 16.5793 1.42071 16.7143 1.58721 16.7143H6.76993C6.93643 16.7143 7.07143 16.5793 7.07143 16.4128V12.5158C7.07143 12.3493 6.93643 12.2143 6.76993 12.2143H1.58721Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  height: 18px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--listings a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='16' viewBox='0 0 20 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.53031 6.90196H1.3813C0.634973 6.90196 0.027832 6.29075 0.027832 5.53941V1.36255C0.027832 0.611216 0.634973 0 1.3813 0H5.53031C6.27664 0 6.88378 0.611216 6.88378 1.36255V5.53941C6.88378 6.29075 6.27664 6.90196 5.53031 6.90196ZM1.3813 1.2549C1.32232 1.2549 1.27437 1.30318 1.27437 1.36255V5.53941C1.27437 5.59878 1.32232 5.64706 1.3813 5.64706H5.53031C5.58929 5.64706 5.63724 5.59878 5.63724 5.53941V1.36255C5.63724 1.30318 5.58929 1.2549 5.53031 1.2549H1.3813Z' fill='%23BEBEBE'/%3E%3Cpath d='M5.53031 16H1.3813C0.634973 16 0.027832 15.3888 0.027832 14.6375V10.4606C0.027832 9.70925 0.634973 9.09804 1.3813 9.09804H5.53031C6.27664 9.09804 6.88378 9.70925 6.88378 10.4606V14.6375C6.88378 15.3888 6.27664 16 5.53031 16ZM1.3813 10.3529C1.32232 10.3529 1.27437 10.4012 1.27437 10.4606V14.6375C1.27437 14.6968 1.32232 14.7451 1.3813 14.7451H5.53031C5.58929 14.7451 5.63724 14.6968 5.63724 14.6375V10.4606C5.63724 10.4012 5.58929 10.3529 5.53031 10.3529H1.3813Z' fill='%23BEBEBE'/%3E%3Cpath d='M19.3491 3.13725H9.37685C9.03265 3.13725 8.75358 2.85631 8.75358 2.5098C8.75358 2.16329 9.03265 1.88235 9.37685 1.88235H19.3491C19.6933 1.88235 19.9724 2.16329 19.9724 2.5098C19.9724 2.85631 19.6933 3.13725 19.3491 3.13725Z' fill='%23BEBEBE'/%3E%3Cpath d='M15.9212 5.4902H9.37685C9.03265 5.4902 8.75358 5.20925 8.75358 4.86274C8.75358 4.51624 9.03265 4.23529 9.37685 4.23529H15.9212C16.2654 4.23529 16.5444 4.51624 16.5444 4.86274C16.5444 5.20925 16.2654 5.4902 15.9212 5.4902Z' fill='%23BEBEBE'/%3E%3Cpath d='M19.3491 12.0784H9.37685C9.03265 12.0784 8.75358 11.7975 8.75358 11.451C8.75358 11.1045 9.03265 10.8235 9.37685 10.8235H19.3491C19.6933 10.8235 19.9724 11.1045 19.9724 11.451C19.9724 11.7975 19.6933 12.0784 19.3491 12.0784Z' fill='%23BEBEBE'/%3E%3Cpath d='M15.9212 14.5882H9.37685C9.03265 14.5882 8.75358 14.3073 8.75358 13.9608C8.75358 13.6143 9.03265 13.3333 9.37685 13.3333H15.9212C16.2654 13.3333 16.5444 13.6143 16.5444 13.9608C16.5444 14.3073 16.2654 14.5882 15.9212 14.5882Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='16' viewBox='0 0 20 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.53031 6.90196H1.3813C0.634973 6.90196 0.027832 6.29075 0.027832 5.53941V1.36255C0.027832 0.611216 0.634973 0 1.3813 0H5.53031C6.27664 0 6.88378 0.611216 6.88378 1.36255V5.53941C6.88378 6.29075 6.27664 6.90196 5.53031 6.90196ZM1.3813 1.2549C1.32232 1.2549 1.27437 1.30318 1.27437 1.36255V5.53941C1.27437 5.59878 1.32232 5.64706 1.3813 5.64706H5.53031C5.58929 5.64706 5.63724 5.59878 5.63724 5.53941V1.36255C5.63724 1.30318 5.58929 1.2549 5.53031 1.2549H1.3813Z' fill='%23BEBEBE'/%3E%3Cpath d='M5.53031 16H1.3813C0.634973 16 0.027832 15.3888 0.027832 14.6375V10.4606C0.027832 9.70925 0.634973 9.09804 1.3813 9.09804H5.53031C6.27664 9.09804 6.88378 9.70925 6.88378 10.4606V14.6375C6.88378 15.3888 6.27664 16 5.53031 16ZM1.3813 10.3529C1.32232 10.3529 1.27437 10.4012 1.27437 10.4606V14.6375C1.27437 14.6968 1.32232 14.7451 1.3813 14.7451H5.53031C5.58929 14.7451 5.63724 14.6968 5.63724 14.6375V10.4606C5.63724 10.4012 5.58929 10.3529 5.53031 10.3529H1.3813Z' fill='%23BEBEBE'/%3E%3Cpath d='M19.3491 3.13725H9.37685C9.03265 3.13725 8.75358 2.85631 8.75358 2.5098C8.75358 2.16329 9.03265 1.88235 9.37685 1.88235H19.3491C19.6933 1.88235 19.9724 2.16329 19.9724 2.5098C19.9724 2.85631 19.6933 3.13725 19.3491 3.13725Z' fill='%23BEBEBE'/%3E%3Cpath d='M15.9212 5.4902H9.37685C9.03265 5.4902 8.75358 5.20925 8.75358 4.86274C8.75358 4.51624 9.03265 4.23529 9.37685 4.23529H15.9212C16.2654 4.23529 16.5444 4.51624 16.5444 4.86274C16.5444 5.20925 16.2654 5.4902 15.9212 5.4902Z' fill='%23BEBEBE'/%3E%3Cpath d='M19.3491 12.0784H9.37685C9.03265 12.0784 8.75358 11.7975 8.75358 11.451C8.75358 11.1045 9.03265 10.8235 9.37685 10.8235H19.3491C19.6933 10.8235 19.9724 11.1045 19.9724 11.451C19.9724 11.7975 19.6933 12.0784 19.3491 12.0784Z' fill='%23BEBEBE'/%3E%3Cpath d='M15.9212 14.5882H9.37685C9.03265 14.5882 8.75358 14.3073 8.75358 13.9608C8.75358 13.6143 9.03265 13.3333 9.37685 13.3333H15.9212C16.2654 13.3333 16.5444 13.6143 16.5444 13.9608C16.5444 14.3073 16.2654 14.5882 15.9212 14.5882Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--store a {
  line-height: 22px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--store a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-outside-1_226_1006' maskUnits='userSpaceOnUse' x='0' y='0' width='23' height='20' fill='black'%3E%3Crect fill='white' width='23' height='20'/%3E%3Cpath d='M21.9358 7.68118L19.3711 3.71235V1.35294C19.3711 1.25934 19.3366 1.16956 19.2751 1.10337C19.2136 1.03718 19.1302 1 19.0432 1H3.95682C3.86984 1 3.78642 1.03718 3.72492 1.10337C3.66341 1.16956 3.62886 1.25934 3.62886 1.35294V3.71235L1.06418 7.68118C1.00997 7.79791 0.989408 7.92942 1.00514 8.05882C1.00492 8.40014 1.07931 8.73672 1.2223 9.04138C1.36529 9.34604 1.57288 9.61023 1.82828 9.81259C2.08368 10.015 2.37974 10.1498 2.69253 10.2063C3.00533 10.2628 3.32607 10.2392 3.62886 10.1376V18.6471C3.62886 18.7407 3.66341 18.8304 3.72492 18.8966C3.78642 18.9628 3.86984 19 3.95682 19H19.0432C19.1302 19 19.2136 18.9628 19.2751 18.8966C19.3366 18.8304 19.3711 18.7407 19.3711 18.6471V10.1376C19.6739 10.2392 19.9947 10.2628 20.3075 10.2063C20.6203 10.1498 20.9163 10.015 21.1717 9.81259C21.4271 9.61023 21.6347 9.34604 21.7777 9.04138C21.9207 8.73672 21.9951 8.40014 21.9949 8.05882C22.0106 7.92942 21.99 7.79791 21.9358 7.68118ZM4.28479 1.70588H18.7152V3.47059H4.28479V1.70588ZM4.12081 4.17647H18.8792L21.0454 7.52941H1.96116L4.12081 4.17647ZM17.933 8.23529C17.893 8.59208 17.7329 8.92073 17.4831 9.15913C17.2332 9.39753 16.9108 9.52918 16.5769 9.52918C16.2429 9.52918 15.9206 9.39753 15.6707 9.15913C15.4208 8.92073 15.2608 8.59208 15.2208 8.23529H17.933ZM14.5501 8.23529C14.5116 8.59313 14.3523 8.92327 14.1024 9.16292C13.8525 9.40257 13.5295 9.53499 13.1948 9.53499C12.86 9.53499 12.537 9.40257 12.2871 9.16292C12.0372 8.92327 11.8779 8.59313 11.8394 8.23529H14.5501ZM11.1606 8.23529C11.1221 8.59313 10.9628 8.92327 10.7129 9.16292C10.463 9.40257 10.14 9.53499 9.80525 9.53499C9.47052 9.53499 9.14748 9.40257 8.89758 9.16292C8.64768 8.92327 8.48836 8.59313 8.44993 8.23529H11.1606ZM7.77269 8.23529C7.73268 8.59208 7.57261 8.92073 7.32274 9.15913C7.07286 9.39753 6.75049 9.52918 6.41655 9.52918C6.08262 9.52918 5.76025 9.39753 5.51037 9.15913C5.2605 8.92073 5.10043 8.59208 5.06042 8.23529H7.77269ZM1.67255 8.23529H4.38318C4.34475 8.59313 4.18543 8.92327 3.93553 9.16292C3.68563 9.40257 3.36259 9.53499 3.02786 9.53499C2.69314 9.53499 2.3701 9.40257 2.1202 9.16292C1.87029 8.92327 1.71098 8.59313 1.67255 8.23529ZM14.1237 18.2941H11.828V11.9412H14.1237V18.2941ZM11.172 18.2941H8.87629V11.9412H11.172V18.2941ZM18.7152 18.2941H14.7796V11.5882C14.7796 11.4946 14.7451 11.4049 14.6836 11.3387C14.6221 11.2725 14.5387 11.2353 14.4517 11.2353H8.54832C8.46134 11.2353 8.37792 11.2725 8.31642 11.3387C8.25491 11.4049 8.22036 11.4946 8.22036 11.5882V18.2941H4.28479V9.76177C4.45555 9.61511 4.60337 9.43994 4.72262 9.24294C4.90523 9.54781 5.15597 9.79853 5.4519 9.97215C5.74783 10.1458 6.0795 10.2367 6.41655 10.2367C6.75361 10.2367 7.08528 10.1458 7.38121 9.97215C7.67714 9.79853 7.92788 9.54781 8.11049 9.24294C8.2933 9.5478 8.5442 9.79849 8.84026 9.97208C9.13632 10.1457 9.46809 10.2366 9.80525 10.2366C10.1424 10.2366 10.4742 10.1457 10.7702 9.97208C11.0663 9.79849 11.3172 9.5478 11.5 9.24294C11.6828 9.5478 11.9337 9.79849 12.2298 9.97208C12.5258 10.1457 12.8576 10.2366 13.1948 10.2366C13.5319 10.2366 13.8637 10.1457 14.1597 9.97208C14.4558 9.79849 14.7067 9.5478 14.8895 9.24294C15.0721 9.54781 15.3229 9.79853 15.6188 9.97215C15.9147 10.1458 16.2464 10.2367 16.5834 10.2367C16.9205 10.2367 17.2522 10.1458 17.5481 9.97215C17.844 9.79853 18.0948 9.54781 18.2774 9.24294C18.3966 9.43994 18.5445 9.61511 18.7152 9.76177V18.2941ZM19.973 9.53059C19.6389 9.53016 19.3166 9.39819 19.0667 9.15957C18.8169 8.92095 18.6569 8.59218 18.6168 8.23529H21.3274C21.2878 8.59203 21.1281 8.92077 20.8785 9.15943C20.6289 9.39808 20.3068 9.53012 19.973 9.53059Z'/%3E%3C/mask%3E%3Cpath d='M21.9358 7.68118L19.3711 3.71235V1.35294C19.3711 1.25934 19.3366 1.16956 19.2751 1.10337C19.2136 1.03718 19.1302 1 19.0432 1H3.95682C3.86984 1 3.78642 1.03718 3.72492 1.10337C3.66341 1.16956 3.62886 1.25934 3.62886 1.35294V3.71235L1.06418 7.68118C1.00997 7.79791 0.989408 7.92942 1.00514 8.05882C1.00492 8.40014 1.07931 8.73672 1.2223 9.04138C1.36529 9.34604 1.57288 9.61023 1.82828 9.81259C2.08368 10.015 2.37974 10.1498 2.69253 10.2063C3.00533 10.2628 3.32607 10.2392 3.62886 10.1376V18.6471C3.62886 18.7407 3.66341 18.8304 3.72492 18.8966C3.78642 18.9628 3.86984 19 3.95682 19H19.0432C19.1302 19 19.2136 18.9628 19.2751 18.8966C19.3366 18.8304 19.3711 18.7407 19.3711 18.6471V10.1376C19.6739 10.2392 19.9947 10.2628 20.3075 10.2063C20.6203 10.1498 20.9163 10.015 21.1717 9.81259C21.4271 9.61023 21.6347 9.34604 21.7777 9.04138C21.9207 8.73672 21.9951 8.40014 21.9949 8.05882C22.0106 7.92942 21.99 7.79791 21.9358 7.68118ZM4.28479 1.70588H18.7152V3.47059H4.28479V1.70588ZM4.12081 4.17647H18.8792L21.0454 7.52941H1.96116L4.12081 4.17647ZM17.933 8.23529C17.893 8.59208 17.7329 8.92073 17.4831 9.15913C17.2332 9.39753 16.9108 9.52918 16.5769 9.52918C16.2429 9.52918 15.9206 9.39753 15.6707 9.15913C15.4208 8.92073 15.2608 8.59208 15.2208 8.23529H17.933ZM14.5501 8.23529C14.5116 8.59313 14.3523 8.92327 14.1024 9.16292C13.8525 9.40257 13.5295 9.53499 13.1948 9.53499C12.86 9.53499 12.537 9.40257 12.2871 9.16292C12.0372 8.92327 11.8779 8.59313 11.8394 8.23529H14.5501ZM11.1606 8.23529C11.1221 8.59313 10.9628 8.92327 10.7129 9.16292C10.463 9.40257 10.14 9.53499 9.80525 9.53499C9.47052 9.53499 9.14748 9.40257 8.89758 9.16292C8.64768 8.92327 8.48836 8.59313 8.44993 8.23529H11.1606ZM7.77269 8.23529C7.73268 8.59208 7.57261 8.92073 7.32274 9.15913C7.07286 9.39753 6.75049 9.52918 6.41655 9.52918C6.08262 9.52918 5.76025 9.39753 5.51037 9.15913C5.2605 8.92073 5.10043 8.59208 5.06042 8.23529H7.77269ZM1.67255 8.23529H4.38318C4.34475 8.59313 4.18543 8.92327 3.93553 9.16292C3.68563 9.40257 3.36259 9.53499 3.02786 9.53499C2.69314 9.53499 2.3701 9.40257 2.1202 9.16292C1.87029 8.92327 1.71098 8.59313 1.67255 8.23529ZM14.1237 18.2941H11.828V11.9412H14.1237V18.2941ZM11.172 18.2941H8.87629V11.9412H11.172V18.2941ZM18.7152 18.2941H14.7796V11.5882C14.7796 11.4946 14.7451 11.4049 14.6836 11.3387C14.6221 11.2725 14.5387 11.2353 14.4517 11.2353H8.54832C8.46134 11.2353 8.37792 11.2725 8.31642 11.3387C8.25491 11.4049 8.22036 11.4946 8.22036 11.5882V18.2941H4.28479V9.76177C4.45555 9.61511 4.60337 9.43994 4.72262 9.24294C4.90523 9.54781 5.15597 9.79853 5.4519 9.97215C5.74783 10.1458 6.0795 10.2367 6.41655 10.2367C6.75361 10.2367 7.08528 10.1458 7.38121 9.97215C7.67714 9.79853 7.92788 9.54781 8.11049 9.24294C8.2933 9.5478 8.5442 9.79849 8.84026 9.97208C9.13632 10.1457 9.46809 10.2366 9.80525 10.2366C10.1424 10.2366 10.4742 10.1457 10.7702 9.97208C11.0663 9.79849 11.3172 9.5478 11.5 9.24294C11.6828 9.5478 11.9337 9.79849 12.2298 9.97208C12.5258 10.1457 12.8576 10.2366 13.1948 10.2366C13.5319 10.2366 13.8637 10.1457 14.1597 9.97208C14.4558 9.79849 14.7067 9.5478 14.8895 9.24294C15.0721 9.54781 15.3229 9.79853 15.6188 9.97215C15.9147 10.1458 16.2464 10.2367 16.5834 10.2367C16.9205 10.2367 17.2522 10.1458 17.5481 9.97215C17.844 9.79853 18.0948 9.54781 18.2774 9.24294C18.3966 9.43994 18.5445 9.61511 18.7152 9.76177V18.2941ZM19.973 9.53059C19.6389 9.53016 19.3166 9.39819 19.0667 9.15957C18.8169 8.92095 18.6569 8.59218 18.6168 8.23529H21.3274C21.2878 8.59203 21.1281 8.92077 20.8785 9.15943C20.6289 9.39808 20.3068 9.53012 19.973 9.53059Z' fill='%23BEBEBE'/%3E%3Cpath d='M21.9358 7.68118L19.3711 3.71235V1.35294C19.3711 1.25934 19.3366 1.16956 19.2751 1.10337C19.2136 1.03718 19.1302 1 19.0432 1H3.95682C3.86984 1 3.78642 1.03718 3.72492 1.10337C3.66341 1.16956 3.62886 1.25934 3.62886 1.35294V3.71235L1.06418 7.68118C1.00997 7.79791 0.989408 7.92942 1.00514 8.05882C1.00492 8.40014 1.07931 8.73672 1.2223 9.04138C1.36529 9.34604 1.57288 9.61023 1.82828 9.81259C2.08368 10.015 2.37974 10.1498 2.69253 10.2063C3.00533 10.2628 3.32607 10.2392 3.62886 10.1376V18.6471C3.62886 18.7407 3.66341 18.8304 3.72492 18.8966C3.78642 18.9628 3.86984 19 3.95682 19H19.0432C19.1302 19 19.2136 18.9628 19.2751 18.8966C19.3366 18.8304 19.3711 18.7407 19.3711 18.6471V10.1376C19.6739 10.2392 19.9947 10.2628 20.3075 10.2063C20.6203 10.1498 20.9163 10.015 21.1717 9.81259C21.4271 9.61023 21.6347 9.34604 21.7777 9.04138C21.9207 8.73672 21.9951 8.40014 21.9949 8.05882C22.0106 7.92942 21.99 7.79791 21.9358 7.68118ZM4.28479 1.70588H18.7152V3.47059H4.28479V1.70588ZM4.12081 4.17647H18.8792L21.0454 7.52941H1.96116L4.12081 4.17647ZM17.933 8.23529C17.893 8.59208 17.7329 8.92073 17.4831 9.15913C17.2332 9.39753 16.9108 9.52918 16.5769 9.52918C16.2429 9.52918 15.9206 9.39753 15.6707 9.15913C15.4208 8.92073 15.2608 8.59208 15.2208 8.23529H17.933ZM14.5501 8.23529C14.5116 8.59313 14.3523 8.92327 14.1024 9.16292C13.8525 9.40257 13.5295 9.53499 13.1948 9.53499C12.86 9.53499 12.537 9.40257 12.2871 9.16292C12.0372 8.92327 11.8779 8.59313 11.8394 8.23529H14.5501ZM11.1606 8.23529C11.1221 8.59313 10.9628 8.92327 10.7129 9.16292C10.463 9.40257 10.14 9.53499 9.80525 9.53499C9.47052 9.53499 9.14748 9.40257 8.89758 9.16292C8.64768 8.92327 8.48836 8.59313 8.44993 8.23529H11.1606ZM7.77269 8.23529C7.73268 8.59208 7.57261 8.92073 7.32274 9.15913C7.07286 9.39753 6.75049 9.52918 6.41655 9.52918C6.08262 9.52918 5.76025 9.39753 5.51037 9.15913C5.2605 8.92073 5.10043 8.59208 5.06042 8.23529H7.77269ZM1.67255 8.23529H4.38318C4.34475 8.59313 4.18543 8.92327 3.93553 9.16292C3.68563 9.40257 3.36259 9.53499 3.02786 9.53499C2.69314 9.53499 2.3701 9.40257 2.1202 9.16292C1.87029 8.92327 1.71098 8.59313 1.67255 8.23529ZM14.1237 18.2941H11.828V11.9412H14.1237V18.2941ZM11.172 18.2941H8.87629V11.9412H11.172V18.2941ZM18.7152 18.2941H14.7796V11.5882C14.7796 11.4946 14.7451 11.4049 14.6836 11.3387C14.6221 11.2725 14.5387 11.2353 14.4517 11.2353H8.54832C8.46134 11.2353 8.37792 11.2725 8.31642 11.3387C8.25491 11.4049 8.22036 11.4946 8.22036 11.5882V18.2941H4.28479V9.76177C4.45555 9.61511 4.60337 9.43994 4.72262 9.24294C4.90523 9.54781 5.15597 9.79853 5.4519 9.97215C5.74783 10.1458 6.0795 10.2367 6.41655 10.2367C6.75361 10.2367 7.08528 10.1458 7.38121 9.97215C7.67714 9.79853 7.92788 9.54781 8.11049 9.24294C8.2933 9.5478 8.5442 9.79849 8.84026 9.97208C9.13632 10.1457 9.46809 10.2366 9.80525 10.2366C10.1424 10.2366 10.4742 10.1457 10.7702 9.97208C11.0663 9.79849 11.3172 9.5478 11.5 9.24294C11.6828 9.5478 11.9337 9.79849 12.2298 9.97208C12.5258 10.1457 12.8576 10.2366 13.1948 10.2366C13.5319 10.2366 13.8637 10.1457 14.1597 9.97208C14.4558 9.79849 14.7067 9.5478 14.8895 9.24294C15.0721 9.54781 15.3229 9.79853 15.6188 9.97215C15.9147 10.1458 16.2464 10.2367 16.5834 10.2367C16.9205 10.2367 17.2522 10.1458 17.5481 9.97215C17.844 9.79853 18.0948 9.54781 18.2774 9.24294C18.3966 9.43994 18.5445 9.61511 18.7152 9.76177V18.2941ZM19.973 9.53059C19.6389 9.53016 19.3166 9.39819 19.0667 9.15957C18.8169 8.92095 18.6569 8.59218 18.6168 8.23529H21.3274C21.2878 8.59203 21.1281 8.92077 20.8785 9.15943C20.6289 9.39808 20.3068 9.53012 19.973 9.53059Z' stroke='%23BEBEBE' stroke-width='0.2' mask='url(%23path-1-outside-1_226_1006)'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='23' height='20' viewBox='0 0 23 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-outside-1_226_1006' maskUnits='userSpaceOnUse' x='0' y='0' width='23' height='20' fill='black'%3E%3Crect fill='white' width='23' height='20'/%3E%3Cpath d='M21.9358 7.68118L19.3711 3.71235V1.35294C19.3711 1.25934 19.3366 1.16956 19.2751 1.10337C19.2136 1.03718 19.1302 1 19.0432 1H3.95682C3.86984 1 3.78642 1.03718 3.72492 1.10337C3.66341 1.16956 3.62886 1.25934 3.62886 1.35294V3.71235L1.06418 7.68118C1.00997 7.79791 0.989408 7.92942 1.00514 8.05882C1.00492 8.40014 1.07931 8.73672 1.2223 9.04138C1.36529 9.34604 1.57288 9.61023 1.82828 9.81259C2.08368 10.015 2.37974 10.1498 2.69253 10.2063C3.00533 10.2628 3.32607 10.2392 3.62886 10.1376V18.6471C3.62886 18.7407 3.66341 18.8304 3.72492 18.8966C3.78642 18.9628 3.86984 19 3.95682 19H19.0432C19.1302 19 19.2136 18.9628 19.2751 18.8966C19.3366 18.8304 19.3711 18.7407 19.3711 18.6471V10.1376C19.6739 10.2392 19.9947 10.2628 20.3075 10.2063C20.6203 10.1498 20.9163 10.015 21.1717 9.81259C21.4271 9.61023 21.6347 9.34604 21.7777 9.04138C21.9207 8.73672 21.9951 8.40014 21.9949 8.05882C22.0106 7.92942 21.99 7.79791 21.9358 7.68118ZM4.28479 1.70588H18.7152V3.47059H4.28479V1.70588ZM4.12081 4.17647H18.8792L21.0454 7.52941H1.96116L4.12081 4.17647ZM17.933 8.23529C17.893 8.59208 17.7329 8.92073 17.4831 9.15913C17.2332 9.39753 16.9108 9.52918 16.5769 9.52918C16.2429 9.52918 15.9206 9.39753 15.6707 9.15913C15.4208 8.92073 15.2608 8.59208 15.2208 8.23529H17.933ZM14.5501 8.23529C14.5116 8.59313 14.3523 8.92327 14.1024 9.16292C13.8525 9.40257 13.5295 9.53499 13.1948 9.53499C12.86 9.53499 12.537 9.40257 12.2871 9.16292C12.0372 8.92327 11.8779 8.59313 11.8394 8.23529H14.5501ZM11.1606 8.23529C11.1221 8.59313 10.9628 8.92327 10.7129 9.16292C10.463 9.40257 10.14 9.53499 9.80525 9.53499C9.47052 9.53499 9.14748 9.40257 8.89758 9.16292C8.64768 8.92327 8.48836 8.59313 8.44993 8.23529H11.1606ZM7.77269 8.23529C7.73268 8.59208 7.57261 8.92073 7.32274 9.15913C7.07286 9.39753 6.75049 9.52918 6.41655 9.52918C6.08262 9.52918 5.76025 9.39753 5.51037 9.15913C5.2605 8.92073 5.10043 8.59208 5.06042 8.23529H7.77269ZM1.67255 8.23529H4.38318C4.34475 8.59313 4.18543 8.92327 3.93553 9.16292C3.68563 9.40257 3.36259 9.53499 3.02786 9.53499C2.69314 9.53499 2.3701 9.40257 2.1202 9.16292C1.87029 8.92327 1.71098 8.59313 1.67255 8.23529ZM14.1237 18.2941H11.828V11.9412H14.1237V18.2941ZM11.172 18.2941H8.87629V11.9412H11.172V18.2941ZM18.7152 18.2941H14.7796V11.5882C14.7796 11.4946 14.7451 11.4049 14.6836 11.3387C14.6221 11.2725 14.5387 11.2353 14.4517 11.2353H8.54832C8.46134 11.2353 8.37792 11.2725 8.31642 11.3387C8.25491 11.4049 8.22036 11.4946 8.22036 11.5882V18.2941H4.28479V9.76177C4.45555 9.61511 4.60337 9.43994 4.72262 9.24294C4.90523 9.54781 5.15597 9.79853 5.4519 9.97215C5.74783 10.1458 6.0795 10.2367 6.41655 10.2367C6.75361 10.2367 7.08528 10.1458 7.38121 9.97215C7.67714 9.79853 7.92788 9.54781 8.11049 9.24294C8.2933 9.5478 8.5442 9.79849 8.84026 9.97208C9.13632 10.1457 9.46809 10.2366 9.80525 10.2366C10.1424 10.2366 10.4742 10.1457 10.7702 9.97208C11.0663 9.79849 11.3172 9.5478 11.5 9.24294C11.6828 9.5478 11.9337 9.79849 12.2298 9.97208C12.5258 10.1457 12.8576 10.2366 13.1948 10.2366C13.5319 10.2366 13.8637 10.1457 14.1597 9.97208C14.4558 9.79849 14.7067 9.5478 14.8895 9.24294C15.0721 9.54781 15.3229 9.79853 15.6188 9.97215C15.9147 10.1458 16.2464 10.2367 16.5834 10.2367C16.9205 10.2367 17.2522 10.1458 17.5481 9.97215C17.844 9.79853 18.0948 9.54781 18.2774 9.24294C18.3966 9.43994 18.5445 9.61511 18.7152 9.76177V18.2941ZM19.973 9.53059C19.6389 9.53016 19.3166 9.39819 19.0667 9.15957C18.8169 8.92095 18.6569 8.59218 18.6168 8.23529H21.3274C21.2878 8.59203 21.1281 8.92077 20.8785 9.15943C20.6289 9.39808 20.3068 9.53012 19.973 9.53059Z'/%3E%3C/mask%3E%3Cpath d='M21.9358 7.68118L19.3711 3.71235V1.35294C19.3711 1.25934 19.3366 1.16956 19.2751 1.10337C19.2136 1.03718 19.1302 1 19.0432 1H3.95682C3.86984 1 3.78642 1.03718 3.72492 1.10337C3.66341 1.16956 3.62886 1.25934 3.62886 1.35294V3.71235L1.06418 7.68118C1.00997 7.79791 0.989408 7.92942 1.00514 8.05882C1.00492 8.40014 1.07931 8.73672 1.2223 9.04138C1.36529 9.34604 1.57288 9.61023 1.82828 9.81259C2.08368 10.015 2.37974 10.1498 2.69253 10.2063C3.00533 10.2628 3.32607 10.2392 3.62886 10.1376V18.6471C3.62886 18.7407 3.66341 18.8304 3.72492 18.8966C3.78642 18.9628 3.86984 19 3.95682 19H19.0432C19.1302 19 19.2136 18.9628 19.2751 18.8966C19.3366 18.8304 19.3711 18.7407 19.3711 18.6471V10.1376C19.6739 10.2392 19.9947 10.2628 20.3075 10.2063C20.6203 10.1498 20.9163 10.015 21.1717 9.81259C21.4271 9.61023 21.6347 9.34604 21.7777 9.04138C21.9207 8.73672 21.9951 8.40014 21.9949 8.05882C22.0106 7.92942 21.99 7.79791 21.9358 7.68118ZM4.28479 1.70588H18.7152V3.47059H4.28479V1.70588ZM4.12081 4.17647H18.8792L21.0454 7.52941H1.96116L4.12081 4.17647ZM17.933 8.23529C17.893 8.59208 17.7329 8.92073 17.4831 9.15913C17.2332 9.39753 16.9108 9.52918 16.5769 9.52918C16.2429 9.52918 15.9206 9.39753 15.6707 9.15913C15.4208 8.92073 15.2608 8.59208 15.2208 8.23529H17.933ZM14.5501 8.23529C14.5116 8.59313 14.3523 8.92327 14.1024 9.16292C13.8525 9.40257 13.5295 9.53499 13.1948 9.53499C12.86 9.53499 12.537 9.40257 12.2871 9.16292C12.0372 8.92327 11.8779 8.59313 11.8394 8.23529H14.5501ZM11.1606 8.23529C11.1221 8.59313 10.9628 8.92327 10.7129 9.16292C10.463 9.40257 10.14 9.53499 9.80525 9.53499C9.47052 9.53499 9.14748 9.40257 8.89758 9.16292C8.64768 8.92327 8.48836 8.59313 8.44993 8.23529H11.1606ZM7.77269 8.23529C7.73268 8.59208 7.57261 8.92073 7.32274 9.15913C7.07286 9.39753 6.75049 9.52918 6.41655 9.52918C6.08262 9.52918 5.76025 9.39753 5.51037 9.15913C5.2605 8.92073 5.10043 8.59208 5.06042 8.23529H7.77269ZM1.67255 8.23529H4.38318C4.34475 8.59313 4.18543 8.92327 3.93553 9.16292C3.68563 9.40257 3.36259 9.53499 3.02786 9.53499C2.69314 9.53499 2.3701 9.40257 2.1202 9.16292C1.87029 8.92327 1.71098 8.59313 1.67255 8.23529ZM14.1237 18.2941H11.828V11.9412H14.1237V18.2941ZM11.172 18.2941H8.87629V11.9412H11.172V18.2941ZM18.7152 18.2941H14.7796V11.5882C14.7796 11.4946 14.7451 11.4049 14.6836 11.3387C14.6221 11.2725 14.5387 11.2353 14.4517 11.2353H8.54832C8.46134 11.2353 8.37792 11.2725 8.31642 11.3387C8.25491 11.4049 8.22036 11.4946 8.22036 11.5882V18.2941H4.28479V9.76177C4.45555 9.61511 4.60337 9.43994 4.72262 9.24294C4.90523 9.54781 5.15597 9.79853 5.4519 9.97215C5.74783 10.1458 6.0795 10.2367 6.41655 10.2367C6.75361 10.2367 7.08528 10.1458 7.38121 9.97215C7.67714 9.79853 7.92788 9.54781 8.11049 9.24294C8.2933 9.5478 8.5442 9.79849 8.84026 9.97208C9.13632 10.1457 9.46809 10.2366 9.80525 10.2366C10.1424 10.2366 10.4742 10.1457 10.7702 9.97208C11.0663 9.79849 11.3172 9.5478 11.5 9.24294C11.6828 9.5478 11.9337 9.79849 12.2298 9.97208C12.5258 10.1457 12.8576 10.2366 13.1948 10.2366C13.5319 10.2366 13.8637 10.1457 14.1597 9.97208C14.4558 9.79849 14.7067 9.5478 14.8895 9.24294C15.0721 9.54781 15.3229 9.79853 15.6188 9.97215C15.9147 10.1458 16.2464 10.2367 16.5834 10.2367C16.9205 10.2367 17.2522 10.1458 17.5481 9.97215C17.844 9.79853 18.0948 9.54781 18.2774 9.24294C18.3966 9.43994 18.5445 9.61511 18.7152 9.76177V18.2941ZM19.973 9.53059C19.6389 9.53016 19.3166 9.39819 19.0667 9.15957C18.8169 8.92095 18.6569 8.59218 18.6168 8.23529H21.3274C21.2878 8.59203 21.1281 8.92077 20.8785 9.15943C20.6289 9.39808 20.3068 9.53012 19.973 9.53059Z' fill='%23BEBEBE'/%3E%3Cpath d='M21.9358 7.68118L19.3711 3.71235V1.35294C19.3711 1.25934 19.3366 1.16956 19.2751 1.10337C19.2136 1.03718 19.1302 1 19.0432 1H3.95682C3.86984 1 3.78642 1.03718 3.72492 1.10337C3.66341 1.16956 3.62886 1.25934 3.62886 1.35294V3.71235L1.06418 7.68118C1.00997 7.79791 0.989408 7.92942 1.00514 8.05882C1.00492 8.40014 1.07931 8.73672 1.2223 9.04138C1.36529 9.34604 1.57288 9.61023 1.82828 9.81259C2.08368 10.015 2.37974 10.1498 2.69253 10.2063C3.00533 10.2628 3.32607 10.2392 3.62886 10.1376V18.6471C3.62886 18.7407 3.66341 18.8304 3.72492 18.8966C3.78642 18.9628 3.86984 19 3.95682 19H19.0432C19.1302 19 19.2136 18.9628 19.2751 18.8966C19.3366 18.8304 19.3711 18.7407 19.3711 18.6471V10.1376C19.6739 10.2392 19.9947 10.2628 20.3075 10.2063C20.6203 10.1498 20.9163 10.015 21.1717 9.81259C21.4271 9.61023 21.6347 9.34604 21.7777 9.04138C21.9207 8.73672 21.9951 8.40014 21.9949 8.05882C22.0106 7.92942 21.99 7.79791 21.9358 7.68118ZM4.28479 1.70588H18.7152V3.47059H4.28479V1.70588ZM4.12081 4.17647H18.8792L21.0454 7.52941H1.96116L4.12081 4.17647ZM17.933 8.23529C17.893 8.59208 17.7329 8.92073 17.4831 9.15913C17.2332 9.39753 16.9108 9.52918 16.5769 9.52918C16.2429 9.52918 15.9206 9.39753 15.6707 9.15913C15.4208 8.92073 15.2608 8.59208 15.2208 8.23529H17.933ZM14.5501 8.23529C14.5116 8.59313 14.3523 8.92327 14.1024 9.16292C13.8525 9.40257 13.5295 9.53499 13.1948 9.53499C12.86 9.53499 12.537 9.40257 12.2871 9.16292C12.0372 8.92327 11.8779 8.59313 11.8394 8.23529H14.5501ZM11.1606 8.23529C11.1221 8.59313 10.9628 8.92327 10.7129 9.16292C10.463 9.40257 10.14 9.53499 9.80525 9.53499C9.47052 9.53499 9.14748 9.40257 8.89758 9.16292C8.64768 8.92327 8.48836 8.59313 8.44993 8.23529H11.1606ZM7.77269 8.23529C7.73268 8.59208 7.57261 8.92073 7.32274 9.15913C7.07286 9.39753 6.75049 9.52918 6.41655 9.52918C6.08262 9.52918 5.76025 9.39753 5.51037 9.15913C5.2605 8.92073 5.10043 8.59208 5.06042 8.23529H7.77269ZM1.67255 8.23529H4.38318C4.34475 8.59313 4.18543 8.92327 3.93553 9.16292C3.68563 9.40257 3.36259 9.53499 3.02786 9.53499C2.69314 9.53499 2.3701 9.40257 2.1202 9.16292C1.87029 8.92327 1.71098 8.59313 1.67255 8.23529ZM14.1237 18.2941H11.828V11.9412H14.1237V18.2941ZM11.172 18.2941H8.87629V11.9412H11.172V18.2941ZM18.7152 18.2941H14.7796V11.5882C14.7796 11.4946 14.7451 11.4049 14.6836 11.3387C14.6221 11.2725 14.5387 11.2353 14.4517 11.2353H8.54832C8.46134 11.2353 8.37792 11.2725 8.31642 11.3387C8.25491 11.4049 8.22036 11.4946 8.22036 11.5882V18.2941H4.28479V9.76177C4.45555 9.61511 4.60337 9.43994 4.72262 9.24294C4.90523 9.54781 5.15597 9.79853 5.4519 9.97215C5.74783 10.1458 6.0795 10.2367 6.41655 10.2367C6.75361 10.2367 7.08528 10.1458 7.38121 9.97215C7.67714 9.79853 7.92788 9.54781 8.11049 9.24294C8.2933 9.5478 8.5442 9.79849 8.84026 9.97208C9.13632 10.1457 9.46809 10.2366 9.80525 10.2366C10.1424 10.2366 10.4742 10.1457 10.7702 9.97208C11.0663 9.79849 11.3172 9.5478 11.5 9.24294C11.6828 9.5478 11.9337 9.79849 12.2298 9.97208C12.5258 10.1457 12.8576 10.2366 13.1948 10.2366C13.5319 10.2366 13.8637 10.1457 14.1597 9.97208C14.4558 9.79849 14.7067 9.5478 14.8895 9.24294C15.0721 9.54781 15.3229 9.79853 15.6188 9.97215C15.9147 10.1458 16.2464 10.2367 16.5834 10.2367C16.9205 10.2367 17.2522 10.1458 17.5481 9.97215C17.844 9.79853 18.0948 9.54781 18.2774 9.24294C18.3966 9.43994 18.5445 9.61511 18.7152 9.76177V18.2941ZM19.973 9.53059C19.6389 9.53016 19.3166 9.39819 19.0667 9.15957C18.8169 8.92095 18.6569 8.59218 18.6168 8.23529H21.3274C21.2878 8.59203 21.1281 8.92077 20.8785 9.15943C20.6289 9.39808 20.3068 9.53012 19.973 9.53059Z' stroke='%23BEBEBE' stroke-width='0.2' mask='url(%23path-1-outside-1_226_1006)'/%3E%3C/svg%3E%0A");
  height: 22px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--favourites a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.9998 16C8.74377 16 8.49694 15.9072 8.30457 15.7388C7.57806 15.1035 6.87762 14.5065 6.25964 13.9799L6.25649 13.9772C4.44467 12.4332 2.8801 11.0998 1.7915 9.7863C0.574614 8.31791 0.0078125 6.92567 0.0078125 5.40473C0.0078125 3.92701 0.514517 2.56372 1.43449 1.56581C2.36544 0.556101 3.64283 0 5.03178 0C6.06989 0 7.02059 0.328199 7.85742 0.975406C8.27974 1.3021 8.66255 1.70192 8.9998 2.16828C9.33719 1.70192 9.71986 1.3021 10.1423 0.975406C10.9791 0.328199 11.9299 0 12.968 0C14.3568 0 15.6343 0.556101 16.5653 1.56581C17.4852 2.56372 17.9918 3.92701 17.9918 5.40473C17.9918 6.92567 17.4251 8.31791 16.2082 9.78616C15.1196 11.0998 13.5552 12.433 11.7437 13.9769C11.1246 14.5043 10.423 15.1023 9.69489 15.739C9.50267 15.9072 9.25569 16 8.9998 16ZM5.03178 1.05348C3.94057 1.05348 2.93814 1.48897 2.20889 2.27983C1.46879 3.08263 1.06115 4.19236 1.06115 5.40473C1.06115 6.68391 1.53657 7.82794 2.60253 9.11412C3.63282 10.3574 5.16528 11.6633 6.93964 13.1755L6.94293 13.1782C7.56325 13.7069 8.26643 14.3062 8.99829 14.9461C9.73455 14.3049 10.4388 13.7047 11.0604 13.1752C12.8346 11.663 14.3669 10.3574 15.3972 9.11412C16.463 7.82794 16.9385 6.68391 16.9385 5.40473C16.9385 4.19236 16.5308 3.08263 15.7907 2.27983C15.0616 1.48897 14.059 1.05348 12.968 1.05348C12.1686 1.05348 11.4347 1.30758 10.7866 1.80866C10.2091 2.25541 9.80685 2.82016 9.57099 3.21531C9.4497 3.41852 9.23621 3.53981 8.9998 3.53981C8.7634 3.53981 8.5499 3.41852 8.42861 3.21531C8.19289 2.82016 7.7906 2.25541 7.21296 1.80866C6.56493 1.30758 5.83101 1.05348 5.03178 1.05348Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.9998 16C8.74377 16 8.49694 15.9072 8.30457 15.7388C7.57806 15.1035 6.87762 14.5065 6.25964 13.9799L6.25649 13.9772C4.44467 12.4332 2.8801 11.0998 1.7915 9.7863C0.574614 8.31791 0.0078125 6.92567 0.0078125 5.40473C0.0078125 3.92701 0.514517 2.56372 1.43449 1.56581C2.36544 0.556101 3.64283 0 5.03178 0C6.06989 0 7.02059 0.328199 7.85742 0.975406C8.27974 1.3021 8.66255 1.70192 8.9998 2.16828C9.33719 1.70192 9.71986 1.3021 10.1423 0.975406C10.9791 0.328199 11.9299 0 12.968 0C14.3568 0 15.6343 0.556101 16.5653 1.56581C17.4852 2.56372 17.9918 3.92701 17.9918 5.40473C17.9918 6.92567 17.4251 8.31791 16.2082 9.78616C15.1196 11.0998 13.5552 12.433 11.7437 13.9769C11.1246 14.5043 10.423 15.1023 9.69489 15.739C9.50267 15.9072 9.25569 16 8.9998 16ZM5.03178 1.05348C3.94057 1.05348 2.93814 1.48897 2.20889 2.27983C1.46879 3.08263 1.06115 4.19236 1.06115 5.40473C1.06115 6.68391 1.53657 7.82794 2.60253 9.11412C3.63282 10.3574 5.16528 11.6633 6.93964 13.1755L6.94293 13.1782C7.56325 13.7069 8.26643 14.3062 8.99829 14.9461C9.73455 14.3049 10.4388 13.7047 11.0604 13.1752C12.8346 11.663 14.3669 10.3574 15.3972 9.11412C16.463 7.82794 16.9385 6.68391 16.9385 5.40473C16.9385 4.19236 16.5308 3.08263 15.7907 2.27983C15.0616 1.48897 14.059 1.05348 12.968 1.05348C12.1686 1.05348 11.4347 1.30758 10.7866 1.80866C10.2091 2.25541 9.80685 2.82016 9.57099 3.21531C9.4497 3.41852 9.23621 3.53981 8.9998 3.53981C8.7634 3.53981 8.5499 3.41852 8.42861 3.21531C8.19289 2.82016 7.7906 2.25541 7.21296 1.80866C6.56493 1.30758 5.83101 1.05348 5.03178 1.05348Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--chat a {
  line-height: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--chat a:before {
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.0085 15.6878C19.2802 14.5545 20.0002 13.0438 20.0002 11.4762C20.0002 9.81021 19.2203 8.25212 17.8041 7.08871C16.4257 5.95679 14.6013 5.33333 12.6667 5.33333C10.732 5.33333 8.90758 5.95679 7.52946 7.08879C6.11325 8.25212 5.33333 9.81021 5.33333 11.4762C5.33333 13.1422 6.11325 14.7003 7.52946 15.8637C8.90758 16.9957 10.732 17.6191 12.6667 17.6191C12.9245 17.6191 13.1838 17.6077 13.441 17.5851L13.8805 17.966C15.3943 19.2778 17.3302 19.9999 19.3333 20H20V18.581L19.8047 18.3857C19.0345 17.6132 18.4241 16.6964 18.0085 15.6878ZM14.7537 16.9583L13.872 16.1941L13.578 16.2302C13.2756 16.2671 12.9713 16.2857 12.6667 16.2857C9.35833 16.2857 6.66667 14.1282 6.66667 11.4762C6.66667 8.82425 9.35833 6.66667 12.6667 6.66667C15.975 6.66667 18.6667 8.82421 18.6667 11.4762C18.6667 12.7975 18.0075 14.031 16.8106 14.9495L16.4266 15.2441L16.6038 15.7455C16.9669 16.7697 17.5005 17.7251 18.1822 18.5713C16.9127 18.3593 15.7263 17.8012 14.7537 16.9583Z' fill='%23BEBEBE'/%3E%3Cpath d='M1.84104 12.5615C2.46509 11.7716 2.95507 10.8844 3.29137 9.93554L3.46721 9.43658L3.08358 9.14217C1.95492 8.27608 1.33333 7.11367 1.33333 5.86904C1.33333 3.36804 3.87537 1.33333 7 1.33333C9.29867 1.33333 11.282 2.43458 12.1699 4.0125C12.3347 4.0045 12.5003 4 12.6667 4C13.0007 4 13.3318 4.01621 13.6597 4.04862C13.3166 3.15967 12.7207 2.34817 11.9014 1.67525C10.5863 0.594958 8.84583 0 7 0C5.15417 0 3.41367 0.594958 2.0985 1.67525C0.74525 2.78688 0 4.27625 0 5.86904C0 7.36071 0.681333 8.798 1.88542 9.87917C1.49247 10.8248 0.918315 11.6844 0.195292 12.4095L0 12.6048V14H0.666667C1.89946 13.9998 3.1153 13.7128 4.21796 13.1615C4.09705 12.7032 4.0262 12.2331 4.00667 11.7596C3.33741 12.1518 2.60436 12.4233 1.84104 12.5615Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.0085 15.6878C19.2802 14.5545 20.0002 13.0438 20.0002 11.4762C20.0002 9.81021 19.2203 8.25212 17.8041 7.08871C16.4257 5.95679 14.6013 5.33333 12.6667 5.33333C10.732 5.33333 8.90758 5.95679 7.52946 7.08879C6.11325 8.25212 5.33333 9.81021 5.33333 11.4762C5.33333 13.1422 6.11325 14.7003 7.52946 15.8637C8.90758 16.9957 10.732 17.6191 12.6667 17.6191C12.9245 17.6191 13.1838 17.6077 13.441 17.5851L13.8805 17.966C15.3943 19.2778 17.3302 19.9999 19.3333 20H20V18.581L19.8047 18.3857C19.0345 17.6132 18.4241 16.6964 18.0085 15.6878ZM14.7537 16.9583L13.872 16.1941L13.578 16.2302C13.2756 16.2671 12.9713 16.2857 12.6667 16.2857C9.35833 16.2857 6.66667 14.1282 6.66667 11.4762C6.66667 8.82425 9.35833 6.66667 12.6667 6.66667C15.975 6.66667 18.6667 8.82421 18.6667 11.4762C18.6667 12.7975 18.0075 14.031 16.8106 14.9495L16.4266 15.2441L16.6038 15.7455C16.9669 16.7697 17.5005 17.7251 18.1822 18.5713C16.9127 18.3593 15.7263 17.8012 14.7537 16.9583Z' fill='%23BEBEBE'/%3E%3Cpath d='M1.84104 12.5615C2.46509 11.7716 2.95507 10.8844 3.29137 9.93554L3.46721 9.43658L3.08358 9.14217C1.95492 8.27608 1.33333 7.11367 1.33333 5.86904C1.33333 3.36804 3.87537 1.33333 7 1.33333C9.29867 1.33333 11.282 2.43458 12.1699 4.0125C12.3347 4.0045 12.5003 4 12.6667 4C13.0007 4 13.3318 4.01621 13.6597 4.04862C13.3166 3.15967 12.7207 2.34817 11.9014 1.67525C10.5863 0.594958 8.84583 0 7 0C5.15417 0 3.41367 0.594958 2.0985 1.67525C0.74525 2.78688 0 4.27625 0 5.86904C0 7.36071 0.681333 8.798 1.88542 9.87917C1.49247 10.8248 0.918315 11.6844 0.195292 12.4095L0 12.6048V14H0.666667C1.89946 13.9998 3.1153 13.7128 4.21796 13.1615C4.09705 12.7032 4.0262 12.2331 4.00667 11.7596C3.33741 12.1518 2.60436 12.4233 1.84104 12.5615Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  height: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--payments a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='16' viewBox='0 0 24 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.81839 16H19.1816C21.3217 16 23.0625 14.2592 23.0625 12.1191V3.88089C23.0625 1.74085 21.3217 0 19.1816 0H4.81839C2.67835 0 0.9375 1.74085 0.9375 3.88089V12.1192C0.9375 14.2592 2.67835 16 4.81839 16ZM21.4961 9.69217H17.51C16.5769 9.69217 15.8178 8.93308 15.8178 7.99996C15.8178 7.06684 16.5769 6.30775 17.51 6.30775H21.4961V9.69217ZM2.50392 3.88081C2.50392 2.60465 3.54223 1.56635 4.81839 1.56635H19.1816C20.4578 1.56635 21.4961 2.60465 21.4961 3.88081V4.74125H17.51C15.7134 4.74125 14.2514 6.20288 14.2514 7.99988C14.2514 9.79688 15.7134 11.2585 17.51 11.2585H21.4961V12.119C21.4961 13.3951 20.4578 14.4334 19.1816 14.4334H4.81839C3.54223 14.4334 2.50392 13.3951 2.50392 12.119V3.88081Z' fill='%23BEBEBE'/%3E%3Cpath d='M17.4868 9.17008C18.133 9.17008 18.6569 8.6462 18.6569 7.99996C18.6569 7.35372 18.133 6.82984 17.4868 6.82984C16.8405 6.82984 16.3167 7.35372 16.3167 7.99996C16.3167 8.6462 16.8405 9.17008 17.4868 9.17008Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='16' viewBox='0 0 24 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.81839 16H19.1816C21.3217 16 23.0625 14.2592 23.0625 12.1191V3.88089C23.0625 1.74085 21.3217 0 19.1816 0H4.81839C2.67835 0 0.9375 1.74085 0.9375 3.88089V12.1192C0.9375 14.2592 2.67835 16 4.81839 16ZM21.4961 9.69217H17.51C16.5769 9.69217 15.8178 8.93308 15.8178 7.99996C15.8178 7.06684 16.5769 6.30775 17.51 6.30775H21.4961V9.69217ZM2.50392 3.88081C2.50392 2.60465 3.54223 1.56635 4.81839 1.56635H19.1816C20.4578 1.56635 21.4961 2.60465 21.4961 3.88081V4.74125H17.51C15.7134 4.74125 14.2514 6.20288 14.2514 7.99988C14.2514 9.79688 15.7134 11.2585 17.51 11.2585H21.4961V12.119C21.4961 13.3951 20.4578 14.4334 19.1816 14.4334H4.81839C3.54223 14.4334 2.50392 13.3951 2.50392 12.119V3.88081Z' fill='%23BEBEBE'/%3E%3Cpath d='M17.4868 9.17008C18.133 9.17008 18.6569 8.6462 18.6569 7.99996C18.6569 7.35372 18.133 6.82984 17.4868 6.82984C16.8405 6.82984 16.3167 7.35372 16.3167 7.99996C16.3167 8.6462 16.8405 9.17008 17.4868 9.17008Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--edit-account a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='18' viewBox='0 0 16 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 17V16C1 14.1435 1.7375 12.363 3.05025 11.0503C4.36301 9.7375 6.14348 9 8 9M8 9C9.85652 9 11.637 9.7375 12.9497 11.0503C14.2625 12.363 15 14.1435 15 16V17M8 9C9.06087 9 10.0783 8.57857 10.8284 7.82843C11.5786 7.07828 12 6.06087 12 5C12 3.93913 11.5786 2.92172 10.8284 2.17157C10.0783 1.42143 9.06087 1 8 1C6.93913 1 5.92172 1.42143 5.17157 2.17157C4.42143 2.92172 4 3.93913 4 5C4 6.06087 4.42143 7.07828 5.17157 7.82843C5.92172 8.57857 6.93913 9 8 9Z' stroke='%23BEBEBE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='18' viewBox='0 0 16 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 17V16C1 14.1435 1.7375 12.363 3.05025 11.0503C4.36301 9.7375 6.14348 9 8 9M8 9C9.85652 9 11.637 9.7375 12.9497 11.0503C14.2625 12.363 15 14.1435 15 16V17M8 9C9.06087 9 10.0783 8.57857 10.8284 7.82843C11.5786 7.07828 12 6.06087 12 5C12 3.93913 11.5786 2.92172 10.8284 2.17157C10.0783 1.42143 9.06087 1 8 1C6.93913 1 5.92172 1.42143 5.17157 2.17157C4.42143 2.92172 4 3.93913 4 5C4 6.06087 4.42143 7.07828 5.17157 7.82843C5.92172 8.57857 6.93913 9 8 9Z' stroke='%23BEBEBE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--my-documents a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='17' height='20' viewBox='0 0 17 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2.5C0 1.83696 0.263385 1.20107 0.732214 0.732233C1.20104 0.263392 1.83691 0 2.49994 0H6.98232C7.47942 0.00043763 7.956 0.198269 8.30729 0.55L13.2009 5.4425C13.5522 5.794 13.7495 6.27057 13.7496 6.7675V15C13.7496 15.663 13.4863 16.2989 13.0174 16.7678C12.5486 17.2366 11.9127 17.5 11.2497 17.5H2.49994C1.83691 17.5 1.20104 17.2366 0.732214 16.7678C0.263385 16.2989 0 15.663 0 15V2.5ZM2.49994 1.25C2.16842 1.25 1.85049 1.3817 1.61608 1.61612C1.38166 1.85054 1.24997 2.16848 1.24997 2.5V15C1.24997 15.3315 1.38166 15.6495 1.61608 15.8839C1.85049 16.1183 2.16842 16.25 2.49994 16.25H11.2497C11.5812 16.25 11.8992 16.1183 12.1336 15.8839C12.368 15.6495 12.4997 15.3315 12.4997 15V7.5H8.12479C7.62752 7.5 7.15062 7.30246 6.799 6.95083C6.44738 6.5992 6.24984 6.12228 6.24984 5.625V1.25H2.49994ZM7.49981 1.50875V5.625C7.49981 5.79076 7.56565 5.94973 7.68286 6.06694C7.80007 6.18415 7.95904 6.25 8.12479 6.25H12.2409L7.49981 1.50875ZM16.2496 8.75C16.2496 8.41848 16.1179 8.10054 15.8835 7.86612C15.6491 7.6317 15.3311 7.5 14.9996 7.5V15C14.9996 15.9946 14.6045 16.9484 13.9013 17.6517C13.1981 18.3549 12.2442 18.75 11.2497 18.75H2.49994C2.49994 19.0815 2.63163 19.3995 2.86604 19.6339C3.10046 19.8683 3.41839 20 3.7499 20H11.3247C11.9715 20 12.6119 19.8726 13.2094 19.6251C13.8069 19.3776 14.3498 19.0148 14.8071 18.5575C15.2644 18.1002 15.6272 17.5572 15.8747 16.9597C16.1222 16.3622 16.2496 15.7218 16.2496 15.075V8.75Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='17' height='20' viewBox='0 0 17 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2.5C0 1.83696 0.263385 1.20107 0.732214 0.732233C1.20104 0.263392 1.83691 0 2.49994 0H6.98232C7.47942 0.00043763 7.956 0.198269 8.30729 0.55L13.2009 5.4425C13.5522 5.794 13.7495 6.27057 13.7496 6.7675V15C13.7496 15.663 13.4863 16.2989 13.0174 16.7678C12.5486 17.2366 11.9127 17.5 11.2497 17.5H2.49994C1.83691 17.5 1.20104 17.2366 0.732214 16.7678C0.263385 16.2989 0 15.663 0 15V2.5ZM2.49994 1.25C2.16842 1.25 1.85049 1.3817 1.61608 1.61612C1.38166 1.85054 1.24997 2.16848 1.24997 2.5V15C1.24997 15.3315 1.38166 15.6495 1.61608 15.8839C1.85049 16.1183 2.16842 16.25 2.49994 16.25H11.2497C11.5812 16.25 11.8992 16.1183 12.1336 15.8839C12.368 15.6495 12.4997 15.3315 12.4997 15V7.5H8.12479C7.62752 7.5 7.15062 7.30246 6.799 6.95083C6.44738 6.5992 6.24984 6.12228 6.24984 5.625V1.25H2.49994ZM7.49981 1.50875V5.625C7.49981 5.79076 7.56565 5.94973 7.68286 6.06694C7.80007 6.18415 7.95904 6.25 8.12479 6.25H12.2409L7.49981 1.50875ZM16.2496 8.75C16.2496 8.41848 16.1179 8.10054 15.8835 7.86612C15.6491 7.6317 15.3311 7.5 14.9996 7.5V15C14.9996 15.9946 14.6045 16.9484 13.9013 17.6517C13.1981 18.3549 12.2442 18.75 11.2497 18.75H2.49994C2.49994 19.0815 2.63163 19.3995 2.86604 19.6339C3.10046 19.8683 3.41839 20 3.7499 20H11.3247C11.9715 20 12.6119 19.8726 13.2094 19.6251C13.8069 19.3776 14.3498 19.0148 14.8071 18.5575C15.2644 18.1002 15.6272 17.5572 15.8747 16.9597C16.1222 16.3622 16.2496 15.7218 16.2496 15.075V8.75Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  height: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--my-bookings a {
  line-height: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--my-bookings a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.38462 3.76923C2.01739 3.76923 1.66521 3.91511 1.40554 4.17478C1.14588 4.43444 1 4.78662 1 5.15385V17.6154C1 17.9826 1.14588 18.3348 1.40554 18.5945C1.66521 18.8541 2.01739 19 2.38462 19H17.6154C17.9826 19 18.3348 18.8541 18.5945 18.5945C18.8541 18.3348 19 17.9826 19 17.6154V5.15385C19 4.78662 18.8541 4.43444 18.5945 4.17478C18.3348 3.91511 17.9826 3.76923 17.6154 3.76923H14.8462M5.15385 1V6.53846M14.8462 1V6.53846M5.15385 3.76923H12.0769M5.84615 12.7692L8.61538 14.8462L13.4615 9.30769' stroke='%23BEBEBE' stroke-width='1.38462' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.38462 3.76923C2.01739 3.76923 1.66521 3.91511 1.40554 4.17478C1.14588 4.43444 1 4.78662 1 5.15385V17.6154C1 17.9826 1.14588 18.3348 1.40554 18.5945C1.66521 18.8541 2.01739 19 2.38462 19H17.6154C17.9826 19 18.3348 18.8541 18.5945 18.5945C18.8541 18.3348 19 17.9826 19 17.6154V5.15385C19 4.78662 18.8541 4.43444 18.5945 4.17478C18.3348 3.91511 17.9826 3.76923 17.6154 3.76923H14.8462M5.15385 1V6.53846M14.8462 1V6.53846M5.15385 3.76923H12.0769M5.84615 12.7692L8.61538 14.8462L13.4615 9.30769' stroke='%23BEBEBE' stroke-width='1.38462' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  height: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--all-bookings a {
  line-height: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--all-bookings a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='20' viewBox='0 0 16 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7133 2.62038H11.9039V1.81093C11.9039 1.54904 11.6182 1.43001 11.3563 1.43001H9.95171C9.61841 0.477697 8.78513 0.00154151 7.83282 0.00154151C6.89098 -0.033866 6.03432 0.543637 5.71392 1.43001H4.33307C4.07118 1.43001 3.8093 1.54904 3.8093 1.81093V2.62038H1.99987C0.927614 2.63181 0.0503999 3.47768 0 4.54879V18.1906C0 19.2382 0.952313 20 1.99987 20H13.7133C14.7608 20 15.7132 19.2382 15.7132 18.1906V4.54883C15.6628 3.47768 14.7855 2.63181 13.7133 2.62038ZM4.76156 2.38232H6.07101C6.29958 2.35443 6.48318 2.18054 6.52337 1.95379C6.66437 1.33978 7.20304 0.899033 7.83282 0.882446C8.45675 0.901357 8.98732 1.34347 9.11843 1.95379C9.16112 2.18838 9.35684 2.3645 9.59458 2.38232H10.9516V4.28694H4.76156V2.38232ZM14.7608 18.1907C14.7608 18.7144 14.2371 19.0477 13.7133 19.0477H1.99987C1.47609 19.0477 0.952313 18.7144 0.952313 18.1907V4.54883C1.00089 4.00364 1.45258 3.58271 1.99987 3.57273H3.80925V4.78693C3.83441 5.0537 4.06544 5.25325 4.33303 5.2393H11.3563C11.6288 5.2542 11.8671 5.05739 11.9039 4.78693V3.57269H13.7133C14.2605 3.58271 14.7122 4.00359 14.7608 4.54879V18.1907H14.7608Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.02339 10.6436C5.8448 10.4554 5.54832 10.4448 5.35675 10.6198L3.83304 12.0721L3.19023 11.4055C3.01165 11.2172 2.71517 11.2066 2.5236 11.3817C2.33918 11.5749 2.33918 11.8789 2.5236 12.0721L3.4997 13.072C3.58418 13.1666 3.70622 13.2189 3.83299 13.2149C3.95858 13.2131 4.07839 13.1617 4.16629 13.072L6.02329 11.3103C6.2074 11.1414 6.2197 10.8552 6.05077 10.6711C6.04211 10.6615 6.03295 10.6524 6.02339 10.6436Z' fill='%23BEBEBE'/%3E%3Cpath d='M12.8562 11.6673H7.38045C7.11747 11.6673 6.90429 11.8805 6.90429 12.1435C6.90429 12.4065 7.11747 12.6197 7.38045 12.6197H12.8562C13.1192 12.6197 13.3324 12.4065 13.3324 12.1435C13.3324 11.8805 13.1192 11.6673 12.8562 11.6673Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.02339 6.83437C5.8448 6.64613 5.54832 6.63551 5.35675 6.81059L3.83304 8.26284L3.19023 7.5962C3.01165 7.40796 2.71517 7.39734 2.5236 7.57242C2.33918 7.76563 2.33918 8.06963 2.5236 8.26284L3.4997 9.26277C3.58418 9.35737 3.70622 9.40969 3.83299 9.40563C3.95858 9.40386 4.07839 9.3525 4.16629 9.26277L6.02329 7.50101C6.2074 7.33213 6.2197 7.04595 6.05077 6.8619C6.04211 6.85228 6.03295 6.84312 6.02339 6.83437Z' fill='%23BEBEBE'/%3E%3Cpath d='M12.8562 7.85809H7.38045C7.11747 7.85809 6.90429 8.07127 6.90429 8.33425C6.90429 8.59723 7.11747 8.8104 7.38045 8.8104H12.8562C13.1192 8.8104 13.3324 8.59723 13.3324 8.33425C13.3324 8.07127 13.1192 7.85809 12.8562 7.85809Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.02339 14.4528C5.8448 14.2646 5.54832 14.254 5.35675 14.429L3.83304 15.8813L3.19023 15.2147C3.01165 15.0264 2.71517 15.0158 2.5236 15.1909C2.33918 15.3841 2.33918 15.6881 2.5236 15.8813L3.4997 16.8812C3.58418 16.9758 3.70622 17.0281 3.83299 17.0241C3.95858 17.0223 4.07839 16.9709 4.16629 16.8812L6.02329 15.1195C6.2074 14.9506 6.2197 14.6644 6.05077 14.4803C6.04211 14.4708 6.03295 14.4616 6.02339 14.4528Z' fill='%23BEBEBE'/%3E%3Cpath d='M12.8562 15.4766H7.38045C7.11747 15.4766 6.90429 15.6898 6.90429 15.9527C6.90429 16.2157 7.11747 16.4289 7.38045 16.4289H12.8562C13.1192 16.4289 13.3324 16.2157 13.3324 15.9527C13.3324 15.6898 13.1192 15.4766 12.8562 15.4766Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='20' viewBox='0 0 16 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.7133 2.62038H11.9039V1.81093C11.9039 1.54904 11.6182 1.43001 11.3563 1.43001H9.95171C9.61841 0.477697 8.78513 0.00154151 7.83282 0.00154151C6.89098 -0.033866 6.03432 0.543637 5.71392 1.43001H4.33307C4.07118 1.43001 3.8093 1.54904 3.8093 1.81093V2.62038H1.99987C0.927614 2.63181 0.0503999 3.47768 0 4.54879V18.1906C0 19.2382 0.952313 20 1.99987 20H13.7133C14.7608 20 15.7132 19.2382 15.7132 18.1906V4.54883C15.6628 3.47768 14.7855 2.63181 13.7133 2.62038ZM4.76156 2.38232H6.07101C6.29958 2.35443 6.48318 2.18054 6.52337 1.95379C6.66437 1.33978 7.20304 0.899033 7.83282 0.882446C8.45675 0.901357 8.98732 1.34347 9.11843 1.95379C9.16112 2.18838 9.35684 2.3645 9.59458 2.38232H10.9516V4.28694H4.76156V2.38232ZM14.7608 18.1907C14.7608 18.7144 14.2371 19.0477 13.7133 19.0477H1.99987C1.47609 19.0477 0.952313 18.7144 0.952313 18.1907V4.54883C1.00089 4.00364 1.45258 3.58271 1.99987 3.57273H3.80925V4.78693C3.83441 5.0537 4.06544 5.25325 4.33303 5.2393H11.3563C11.6288 5.2542 11.8671 5.05739 11.9039 4.78693V3.57269H13.7133C14.2605 3.58271 14.7122 4.00359 14.7608 4.54879V18.1907H14.7608Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.02339 10.6436C5.8448 10.4554 5.54832 10.4448 5.35675 10.6198L3.83304 12.0721L3.19023 11.4055C3.01165 11.2172 2.71517 11.2066 2.5236 11.3817C2.33918 11.5749 2.33918 11.8789 2.5236 12.0721L3.4997 13.072C3.58418 13.1666 3.70622 13.2189 3.83299 13.2149C3.95858 13.2131 4.07839 13.1617 4.16629 13.072L6.02329 11.3103C6.2074 11.1414 6.2197 10.8552 6.05077 10.6711C6.04211 10.6615 6.03295 10.6524 6.02339 10.6436Z' fill='%23BEBEBE'/%3E%3Cpath d='M12.8562 11.6673H7.38045C7.11747 11.6673 6.90429 11.8805 6.90429 12.1435C6.90429 12.4065 7.11747 12.6197 7.38045 12.6197H12.8562C13.1192 12.6197 13.3324 12.4065 13.3324 12.1435C13.3324 11.8805 13.1192 11.6673 12.8562 11.6673Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.02339 6.83437C5.8448 6.64613 5.54832 6.63551 5.35675 6.81059L3.83304 8.26284L3.19023 7.5962C3.01165 7.40796 2.71517 7.39734 2.5236 7.57242C2.33918 7.76563 2.33918 8.06963 2.5236 8.26284L3.4997 9.26277C3.58418 9.35737 3.70622 9.40969 3.83299 9.40563C3.95858 9.40386 4.07839 9.3525 4.16629 9.26277L6.02329 7.50101C6.2074 7.33213 6.2197 7.04595 6.05077 6.8619C6.04211 6.85228 6.03295 6.84312 6.02339 6.83437Z' fill='%23BEBEBE'/%3E%3Cpath d='M12.8562 7.85809H7.38045C7.11747 7.85809 6.90429 8.07127 6.90429 8.33425C6.90429 8.59723 7.11747 8.8104 7.38045 8.8104H12.8562C13.1192 8.8104 13.3324 8.59723 13.3324 8.33425C13.3324 8.07127 13.1192 7.85809 12.8562 7.85809Z' fill='%23BEBEBE'/%3E%3Cpath d='M6.02339 14.4528C5.8448 14.2646 5.54832 14.254 5.35675 14.429L3.83304 15.8813L3.19023 15.2147C3.01165 15.0264 2.71517 15.0158 2.5236 15.1909C2.33918 15.3841 2.33918 15.6881 2.5236 15.8813L3.4997 16.8812C3.58418 16.9758 3.70622 17.0281 3.83299 17.0241C3.95858 17.0223 4.07839 16.9709 4.16629 16.8812L6.02329 15.1195C6.2074 14.9506 6.2197 14.6644 6.05077 14.4803C6.04211 14.4708 6.03295 14.4616 6.02339 14.4528Z' fill='%23BEBEBE'/%3E%3Cpath d='M12.8562 15.4766H7.38045C7.11747 15.4766 6.90429 15.6898 6.90429 15.9527C6.90429 16.2157 7.11747 16.4289 7.38045 16.4289H12.8562C13.1192 16.4289 13.3324 16.2157 13.3324 15.9527C13.3324 15.6898 13.1192 15.4766 12.8562 15.4766Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  height: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing {
  background-color: var(--rtcl-primary-color);
  margin-top: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing a {
  line-height: 21px;
  color: #ffffff;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3546_1866)'%3E%3Cpath d='M10.5 21C4.71007 21 0 16.2899 0 10.5C0 4.71007 4.71007 0 10.5 0C16.2899 0 21 4.71007 21 10.5C21 16.2899 16.2899 21 10.5 21ZM10.5 1.3125C5.43375 1.3125 1.3125 5.43375 1.3125 10.5C1.3125 15.5662 5.43375 19.6875 10.5 19.6875C15.5662 19.6875 19.6875 15.5662 19.6875 10.5C19.6875 5.43375 15.5662 1.3125 10.5 1.3125Z' fill='%23BEBEBE'/%3E%3Cpath d='M15.0938 11.1562H5.90625C5.544 11.1562 5.25 10.8622 5.25 10.5C5.25 10.1378 5.544 9.84375 5.90625 9.84375H15.0938C15.456 9.84375 15.75 10.1378 15.75 10.5C15.75 10.8622 15.456 11.1562 15.0938 11.1562Z' fill='%23BEBEBE'/%3E%3Cpath d='M10.5 15.75C10.1378 15.75 9.84375 15.456 9.84375 15.0938V5.90625C9.84375 5.544 10.1378 5.25 10.5 5.25C10.8622 5.25 11.1562 5.544 11.1562 5.90625V15.0938C11.1562 15.456 10.8622 15.75 10.5 15.75Z' fill='%23BEBEBE'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3546_1866'%3E%3Crect width='21' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3546_1866)'%3E%3Cpath d='M10.5 21C4.71007 21 0 16.2899 0 10.5C0 4.71007 4.71007 0 10.5 0C16.2899 0 21 4.71007 21 10.5C21 16.2899 16.2899 21 10.5 21ZM10.5 1.3125C5.43375 1.3125 1.3125 5.43375 1.3125 10.5C1.3125 15.5662 5.43375 19.6875 10.5 19.6875C15.5662 19.6875 19.6875 15.5662 19.6875 10.5C19.6875 5.43375 15.5662 1.3125 10.5 1.3125Z' fill='%23BEBEBE'/%3E%3Cpath d='M15.0938 11.1562H5.90625C5.544 11.1562 5.25 10.8622 5.25 10.5C5.25 10.1378 5.544 9.84375 5.90625 9.84375H15.0938C15.456 9.84375 15.75 10.1378 15.75 10.5C15.75 10.8622 15.456 11.1562 15.0938 11.1562Z' fill='%23BEBEBE'/%3E%3Cpath d='M10.5 15.75C10.1378 15.75 9.84375 15.456 9.84375 15.0938V5.90625C9.84375 5.544 10.1378 5.25 10.5 5.25C10.8622 5.25 11.1562 5.544 11.1562 5.90625V15.0938C11.1562 15.456 10.8622 15.75 10.5 15.75Z' fill='%23BEBEBE'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3546_1866'%3E%3Crect width='21' height='21' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  height: 21px;
  background-color: #ffffff;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing a:hover {
  background-color: var(--rtcl-psecondary-color);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--logout a:before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.50459 2.34596C3.81493 2.65829 3.81502 3.16474 3.50478 3.47717C2.61603 4.37216 2.01085 5.51236 1.76576 6.75359C1.52067 7.99484 1.64667 9.28136 2.12783 10.4505C2.60899 11.6196 3.42369 12.6189 4.46894 13.3219C5.51419 14.0249 6.74308 14.4002 8.00012 14.4002C9.25717 14.4002 10.4861 14.0249 11.5313 13.3219C12.5765 12.6189 13.3913 11.6196 13.8724 10.4505C14.3536 9.28136 14.4795 7.99484 14.2345 6.75359C13.9894 5.51236 13.3842 4.37216 12.4955 3.47717C12.1852 3.16474 12.1853 2.65829 12.4957 2.34596C12.806 2.03365 13.3091 2.03373 13.6193 2.34616C14.7302 3.4649 15.4867 4.89015 15.7931 6.44172C16.0995 7.99324 15.942 9.60139 15.3405 11.0628C14.739 12.5242 13.7207 13.7733 12.4141 14.6521C11.1075 15.531 9.57149 16 8.00012 16C6.42875 16 4.89271 15.531 3.58615 14.6521C2.27958 13.7733 1.26119 12.5242 0.659747 11.0628C0.0583016 9.60139 -0.0991928 7.99324 0.207167 6.44172C0.513535 4.89015 1.27 3.4649 2.38094 2.34616C2.69117 2.03373 3.19425 2.03365 3.50459 2.34596Z' fill='%23BEBEBE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.00012 0C8.43895 0 8.79467 0.358121 8.79467 0.799876V7.99876C8.79467 8.44053 8.43895 8.79864 8.00012 8.79864C7.5613 8.79864 7.20558 8.44053 7.20558 7.99876V0.799876C7.20558 0.358121 7.5613 0 8.00012 0Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.50459 2.34596C3.81493 2.65829 3.81502 3.16474 3.50478 3.47717C2.61603 4.37216 2.01085 5.51236 1.76576 6.75359C1.52067 7.99484 1.64667 9.28136 2.12783 10.4505C2.60899 11.6196 3.42369 12.6189 4.46894 13.3219C5.51419 14.0249 6.74308 14.4002 8.00012 14.4002C9.25717 14.4002 10.4861 14.0249 11.5313 13.3219C12.5765 12.6189 13.3913 11.6196 13.8724 10.4505C14.3536 9.28136 14.4795 7.99484 14.2345 6.75359C13.9894 5.51236 13.3842 4.37216 12.4955 3.47717C12.1852 3.16474 12.1853 2.65829 12.4957 2.34596C12.806 2.03365 13.3091 2.03373 13.6193 2.34616C14.7302 3.4649 15.4867 4.89015 15.7931 6.44172C16.0995 7.99324 15.942 9.60139 15.3405 11.0628C14.739 12.5242 13.7207 13.7733 12.4141 14.6521C11.1075 15.531 9.57149 16 8.00012 16C6.42875 16 4.89271 15.531 3.58615 14.6521C2.27958 13.7733 1.26119 12.5242 0.659747 11.0628C0.0583016 9.60139 -0.0991928 7.99324 0.207167 6.44172C0.513535 4.89015 1.27 3.4649 2.38094 2.34616C2.69117 2.03373 3.19425 2.03365 3.50459 2.34596Z' fill='%23BEBEBE'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.00012 0C8.43895 0 8.79467 0.358121 8.79467 0.799876V7.99876C8.79467 8.44053 8.43895 8.79864 8.00012 8.79864C7.5613 8.79864 7.20558 8.44053 7.20558 7.99876V0.799876C7.20558 0.358121 7.5613 0 8.00012 0Z' fill='%23BEBEBE'/%3E%3C/svg%3E%0A");
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-navigation .rtcl-unread-badge {
  bottom: auto;
  transform: translateY(-50%);
  top: 50%;
  right: 25px;
  padding: 4px 5px;
  line-height: 1;
  font-size: 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content {
  position: relative;
  padding: 50px;
  flex: 1;
  background-color: #EEEEEE;
  color: #646464;
  transition: margin-left 0.5s;
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content {
    padding: 25px;
  }
}
@media screen and (max-width: 600px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content {
    padding: 25px 10px;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .sidebar-menu-opened {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -10px 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div {
  flex: 25%;
  max-width: 25%;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div {
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div {
    flex: 100%;
    max-width: 100%;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-icon {
  background-color: #e4f0fd;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rtcl-primary-color);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-icon svg path {
  fill: currentColor;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-icon.expired-icon {
  background-color: #FFF3F4;
  color: #FF3C48;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-icon.pending-icon {
  color: #ff8800;
  background-color: #ffefdb;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-icon.published-icon {
  color: #007e33;
  background-color: #dbf6e6;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-icon.total-icon {
  color: #0099cc;
  background-color: #cfebf5;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-number {
  flex: 1;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-number h5 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
  margin: 0 0 5px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div .rtcl-listing-count-inner .rtcl-listing-number span {
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  color: #111111;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content {
  flex: 25%;
  max-width: 25%;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content {
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content {
    flex: 100%;
    max-width: 100%;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content .rtcl-user-content-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 6px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content .rtcl-user-avatar img {
  border-radius: 50%;
  border: 1px solid #F2F2F2;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content .rtcl-user-details {
  flex: 1;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content .rtcl-user-details h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content .rtcl-user-details p {
  font-size: 16px;
  margin-bottom: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-note {
  flex: 1;
  padding: 0 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-note .rtcl-user-note-inner {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 6px;
  height: 100%;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-note h4 {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-note p {
  font-size: 16px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #111111;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .action-btn {
  text-align: center;
  margin-bottom: 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .action-btn a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
  padding: 10px 15px;
  border-radius: 6px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-payment-table-wrap > h3 {
  font-size: 24px;
  color: #111111;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-payment-table-wrap table {
  margin-top: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-global-pagination-wrap {
  margin-bottom: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .pricing-info table th {
  border-radius: 4px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .pricing-info table tr:nth-child(2n) td {
  background-color: transparent;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .pricing-info table tr:nth-child(2n+1) td {
  background-color: #f4f4f4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .pricing-info table .badge {
  display: inline-block;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .membership-pricing-info table {
  border: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .membership-pricing-info table .pricing-description {
  margin-top: 5px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .membership-pricing-info table tr td {
  vertical-align: top;
  background-color: transparent;
  border-color: #e4e4e4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .membership-pricing-info table tr td:first-child {
  width: 210px;
  text-align: right;
  font-weight: 600;
  border: none;
  border-right: 1px solid #e4e4e4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .membership-pricing-info table tr:first-child td:last-child {
  border-top: 1px solid #e4e4e4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-membership-promotions .promotion-item {
  display: flex;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-membership-promotions .promotion-item.label-item {
  font-weight: 400;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-membership-promotions .promotion-item .item-label {
  flex: 0 0 90px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-membership-promotions .promotion-item .item-listings,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-membership-promotions .promotion-item .item-validate {
  flex: 0 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-membership-promotions .promotion-item + .promotion-item {
  border-top: 1px solid #e4e4e4;
  margin-top: 5px;
  padding-top: 5px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-payment-history-wrap .rtcl-pagination {
  padding: 15px;
  background-color: #ffffff;
  border-radius: 6px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-membership-statistics-report {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-outer {
  flex: 50%;
  max-width: 50%;
  padding: 0 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-outer + .rtcl-subs-reports-outer {
  flex: 50%;
  max-width: 50%;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-outer + .rtcl-subs-reports-outer .rtcl-subs .rtcl-sub-item + .rtcl-sub-item {
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-outer + .rtcl-subs-reports-outer {
    margin-top: 20px;
    flex: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-outer {
    flex: 100%;
    max-width: 100%;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap {
  background-color: #ffffff;
  padding: 20px 20px 15px;
  border-radius: 6px;
  margin-top: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap h4 {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report {
  font-size: 16px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report > p a {
  color: var(--rtcl-primary-color);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .report-item {
  margin-bottom: 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .report-item label {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 16px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .report-item .value strong {
  font-weight: 400;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .rtcl-membership-promotions {
  margin-top: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .rtcl-membership-promotions .rtcl-table-border {
  text-align: left;
  margin-bottom: 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .rtcl-membership-promotions .rtcl-table-border th, .rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .rtcl-membership-promotions .rtcl-table-border td {
  padding: 10px 15px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .rtcl-membership-promotions .rtcl-table-border th {
  font-weight: 500;
  color: #111111;
  background-color: #e4f0fd;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-wrap .statistic-report .rtcl-membership-promotions .rtcl-table-border td {
  font-size: 14px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .form-group > label {
  font-size: 15px;
  font-weight: 700;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap {
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-status ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-status ul li {
  margin: 5px 8px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-status ul li:first-child {
  margin-left: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-status ul li:last-child {
  margin-right: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-status ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #222222;
  text-decoration: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-status ul li a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-status ul li a.active {
  background-color: var(--rtcl-primary-color);
  color: #ffffff;
  padding: 7px 15px;
  border-radius: 4px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form {
  margin-left: auto;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form form {
  position: relative;
}
@media screen and (max-width: 480px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form {
    flex: 0 0 100%;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form input,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form input:focus {
  border: 1px solid #E8E8E8;
  background-color: #F6F6F6;
  border-radius: 100px;
  height: 40px;
  width: 380px;
  padding: 3px 50px 3px 25px;
  box-shadow: none;
}
@media screen and (max-width: 1199px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form input,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form input:focus {
    width: 320px;
  }
}
@media screen and (max-width: 480px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form input,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form input:focus {
    display: block;
    width: 100%;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-my-listings-search-form button {
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  right: 25px;
  top: 12px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-pagination {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 6px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table {
  margin: 0;
  border: 1px solid #dedede;
  width: 100%;
  border-collapse: collapse;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td {
  border: 1px solid #dedede;
  text-align: left;
  padding: 15px;
  color: #111111;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th.title-cell,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.title-cell {
  max-width: 360px;
  min-width: 220px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th.price-cell,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.price-cell {
  max-width: 160px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th.center-cell,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.center-cell {
  text-align: center;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th:first-child,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td:first-child {
  vertical-align: top;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th:nth-child(5), .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th:last-child,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td:nth-child(5),
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td:last-child {
  text-align: center;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th:nth-child(6),
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td:nth-child(6) {
  min-width: 80px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th {
  font-size: 16px;
  font-weight: 500;
  background-color: #e4f0fd;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td {
  font-size: 15px;
  font-weight: 400;
  transition: background-color 0.3s ease-in-out;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td:first-child {
  position: relative;
  overflow: hidden;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td a {
  color: inherit;
  text-decoration: none !important;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td a.listing-title {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td a.listing-title {
    display: block;
    margin-right: 30px;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td a:hover {
  color: var(--rtcl-primary-color);
  text-decoration: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.status-cell {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.status-cell {
    display: none !important;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.status-cell span {
  display: inline-block;
  color: #4AAB29;
  background-color: #E4F8DD;
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 13px;
  line-height: 1;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.status-cell span.pending {
  color: #b48726;
  background-color: #f2e1bb;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.status-cell span.rtcl-expired {
  color: #FF3C48;
  background-color: #FFE5E3;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.status-cell span.rtcl-reviewed {
  background-color: #FFD580;
  color: #bd7c2d;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-meta {
  list-style-type: none;
  margin: 5px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 8px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-meta li {
  margin-right: 12px;
  line-height: 1;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  color: #797979;
  font-size: 13px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-meta li .rtcl-delimiter {
  margin-right: 4px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-meta li svg {
  margin-right: 4px;
  color: #797979;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-meta li svg:before {
  margin: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-listable {
  margin: 5px 0 3px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-listable .rtcl-listable-item {
  color: #797979;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  display: inline;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-listable .rtcl-listable-item .listable-label {
  font-weight: 400;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .cross-svg {
  color: red;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .tick-svg {
  color: #4AAB29;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr:nth-child(2n) {
  background-color: #f4f4f4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr:nth-child(2n) td {
  background-color: #f4f4f4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-thumb {
  max-width: 100px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-thumb .rtcl-sold-out {
  font-size: 11px;
  left: -37px;
  top: 12px;
  padding: 6px 32px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-thumb img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-price {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  display: inline-block;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-price .rtcl-price-meta {
  font-size: 13px;
  font-weight: 400;
  color: inherit;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-price.price-type-on_call .rtcl-price-meta {
  font-size: 15px;
  font-weight: 500;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions-wrap {
  position: relative;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions-wrap .actions-dot {
  cursor: pointer;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions {
  display: none;
  background-color: #ffffff;
  position: absolute;
  top: 35px;
  right: -10px;
  width: 170px;
  z-index: 20;
  padding: 20px 20px 15px;
  border: 1px solid #e2e2e2;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions.closed {
  display: none !important;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions.opened {
  display: block !important;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions a svg {
  width: 18px;
  height: 18px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions a.mark-as-sold.sold svg path {
  fill: #ff0000;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions a:hover svg path {
  fill: var(--rtcl-primary-color);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-actions:before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  position: absolute;
  top: -8px;
  right: 35px;
  transform: rotate(45deg);
  border-right-width: 0;
  border-bottom-width: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-status-mobile {
  display: none;
}
@media screen and (min-width: 1025px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr:hover td {
    background-color: rgba(0, 0, 0, 0.075);
  }
}
@media screen and (min-width: 1025px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .rtcl-my-listings-table-toggle-info {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr th,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td {
    padding: 10px;
    border-radius: 0 !important;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr th.list-on-responsive,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.list-on-responsive {
    display: none;
    text-align: left;
    border: none;
    border-top: 1px solid #dedede;
    margin-right: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    margin-left: 10px;
    padding: 5px 0;
    transition: 0.4s;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr th.list-on-responsive.show,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.list-on-responsive.show {
    display: block;
    min-width: calc(100% - 20px);
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr th.title-cell,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell {
    width: auto;
    display: table-cell;
    clear: both;
    max-width: none;
    padding-right: 45px;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr th.title-cell.showed-info,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell.showed-info {
    display: block;
    border-width: 0;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr th.title-cell.showed-info .listing-status-mobile,
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell.showed-info .listing-status-mobile {
    padding: 8px 8px 0;
    border-top: 1px solid #dedede;
    margin-top: 8px;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td {
    position: relative;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td:before {
    content: attr(data-column);
    font-weight: 500;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell:before {
    content: none;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell .rtcl-my-listings-table-toggle-info {
    position: absolute;
    right: 10px;
    top: 12px;
    z-index: 99;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell .rtcl-my-listings-table-toggle-info span.rtcl-icon {
    background-color: var(--rtcl-primary-color);
    color: #ffffff;
    line-height: 1;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 3px;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell .rtcl-my-listings-table-toggle-info span.rtcl-icon:before {
    margin: 0;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td:first-child:before {
    content: none;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td .rtcl-actions-wrap {
    display: inline-block;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td .rtcl-actions-wrap .actions-dot {
    display: none;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td .rtcl-actions-wrap .rtcl-actions {
    position: initial;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    gap: 15px;
    background: transparent;
    border: none;
    width: auto;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td .rtcl-actions-wrap .rtcl-actions {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td .rtcl-actions-wrap .rtcl-actions a {
    margin-bottom: 0;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td .rtcl-actions-wrap .rtcl-actions:before {
    content: none;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tbody {
    vertical-align: top;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-status-mobile {
    display: block;
    font-size: 15px;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-status-mobile span {
    font-weight: 500;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-status-mobile span:last-child {
    font-weight: 400;
    display: inline-block;
    color: #4AAB29;
    background-color: #E4F8DD;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1;
    margin-left: 3px;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-status-mobile.rtcl-reviewed span:last-child {
    background-color: #FFD580;
    color: #bd7c2d;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-status-mobile.rtcl-expired span:last-child {
    color: #FF3C48;
    background-color: #FFE5E3;
  }
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table .listing-status-mobile.pending span:last-child {
    color: #b48726;
    background-color: #f2e1bb;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-favourite-listings .rtcl-actions {
  justify-content: center;
  display: inline-flex;
  background-color: transparent;
  position: static;
  width: auto;
  padding: 0;
  border: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-favourite-listings .rtcl-actions:before {
  content: none;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-favourite-listings .rtcl-pagination {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 15px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-no-data-found {
  background-color: #ffffff;
  padding: 25px;
  margin: 0;
  text-align: center;
  border-radius: 6px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-control {
  width: 100%;
  border-radius: 6px;
  border-color: #e4e4e4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-control:focus {
  border-color: #111111;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-username-row {
  display: flex;
  gap: 20px;
  align-items: center;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-username-row .rtcl-field-label {
  margin-bottom: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-field-col .rtcl-btn {
  margin-top: 15px;
  padding: 10px 15px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-social-wrap-row .rtcl-field-label {
  font-size: 18px;
  color: #111111;
  font-weight: 500;
  margin-bottom: 18px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-social-wrap-row .rtcl-field-col {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-social-wrap-row .rtcl-field-col .rtcl-form-control {
  max-width: calc(33.333% - 14px);
  flex: 0 0 calc(33.333% - 14px);
}
@media screen and (max-width: 600px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-social-wrap-row .rtcl-field-col .rtcl-form-control {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap .rtcl-form-group {
  flex: 0 0 50%;
  padding: 0 10px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap .rtcl-form-group.rtcl-no-field-group {
  flex: 0 0 100%;
}
@media screen and (max-width: 600px) {
  .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap .rtcl-form-group {
    flex: 0 0 100%;
  }
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location .leaflet-touch .leaflet-bar a {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location .leaflet-touch .leaflet-control-zoom-in,
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location .leaflet-touch .leaflet-control-zoom-out {
  font-size: 18px;
  color: #646464;
  font-weight: 400;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location > .rtcl-form-group:nth-of-type(2) .rtcl-field-col {
  height: calc(100% - 55px);
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location .rtcl-map-wrap {
  height: 100%;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location .rtcl-map-wrap .rtcl-map {
  height: 100%;
  min-height: 265px;
  margin: 0;
  border-radius: 6px;
  border: 1px solid #e4e4e4;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location .rtcl-form-group {
  margin-bottom: 0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-form-group-wrap.rtcl-edit-account-location .rtcl-form-group .rtcl-field-col {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-media-upload-wrap .rtcl-media-upload {
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  padding: 6px;
  width: 110px;
  height: 110px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-media-upload-wrap .rtcl-media-upload .rtcl-media-action {
  top: 5px;
  right: 5px;
  width: 25px;
  border: 1px solid #E0E0E0;
  background-color: #ffffff;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-media-upload-wrap .rtcl-media-upload .rtcl-media-action span {
  display: block;
  position: static;
  width: auto;
  height: auto;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-media-upload-wrap .rtcl-media-upload .rtcl-media-action span:before {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 25px;
  display: block;
  width: 100%;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-media-upload-wrap .rtcl-media-upload .rtcl-media-action span.rtcl-icon-plus {
  border-bottom: 1px solid #E0E0E0;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-row .rtcl-field-label {
  font-weight: 500;
  font-size: 18px;
  color: #111111;
  margin-bottom: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-wrap {
  display: flex;
  gap: 20px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-wrap .rtcl-gravatar-wrap {
  flex: 0 0 125px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-wrap .rtcl-gravatar-wrap .rtcl-gravatar-img {
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  padding: 6px;
  background-color: #F9F9F9;
  text-align: center;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-wrap .rtcl-gravatar-wrap .rtcl-gravatar-img img {
  border-radius: 4px;
  max-width: 100%;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-wrap .rtcl-gravatar-wrap p {
  line-height: 16px;
  margin: 10px 0 0;
  font-size: 13px;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-wrap .rtcl-gravatar-wrap p a {
  color: inherit;
}
.rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-EditAccountForm .rtcl-profile-picture-wrap .rtcl-gravatar-wrap p a:hover {
  color: var(--rtcl-primary-color);
}

body.rtcl-account.page-template-rtcl-canvas_template #rtcl-user-registration-wrapper,
body.rtcl-account.page-template-rtcl-canvas_template #rtcl-user-login-wrapper {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
body.rtcl-account.page-template-rtcl-canvas_template #rtcl-user-registration-wrapper.have-registration-form,
body.rtcl-account.page-template-rtcl-canvas_template #rtcl-user-login-wrapper.have-registration-form {
  width: 100%;
  max-width: 1320px;
}
body.rtcl-account.page-template-rtcl-canvas_template .rtcl-MyAccount-mobile-navbar > h4 {
  display: none;
}

body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-mobile-navbar {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 20px;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-mobile-navbar > h4 {
  font-size: 22px;
  color: #222222;
  margin: 0;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-mobile-navbar .rtcl-myaccount-logo {
  display: none;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu span,
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu:after,
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu:before {
  background: #222222;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation {
  background-color: transparent;
  flex: 0 0 250px;
  max-width: 250px;
}
@media screen and (max-width: 991px) {
  body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation {
    background-color: #ffffff;
    flex: 0 0 300px;
    max-width: 300px;
  }
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation .rtcl-myaccount-logo {
  display: none;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li {
  border-right: none;
  border-color: #E8E8E8;
  color: #646464;
  background-color: #ffffff;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li:first-child {
  border-top: none;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a {
  padding: 15px 25px 15px 55px;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a:before {
  left: 25px;
  background-color: #646464;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing {
  border-top: none;
  margin-top: 20px;
  background-color: var(--rtcl-primary-color);
}
@media screen and (min-width: 992px) {
  body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing {
    border-radius: 6px;
  }
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing a {
  color: #ffffff;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing a:before {
  background-color: #ffffff;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing a:after {
  content: none;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link.rtcl-MyAccount-navigation-link--add-listing:hover {
  background-color: var(--rtcl-secondary-color);
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li:hover, body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.is-active {
  color: var(--rtcl-primary-color);
  background: #EBF3FC;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li:hover a:before, body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.is-active a:before {
  background-color: var(--rtcl-primary-color);
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li:hover a:after, body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.is-active a:after {
  opacity: 1;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content {
  background-color: transparent;
  padding: 0 0 0 30px;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .sidebar-menu-opened {
  position: fixed;
}
@media screen and (max-width: 991px) {
  body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content {
    padding: 0;
  }
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content {
  flex: 50%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-user-info .rtcl-user-content {
    flex: 100%;
    max-width: 100%;
  }
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div {
  flex: 50%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-listing-statistics > div {
    flex: 100%;
    max-width: 100%;
  }
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-outer {
  flex: 100%;
  max-width: 100%;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .membership-statistic-report-outer + .rtcl-subs-reports-outer {
  flex: 100%;
  max-width: 100%;
  margin-top: 20px;
}
body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th, body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td {
  padding: 8px;
}

html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a:before {
  left: auto;
  right: 30px;
}
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li a {
  padding: 18px 60px 18px 30px;
}
html[dir=rtl] body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-mobile-navbar > h4 {
  order: 2;
}
@media screen and (max-width: 991px) {
  html[dir=rtl] .rtcl-MyAccount-mobile-navbar .rtcl-MyAccount-open-menu {
    margin-left: initial;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  html[dir=rtl] body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-content {
    padding-right: 30px;
  }
}
html[dir=rtl] body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a {
  padding-right: 55px;
  padding-left: 25px;
}
html[dir=rtl] body.rtcl-account:not(.page-template-rtcl-canvas_template) .rtcl-MyAccount-wrap .rtcl-MyAccount-navigation ul li.rtcl-MyAccount-navigation-link a:before {
  left: auto;
  right: 25px;
}
@media screen and (max-width: 1024px) {
  html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table tr td.title-cell .rtcl-my-listings-table-toggle-info {
    right: auto;
    left: 10px;
  }
}
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table th,
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.title-cell,
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td.price-cell {
  text-align: initial;
}
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-manage-my-listings .rtcl-action-wrap .rtcl-add-new-listing {
  margin-left: initial;
  margin-right: auto;
}
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-meta li svg {
  margin-right: 0;
  margin-left: 4px;
}
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-meta li {
  margin-right: 0;
  margin-left: 12px;
}
html[dir=rtl] .rtcl-MyAccount-wrap .rtcl-MyAccount-content .rtcl-my-listing-table td .rtcl-ad-details .rtcl-listable .rtcl-listable-item {
  display: inline-flex;
  align-items: center;
}

.rtcl.rtcl-elementor-widget {
  --rtcl-black-lite: #f7f5ff;
  --meta-color: #777;
  --meta-icon-color: #777;
  --meta-icon-hover-color: #777;
  font-size: 16px;
}
.rtcl.rtcl-elementor-widget .entry {
  margin-top: initial;
}
.rtcl.rtcl-elementor-widget .rtcl-icon {
  color: inherit;
}
.rtcl.rtcl-elementor-widget a {
  text-decoration: none;
  transition: 0.3s all;
}
.rtcl.rtcl-elementor-widget a:hover {
  color: var(--rtcl-link-hover-color);
}
.rtcl.rtcl-elementor-widget .badge {
  line-height: 1.15;
  font-size: 13px;
  margin: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-short-description p:last-child {
  margin-bottom: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-listable {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-listable .rtcl-listable-item {
  color: #828282;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: repeat(3, 34px);
  position: absolute;
  width: auto;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  transition: all 0.3s ease-out;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap .rtcl-el-button {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap .favourite-label {
  display: none;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap .rtcl-el-button {
  width: 30px;
  height: 30px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap .rtcl-el-button a {
  background-color: #fff;
  color: #000;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap .rtcl-el-button a:hover {
  color: #fff;
  background-color: var(--rtcl-primary-color);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap a {
  color: inherit;
  background-color: inherit;
  display: inline-flex;
  width: 100%;
  height: 100%;
  line-height: 28px;
  position: relative;
  justify-content: center;
  align-items: center;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap a:before {
  content: none !important;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap .rtcl-icon {
  color: inherit;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap.vertical-layout {
  gap: 8px;
  grid-template-columns: unset;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-wrap.vertical-layout .rtcl-el-button {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item {
  background-color: #fff;
  transition: 0.15s all;
  border: none;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .listing-title {
  line-height: 1.3;
  padding-bottom: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item.is-featured .listing-thumb:after {
  content: "\f097";
  font-family: "rtcl", serif;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  background-color: var(--rtcl-badge-featured-bg-color);
  width: 45px;
  height: 45px;
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item.is-top {
  background-color: #fff;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .rtcl-listing-badge-wrap {
  padding-right: 0;
  margin: 0;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .badge {
  background-color: var(--rtcl-primary-color);
  color: #fff;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .badge .rtcl-badge-new {
  color: var(--rtcl-badge-new-color);
  background-color: var(--rtcl-badge-new-bg-color);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .item-price {
  line-height: 1.4;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .item-price .rtcl-price-range {
  display: inline-block;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .item-price .rtcl-price-meta {
  font-size: 85%;
  justify-content: start;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item .listing-thumb img {
  transform: scale(1);
  transition: all 0.4s ease-out;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover {
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap .rtcl-el-button {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap .rtcl-el-button:nth-child(1) {
  transition-delay: 0s;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap .rtcl-el-button:nth-child(2) {
  transition-delay: 0.2s;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap .rtcl-el-button:nth-child(3) {
  transition-delay: 0.4s;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap.vertical-layout .rtcl-el-button {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap.vertical-layout .rtcl-el-button:nth-child(1) {
  transition-delay: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap.vertical-layout .rtcl-el-button:nth-child(2) {
  transition-delay: 0.3s;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .listing-item:hover .rtcl-meta-buttons-wrap.vertical-layout .rtcl-el-button:nth-child(3) {
  transition-delay: 0.4s;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-listing-item:hover .rtcl-meta-buttons-wrap {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0px);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-withtext {
  overflow: hidden;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-withtext .rtcl-text-el-button {
  margin-top: 8px;
  position: relative;
  display: flex;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-withtext .rtcl-text-el-button a {
  line-height: 1.6;
  font-size: 15px;
  color: unset;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-withtext .rtcl-text-el-button a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-withtext .rtcl-text-el-button .rtcl-icon {
  margin-right: 5px;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-withtext .rtcl-text-el-button .rtcl-icon-spinner {
  position: absolute;
  left: auto;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-price {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: var(--rtcl-primary-color);
  display: inline-block;
}
.rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-price.fixed {
  position: relative;
  top: initial;
  left: initial;
}
.rtcl.rtcl-elementor-widget .rtcl-listing-meta-data li {
  margin-left: 0;
  margin-right: 5px;
  color: var(--meta-color);
}
.rtcl.rtcl-elementor-widget .rtcl-listing-meta-data li a {
  color: inherit;
  transition: color 0.3s ease-in-out;
}
.rtcl.rtcl-elementor-widget .rtcl-listing-meta-data li a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl.rtcl-elementor-widget .rtcl-listing-meta-data li .loc-address {
  line-height: 1.5;
}
.rtcl.rtcl-elementor-widget .rtcl-listing-meta-data li > i {
  color: var(--meta-color);
  margin-right: 5px;
}
.rtcl.rtcl-elementor-widget .listing-title .rtcl-listing-badge-wrap {
  display: inline-block;
  margin: 0px;
  vertical-align: middle;
  padding-right: 0;
}
.rtcl.rtcl-elementor-widget .listing-title a {
  color: #333;
  padding-right: 10px;
}
.rtcl.rtcl-elementor-widget .listing-title a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl.rtcl-elementor-widget .pagination .page-link {
  min-width: 36px;
  text-align: center;
}
.rtcl.rtcl-elementor-widget .pagination .page-item:hover .page-link, .rtcl.rtcl-elementor-widget .pagination .page-item.active .page-link {
  background-color: var(--rtcl-primary-color);
  border-color: var(--rtcl-primary-color);
  color: #fff;
}
.rtcl.rtcl-elementor-widget .listing-thumb {
  position: relative;
  overflow: hidden;
}
.rtcl.rtcl-elementor-widget .listing-thumb a {
  width: 100%;
}
.rtcl.rtcl-elementor-widget .listing-thumb img {
  width: 100%;
}
.rtcl.rtcl-elementor-widget .listing-thumb-inner {
  position: relative;
  line-height: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-delimiter {
  margin-right: 4px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item {
  margin-bottom: 0;
  padding: 20px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item .listing-thumb {
  margin-right: 25px;
}
@media only screen and (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item .listing-thumb {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item .listing-title {
  word-break: break-word;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item .listing-title {
    margin-bottom: 5px;
  }
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item .item-content {
  padding: 0 15px 0 0;
}
@media only screen and (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item .item-content {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view .listing-item .rtcl-meta-buttons-wrap.vertical-layout {
    grid-template-columns: repeat(3, 28px);
  }
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-listing-meta-data {
  font-size: initial;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-listing-meta-data li {
  margin-right: 13px;
  margin-bottom: 5px;
  line-height: 1.4;
  display: inline;
  color: var(--meta-color);
  font-size: 15px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-short-description {
  margin-bottom: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .category {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
  margin-bottom: 5px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .category a {
  display: block;
  margin: 0;
  color: var(--meta-color);
  font-size: 15px;
  text-decoration: none;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .category a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-listing-badge-wrap {
  margin: 10px 0;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-details-button {
  color: #fff;
  background-color: var(--rtcl-primary-color);
  border-radius: 2px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  min-height: 34px;
  min-width: 90px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-details-button:hover {
  color: var(--rtcl-button-hover-color);
  background-color: #003059;
  background-color: var(--rtcl-button-hover-bg-color);
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-details-button + .rtcl-meta-buttons-withtext {
  margin-top: 10px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-meta-buttons-withtext a {
  line-height: 1.5;
  font-size: 15px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-meta-buttons-withtext .rtcl-el-button .rtcl-icon {
  margin-right: 5px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-meta-buttons-withtext .rtcl-el-button + .rtcl-el-button {
  margin-top: 5px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a {
  color: var(--rtcl-primary-color);
  background-color: var(--rtcl-black-lite);
  display: inline-block;
  border-radius: 2px;
  padding: 8px 10px;
  width: 100%;
  text-decoration: none;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a:focus, .rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a:hover {
  color: var(--rtcl-button-hover-color);
  background-color: var(--rtcl-button-hover-bg-color);
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a:focus .rtcl-icon, .rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a:hover .rtcl-icon {
  color: inherit;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a.rtcl-phone-reveal {
  color: var(--rtcl-primary-color);
  background-color: var(--rtcl-black-lite);
  flex: 1;
  display: block;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a.rtcl-phone-reveal:focus, .rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-el-button a.rtcl-phone-reveal:hover {
  color: var(--rtcl-primary-color);
  background-color: var(--rtcl-black-lite);
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-content-area {
  display: flex;
  position: relative;
  flex: 1;
}
@media (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-content-area {
    flex-wrap: wrap;
  }
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtcl-listing-title {
  font-size: 18px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-details-button {
  margin-top: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-right {
  margin: 0 20px;
  align-self: center;
  flex: 0 0 auto;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-right .rtcl-listing-meta-data {
  flex-direction: column;
  font-size: 15px;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-right .rtcl-listing-meta-data li {
  display: block;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-right .rtcl-listing-meta-data li + li {
  margin: 0;
}
@media (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view .rtin-right {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }
}
.rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .rtin-right {
  width: 210px;
  margin: 0;
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .rtin-right {
    text-align: left;
    margin-top: 20px;
    padding-left: 0px;
  }
}
.rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .item-price {
  margin-bottom: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .rtin-details-button {
  background-color: var(--rtcl-button-bg-color);
}
.rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .rtin-details-button:hover {
  background-color: var(--rtcl-button-hover-bg-color);
}
.rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .rtcl-listing-meta-data {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .rtin-right {
    margin-top: 15px;
  }
}
.rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-1-view .rtcl-short-description {
  margin-bottom: 10px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view h3.listing-title,
.rtcl.rtcl-elementor-widget .rtcl-grid-view .listing-title {
  font-weight: 700;
  margin-bottom: 5px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtcl-short-description {
  margin-bottom: 10px;
  margin-top: 10px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtcl-price-amount {
  display: inline-block;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .listing-price {
  padding: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtcl-listing-meta-data {
  margin-top: 15px;
  font-size: 15px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtcl-listing-meta-data .author {
  display: block;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtcl-listing-meta-data li + li {
  margin-left: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .category {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-top: 3px;
  display: block;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .category a {
  color: var(--meta-color);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .category a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button {
  display: inline-block;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button a {
  color: var(--rtcl-primary-color);
  background-color: var(--rtcl-black-lite);
  padding: 5px;
  display: block;
  min-width: 40px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button a:focus, .rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button a:hover {
  color: var(--rtcl-button-hover-color);
  background-color: var(--rtcl-button-hover-bg-color);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button a.rtcl-phone-reveal {
  color: var(--rtcl-primary-color);
  background-color: var(--rtcl-black-lite);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button a.rtcl-phone-reveal:focus, .rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button a.rtcl-phone-reveal:hover {
  color: var(--rtcl-primary-color);
  background-color: var(--rtcl-black-lite);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-el-button a .rtcl-icon {
  color: inherit;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .item-content {
  padding: 20px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-bottom {
  margin-bottom: 5px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-bottom .rtin-phn {
  min-width: 165px;
  text-align: left;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-bottom .rtin-el-button {
  text-align: center;
  flex: 0 0 auto;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .listing-item .listing-thumb img {
  transform: scale(1);
  transition: all 0.4s ease-out;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .listing-item:hover .listing-thumb img {
  transform: scale(1.1);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .rtin-right {
  margin-top: 15px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .button-count-4 .rtin-el-button,
.rtcl.rtcl-elementor-widget .rtcl-grid-view .button-count-3 .rtin-el-button {
  flex: 1;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view .button-count-4 .rtin-phn,
.rtcl.rtcl-elementor-widget .rtcl-grid-view .button-count-3 .rtin-phn {
  width: 100%;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .listing-item {
  transition: all 0.3s ease-out;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .listing-item img {
  transition: all 0.3s ease-out;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .listing-item:hover {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .listing-item:hover img {
  transform: scale(1.07);
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .category {
  margin-bottom: 7px;
  margin-top: 0;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .listing-title {
  vertical-align: middle;
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 700;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .rtcl-listing-meta-data {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 12px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .rtcl-price-amount {
  padding-left: 3px;
}
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .rtcl-price-type-label,
.rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-1-view .rtcl-price-unit-label {
  font-size: 90%;
}

.builder-content.content-invisible {
  visibility: hidden;
}
.builder-content .panel-block {
  padding-left: 0;
  padding-right: 0;
}
.builder-content .panel-block ul {
  margin: 0;
  padding: 0;
}
.builder-content .panel-block ul li {
  padding: 0;
}
.builder-content .panel-block .rtcl-filter-form .ui-link-tree-item {
  display: flex;
  align-items: center;
  justify-content: left;
}
.builder-content .panel-block .rtcl-filter-form .ui-link-tree-item:not(.is-opener) {
  padding: 0;
}
.builder-content .panel-block .rtcl-filter-form .ui-link-tree-item .ui-checkbox {
  position: relative;
  top: 0;
  left: 0;
  width: 20px;
  height: 14px;
}

.rtcl-categories.rtcl-categories-elementor {
  font-size: 16px;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap {
  padding-bottom: 30px;
  height: initial;
  margin-bottom: 0;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details {
  height: 100%;
  transition: 0.3s all;
  background-color: var(--rtcl-white-color);
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details.content-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details h3 a {
  text-decoration: none;
  transition: 0.3s;
  color: #111;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details h3 a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details .icon {
  line-height: 0;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details .icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rtcl-primary-color);
  transition: 0.3s;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details .icon a .rtcl-icon {
  color: var(--rtcl-primary-color);
  line-height: 0;
  transition: 0.3s;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details .image {
  margin-bottom: 15px;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details p:last-child {
  margin-bottom: 0;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details .views {
  margin-bottom: 0;
  margin-top: 8px;
  font-size: 15px;
  transition: 0.3s;
  line-height: 1;
}
.rtcl-categories.rtcl-categories-elementor .cat-item-wrap .cat-details .views + p {
  margin-bottom: 0;
  margin-top: 15px;
}
.rtcl-categories.rtcl-categories-elementor.rtcl-categories-slider .cat-item-wrap {
  height: 100%;
  padding-bottom: 0;
}

.rtcl-categories-elementor {
  --primary-color: #0066bf;
  --rtcl-white-color: #fff;
}
.rtcl-categories-elementor .rtcl-categories .cat-item-wrap {
  padding-bottom: 30px;
}
.rtcl-categories-elementor .rtcl-category-title {
  color: #010000;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
.rtcl-categories-elementor .rtin-sub-cats {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding: 20px;
}
.rtcl-categories-elementor .rtin-sub-cats li a {
  text-decoration: none;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.3;
}
.rtcl-categories-elementor.rt-el-listing-cat-box-1 .cat-item-wrap .icon {
  margin-bottom: 16px;
  transition: all 0.3s ease-out;
}
.rtcl-categories-elementor.rt-el-listing-cat-box-1 .cat-item-wrap .icon .rtcl-icon:before {
  margin: 0;
  line-height: 1;
  width: inherit;
}
.rtcl-categories-elementor.rt-el-listing-cat-box-1 .cat-item-wrap .cat-details {
  padding: 30px 25px;
  transition: all 0.5s ease-out;
  text-align: center;
}
.rtcl-categories-elementor.rt-el-listing-cat-box-1 .cat-item-wrap .cat-details .rtcl-category-title {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}
.rtcl-categories-elementor.rt-el-listing-cat-box-1 .cat-item-wrap .cat-details .views {
  margin-top: 8px;
  line-height: 1;
}
.rtcl-categories-elementor .cat-box-left-alignment .cat-details {
  text-align: left;
}
.rtcl-categories-elementor .cat-box-center-alignment .cat-details {
  text-align: center;
}
.rtcl-categories-elementor .cat-box-right-alignment .cat-details {
  text-align: right;
}

.rtcl-el-listing-location-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.rtcl-el-listing-location-box .rtin-img {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transition: all 0.3s ease-out;
  width: 100%;
  transform: scale(1);
}
.rtcl-el-listing-location-box .rtin-content {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.4s ease-in-out 0s;
  padding: 10px 0;
}
.rtcl-el-listing-location-box .rtin-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
  transition: all 0.6s ease-in-out 0s;
  padding: 0 20px;
  margin-top: 0;
}
.rtcl-el-listing-location-box .rtin-counter {
  padding: 0 20px;
}
.rtcl-el-listing-location-box.rtin-has-count .rtin-content {
  transform: translateY(43%);
}
.rtcl-el-listing-location-box.rtin-has-count:hover .rtin-content {
  transform: translateY(0px);
}
.rtcl-el-listing-location-box:hover .rtin-img {
  transform: scale(1.05);
}
.rtcl-el-listing-location-box.location-box-style-2 .rtin-content {
  color: #fff;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.4s ease-in-out 0s;
  padding: 50px 25px 25px 25px;
  transform: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.1) 7%, rgba(0, 0, 0, 0.2) 14%, rgba(0, 0, 0, 0.35) 23%, rgba(0, 0, 0, 0.66) 38%, rgba(0, 0, 0, 0.8) 48%, rgba(0, 0, 0, 0.84) 56%, rgba(0, 0, 0, 0.85) 62%, rgba(0, 0, 0, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( 					startColorstr="#0f000000", 					endColorstr="#d9000000", 					GradientType=0 				);
}
.rtcl-el-listing-location-box.location-box-style-2 .rtin-content .rtin-title {
  padding: 0;
}
.rtcl-el-listing-location-box.location-box-style-2 .rtin-counter {
  padding: 0;
}
.rtcl-el-listing-location-box.location-box-style-2:hover .rtin-content {
  padding-top: 100px;
  background: linear-gradient(to bottom, rgba(0, 102, 255, 0.07) 0%, rgba(0, 102, 255, 0.11) 7%, rgba(0, 102, 255, 0.22) 14%, rgba(0, 102, 255, 0.4) 24%, rgba(0, 102, 255, 0.72) 37%, rgba(0, 102, 255, 0.83) 43%, rgba(0, 102, 255, 0.9) 50%, rgba(0, 102, 255, 0.95) 62%, rgba(0, 102, 255, 0.93) 100%);
}

.el-all-locations {
  --rtcl-color-title: #111;
}
.el-all-locations .location-boxes {
  background-color: #fff;
  height: 100%;
  padding: 25px;
  overflow: hidden;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.el-all-locations .location-boxes a {
  text-decoration: none;
  transition: 0.3s;
}
.el-all-locations .location-boxes .rtcl-title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}
.el-all-locations .location-boxes .rtcl-title a {
  color: var(--rtcl-color-title);
}
.el-all-locations .location-boxes .rtcl-title a:hover {
  color: var(--rtcl-primary-color);
}
.el-all-locations .location-boxes .rtcl-counter {
  margin-top: 8px;
  line-height: 1;
  font-weight: normal;
}
.el-all-locations .location-boxes .rtcl-counter + .rtcl-description {
  margin-bottom: 0;
  margin-top: 14px;
  font-size: 16px;
}
.el-all-locations .location-boxes .rtin-sub-location li a,
.el-all-locations .location-boxes .location-boxes-body .rtcl-description {
  margin-bottom: 0;
  font-size: 16px;
}
.el-all-locations .location-boxes-wrapper {
  margin-bottom: 30px;
}
.el-all-locations .rtin-sub-location {
  padding: 0;
  margin-left: -10px;
  margin-bottom: 10px;
  list-style: none;
}
.el-all-locations .rtin-sub-location li i::before {
  font-weight: 600;
}
.el-all-locations .rtin-sub-location a {
  color: inherit;
}
.el-all-locations .rtin-sub-location a .rtcl-icon {
  color: inherit;
}
.el-all-locations .rtin-sub-location a:hover {
  color: var(--rtcl-primary-color);
}
.el-all-locations.grid-style-1 .location-boxes:hover {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}
.el-all-locations.grid-style-2 .location-boxes {
  padding: 0;
  text-align: left;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background-color: #fff;
  overflow: hidden;
}
.el-all-locations.grid-style-2 .location-boxes .location-boxes-header {
  padding: 20px 20px 15px 20px;
  border-bottom: 1px solid #d8d8d8;
  background: #f5f7fa;
  transition: 0.3s all;
}
.el-all-locations.grid-style-2 .location-boxes .location-boxes-body {
  list-style-type: none;
  padding: 18px 20px;
  transition: 0.3s all;
}
.el-all-locations.grid-style-2 .location-boxes .location-boxes-header,
.el-all-locations.grid-style-2 .location-boxes .location-boxes-body {
  background-size: cover;
}
.el-all-locations.list-style-1 .location-boxes {
  text-align: left;
}
.el-all-locations.list-style-1 .location-boxes:hover {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
}

.rtcl-el-listing-header-action .rtcl-el-header-btn {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}
.rtcl-el-listing-header-action .rtcl-el-header-btn li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.rtcl-el-listing-header-action .rtcl-el-header-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}
.rtcl-el-listing-header-action .rtcl-el-header-btn .count {
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 12px;
  background-color: var(--rtcl-primary-color);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}
.rtcl-el-listing-header-action .rtcl-el-header-btn .rtcl-el-add-listing-btn .rtcl-el-item-btn {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  background-color: var(--rtcl-primary-color);
  display: inline-flex;
  align-items: center;
  z-index: 2;
  padding: 0 22px 0 64px;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  width: 100%;
}
.rtcl-el-listing-header-action .rtcl-el-header-btn .rtcl-el-add-listing-btn .rtcl-el-item-btn span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42px;
  background: rgba(0, 0, 0, 0.15);
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.rtcl-elementor-widget-search {
  --search-items-gap: 15px;
  --search-placeholder-color: #878c9f;
}
.rtcl-elementor-widget-search .ws-item > label {
  display: none;
}
.rtcl-elementor-widget-search .show-field-label .ws-item > label {
  display: block;
}
.rtcl-elementor-widget-search .btn[type=submit] {
  padding: 10px 25px;
  border: none;
  background-color: var(--rtcl-primary-color);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  text-transform: uppercase;
  height: 50px;
  font-weight: 700;
  width: 100%;
}
.rtcl-elementor-widget-search .form-control {
  border: none;
  height: 50px;
  padding-left: 15px;
  color: var(--search-placeholder-color);
  font-size: 15px;
  font-weight: 400;
}
.rtcl-elementor-widget-search .form-control:focus {
  outline: none;
  box-shadow: none;
}
.rtcl-elementor-widget-search select.form-control {
  cursor: pointer;
}
.rtcl-elementor-widget-search .ws-location .rtcl-geo-address-field + .rtcl-range-slider-field {
  margin-top: 0;
}
.rtcl-elementor-widget-search .ws-location .rtcl-geo-address-field .rtcl-icon {
  right: 20px;
}
.rtcl-elementor-widget-search .rtcl-search-input-button {
  display: flex;
  align-items: center;
  background-color: #fff;
  cursor: pointer;
}
.rtcl-elementor-widget-search .rtcl-search-input-button .search-input-label {
  padding-left: 5px;
}
.rtcl-elementor-widget-search .rtc-geo-search-wrapper {
  position: relative;
}
.rtcl-elementor-widget-search .rtcl-child-terms {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  flex: 1;
}
.rtcl-elementor-widget-search .rtcl-terms {
  display: flex;
  gap: var(--search-items-gap);
  flex-wrap: wrap;
}
.rtcl-elementor-widget-search .form-control::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--search-placeholder-color);
  opacity: 1; /* Firefox */
}
.rtcl-elementor-widget-search .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--search-placeholder-color);
  opacity: 1; /* Firefox */
}
.rtcl-elementor-widget-search .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--search-placeholder-color);
}
.rtcl-elementor-widget-search .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--search-placeholder-color);
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .row {
  margin: 0;
  gap: var(--search-items-gap);
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .ws-item {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .price-field,
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .rtcl-range-slider-field,
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .rtcl-geo-address-field {
  flex: 1;
  max-width: 100%;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .rtcl-geo-address-field .rtcl-icon {
  right: 20px;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .btn[type=submit] {
  max-width: 250px;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .ws-button label {
  display: none;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .rtcl-action-buttons {
  display: flex;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .rtcl-action-buttons.button-left {
  justify-content: flex-start;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .rtcl-action-buttons.button-center {
  justify-content: center;
}
.rtcl-elementor-widget-search.rtcl-widget-search-vertical .rtcl-action-buttons.button-right {
  justify-content: flex-end;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .row {
  margin: 0;
  flex-wrap: nowrap;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .row .form-group {
  padding: 0;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .rtcl-geo-address-field .rtcl-icon {
  right: 5px;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .ws-item {
  flex: 1;
  max-width: unset;
  padding: 0;
  box-sizing: border-box;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .ws-item.ws-text {
  min-width: 260px;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .rtcl-range-slider-field,
.rtcl-elementor-widget-search.rtcl-widget-search-inline .ws-price {
  max-width: 100px;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .ws-button {
  max-width: 150px;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .ws-button label {
  visibility: hidden;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .rtcl-action-buttons {
  display: flex;
  align-items: flex-start;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .active-field-2 .ws-price {
  max-width: initial;
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .rtcl-widget-search-form .row {
  gap: var(--search-items-gap);
}
.rtcl-elementor-widget-search.rtcl-widget-search-inline .rtcl-widget-search-form .row .row .form-group {
  flex: 1;
  max-width: initial;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.rtcl-swiper-lazy-preloader .spinner {
  animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
}
.rtcl-swiper-lazy-preloader .spinner .path {
  stroke: var(--rtcl-primary-color);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

body.rtl .rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-price {
  display: flex;
}
body.rtl .rtcl-el-listing-location-box.location-box-style-2 .rtin-content {
  text-align: right;
}
body.rtl .rtcl-categories-elementor.rt-el-listing-cat-box-2 .cat-item-wrap {
  text-align: right;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-grid-view.rtcl-style-3-view i.rtcl-icon-phone {
  padding-right: 0;
  padding-left: 6px;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-listings .rtcl-meta-buttons-withtext .rtcl-text-el-button .rtcl-icon {
  margin-right: 0;
  margin-left: 5px;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-listing-meta-data li > i {
  margin-right: 0;
  margin-left: 5px;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-3-view .rtin-right {
  right: auto;
  left: -1px;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-3-view .category,
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-3-view .rtcl-listing-badge-wrap,
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-3-view .listing-title,
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-3-view .rtcl-listing-meta-data {
  padding-right: 0;
  padding-left: 100px;
}
body.rtl .rtcl .rtcl-list-view .rtcl-listing-item .item-content .rtcl-listing-meta-data li {
  margin-right: 0;
}
body.rtl .rtcl.rtcl-elementor-widget .listing-title a {
  padding-right: 0;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-3-view .item-price {
  clip-path: polygon(100% 0%, calc(100% - 20px) 50%, 100% 100%, 0 100%, 0 0);
  padding: 7px 35px 7px 15px;
}
body.rtl .el-all-locations.grid-style-2 .location-boxes {
  text-align: right;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-5-view .rtin-el-button .rtcl-icon,
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-4-view .rtin-right .rtin-el-button .rtcl-icon {
  margin-right: 0;
  margin-left: 6px;
}
body.rtl .rtcl.rtcl-elementor-widget .rtcl-list-view.rtcl-style-5-view .rtin-el-button {
  text-align: right;
}
body.rtl .rtcl.rtcl-gb-block .rtcl-gb-grid-view .listing-item .rtcl-listing-meta-data li i,
body.rtl .rtcl.rtcl-gb-block .rtcl-gb-list-view .listing-item .rtcl-listing-meta-data li i,
body.rtl .rtcl.rtcl-gb-block .rtcl-gb-list-view .listing-item .rtcl-meta-buttons-withtext .rtcl-text-gb-button .rtcl-icon {
  margin-right: 0;
  margin-left: 6px;
}
body.rtl .rtcl-gb-listing-location-box.location-box-style-2 .rtcl-gb-content {
  text-align: right;
}
body.rtl .rtcl.rtcl-gb-block .rtcl-gb-list-view.rtcl-gb-list-style-3 .item-price {
  clip-path: polygon(100% 0%, calc(100% - 20px) 50%, 100% 100%, 0 100%, 0 0);
  padding: 7px 35px 7px 15px;
  right: auto;
  left: -1px;
}
body.rtl .rtcl.rtcl-gb-block .rtcl-gb-grid-view.rtcl-gb-grid-style-5 .listing-item .listing-thumb .item-price {
  right: auto;
  left: -1px;
  clip-path: polygon(100% 0%, calc(100% - 20px) 50%, 100% 100%, 0 100%, 0 0);
  padding: 5px 27px 5px 10px;
}
body.rtl .rtcl.rtcl-gb-block .rtcl-gb-cat-wrap .rtcl-gb-cat-box.rtcl-gb-cat-box-2,
body.rtl .gb-all-locations.grid-style-2 .location-boxes {
  text-align: right;
}

.rtcl-quick-view-container .rtcl-qv-summary .rtcl-qv-title {
  font-size: 24px;
  margin-bottom: 12px;
}
.rtcl-quick-view-container .rtcl-listing-meta-data {
  font-size: 95%;
  color: #8a8a8a;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.rtcl-quick-view-container .rtcl-listing-meta-data li {
  margin-right: 15px;
}
.rtcl-quick-view-container .rtcl-listing-meta-data li a {
  color: inherit;
  transition: color 0.3s ease-in-out;
}
.rtcl-quick-view-container .rtcl-listing-meta-data li a:hover {
  color: var(--rtcl-primary-color);
}
.rtcl-quick-view-container .rtcl-qvw .rtcl-qv-price {
  font-size: 1.375rem;
  font-weight: 700;
}
.rtcl-quick-view-container .owl-carousel .owl-nav [class*=owl-] {
  background-color: var(--rtcl-primary-color);
  border-radius: 0 2px 2px 0;
  width: 40px;
  height: 40px;
  color: #fff;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  line-height: 33px;
  text-align: center;
  opacity: 1;
  font-size: 17px;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
}
.rtcl-quick-view-container .owl-carousel .owl-nav .owl-next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

.rtcl-slider.off:not(.swiper-initialized).off .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.rtcl-slider.off:not(.swiper-initialized).off .swiper-wrapper .rtcl-slider-item {
  flex: 1 1 calc(33.333% - 15px);
  margin: 0;
}
@media screen and (max-width: 500px) {
  .rtcl-slider.off:not(.swiper-initialized).off .swiper-wrapper .rtcl-slider-item {
    flex-basis: 100%;
  }
}
.rtcl-slider.off:not(.swiper-initialized).off .swiper-wrapper > .rtcl-slider-item:not(:only-child):first-child .zoomImg {
  display: none !important;
}

body.single-rtcl_listing .pswp {
  z-index: 99999;
}

.oceanwp-theme .rtcl .rtcl-btn {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 14px 20px;
}
.oceanwp-theme.rtcl-account .content-area {
  width: 100%;
  padding-right: 0;
}
.oceanwp-theme.rtcl-account .site-content {
  background-color: transparent;
}

.et_divi_theme #et-main-area .rtcl-content-wrapper .rtcl-sidebar-wrapper {
  padding-left: 0;
}
.et_divi_theme #et-main-area .rtcl-content-wrapper > #primary {
  padding-right: 0;
}
.et_divi_theme .rtcl-widget-filter-wrapper .rtcl-widget-filter-class {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.et_divi_theme #et-main-area .rtcl-listing-header {
  margin-top: 0;
}
.et_divi_theme .rtcl-widget-filter-wrapper .rtcl-widget-filter-class .rtcl-widget-heading {
  padding: 20px 0 0 20px;
}
@media screen and (max-width: 1199px) {
  .et_divi_theme .rtcl .rtcl-listings-actions {
    flex-wrap: wrap;
  }
  .et_divi_theme #et-main-area .rtcl-listing-header {
    margin-bottom: 20px;
  }
  .et_divi_theme .rtcl-listings-actions .rtcl-result-count {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .et_divi_theme #et-main-area .rtcl-content-wrapper > #primary {
    padding-left: 0;
  }
  .et_divi_theme .rtcl #et-main-area .rtcl-grid-view.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .et_divi_theme .rtcl #et-main-area .rtcl-grid-view.columns-3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .et_divi_theme #et-main-area .rtcl-content-wrapper .rtcl-sidebar-wrapper {
    margin-top: 50px;
  }
}
.et_divi_theme.single-rtcl_listing #et-main-area .rtcl-content-wrapper > #primary {
  padding-left: 0;
}
.et_divi_theme.single-rtcl_listing #et-main-area .rtcl-content-wrapper .rtcl-sidebar-wrapper {
  padding-right: 0;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .et_divi_theme.single-rtcl_listing #et-main-area .rtcl-listing-item > .row > .col-md-3 {
    order: 0;
  }
  .et_divi_theme.single-rtcl_listing #et-main-area .rtcl-listing-item > .row > div {
    flex: 100%;
    max-width: 100%;
  }
  .et_divi_theme.single-rtcl_listing #et-main-area .listing-sidebar {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .et_divi_theme.single-rtcl_listing #et-main-area .rtcl-main-content-wrapper > div {
    flex: 100%;
    max-width: 100%;
  }
  .et_divi_theme.single-rtcl_listing #et-main-area .rtcl-main-content-wrapper .single-listing-custom-fields-action {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .et_divi_theme.single-rtcl_listing #et-main-area .swiper-button-next:after,
  .et_divi_theme.single-rtcl_listing #et-main-area .swiper-button-prev:after {
    font-size: 22px;
  }
  .et_divi_theme.single-rtcl_listing #et-main-area .swiper-button-prev {
    left: 0;
  }
  .et_divi_theme.single-rtcl_listing #et-main-area .swiper-button-next {
    right: 0;
  }
}
.et_divi_theme.rtcl-account #left-area .rtcl-MyAccount-wrap ul {
  list-style-type: none;
  padding-left: 0;
}
.et_divi_theme.rtcl-account #left-area .rtcl-MyAccount-wrap .rtcl-listing-meta-data {
  padding-bottom: 10px;
}
.et_divi_theme.rtcl-account #left-area .rtcl-MyAccount-wrap .rtcl-listing-meta-data + .mb-0 {
  padding-bottom: 0;
}
.et_divi_theme.rtcl-account #left-area .rtcl-MyAccount-wrap .rtcl-chat-container ul.rtcl-messages-list .rtcl-message-wrap {
  padding: 10px 10px 0;
}
.et_divi_theme.rtcl-account #left-area .rtcl-MyAccount-wrap .rtcl .manage-listing .listing-details .rtcl-actions {
  margin: 5px 0;
}

body.ast-single-post.rtcl-form-page .entry-header, body.ast-single-post.rtcl-checkout .entry-header {
  margin: 0;
  padding: 5px 25px;
}
body.ast-single-post.rtcl-form-page .entry-header .entry-title, body.ast-single-post.rtcl-checkout .entry-header .entry-title {
  margin: 0;
  line-height: 1.4;
}
body.ast-single-post.rtcl-form-page .rtcl-notices-wrapper, body.ast-single-post.rtcl-checkout .rtcl-notices-wrapper {
  padding: 0 25px;
  margin: 10px 0;
}
body.ast-single-post.rtcl-form-page .rtcl-notices-wrapper .rtcl-message, body.ast-single-post.rtcl-checkout .rtcl-notices-wrapper .rtcl-message {
  margin-bottom: 5px;
}
