@charset "UTF-8";
/* paragraph Styling */
p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0.2px;
}

/* Button Styling*/
button.ri-button, a.ri-button, input.ri-button {
  display: block;
  position: relative;
  line-height: 40px;
  padding: 0 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.4s;
  transition: background-color 0.4s;
}
button.ri-button.srounded, a.ri-button.srounded, input.ri-button.srounded {
  border-radius: 3px;
}
button.ri-button.mrounded, a.ri-button.mrounded, input.ri-button.mrounded {
  border-radius: 5px;
}
button.ri-button.rounded, a.ri-button.rounded, input.ri-button.rounded {
  border-radius: 20px;
}
button.ri-button.blue, a.ri-button.blue, input.ri-button.blue {
  background-color: #0984e3;
  color: #fff;
}
button.ri-button.blue:hover, a.ri-button.blue:hover, input.ri-button.blue:hover {
  background-color: #0767b2;
}
button.ri-button.grey, a.ri-button.grey, input.ri-button.grey {
  background-color: #dfe4ea;
  color: #212526;
}
button.ri-button.grey:hover, a.ri-button.grey:hover, input.ri-button.grey:hover {
  background-color: #c0cad6;
}
button.ri-button.yellow, a.ri-button.yellow, input.ri-button.yellow {
  background-color: #fdcb6e;
  color: #212526;
}
button.ri-button.yellow:hover, a.ri-button.yellow:hover, input.ri-button.yellow:hover {
  background-color: #fcb93c;
}
button.ri-button.red, a.ri-button.red, input.ri-button.red {
  background-color: #d63031;
  color: #fff;
}
button.ri-button.red:hover, a.ri-button.red:hover, input.ri-button.red:hover {
  background-color: #b02324;
}
button.ri-button.green, a.ri-button.green, input.ri-button.green {
  background-color: #00b894;
  color: #fff;
}
button.ri-button.green:hover, a.ri-button.green:hover, input.ri-button.green:hover {
  background-color: #00856b;
}
button.ri-button.inline, a.ri-button.inline, input.ri-button.inline {
  display: inline-block;
}
button.ri-button.center, a.ri-button.center, input.ri-button.center {
  margin: 0 auto;
}
button.ri-button.full, a.ri-button.full, input.ri-button.full {
  width: 100%;
}
button.ri-button:disabled, a.ri-button:disabled, input.ri-button:disabled {
  background-color: #b2bec3;
  color: #636e72;
  cursor: default;
  font-weight: 400;
}
button.ri-button:disabled:hover, a.ri-button:disabled:hover, input.ri-button:disabled:hover {
  background-color: #b2bec3;
  color: #636e72;
}

button.ri-pointer, a.ri-pointer, div.ri-pointer, span.ri-pointer, i.ri-pointer {
  cursor: pointer;
  transition: all 0.5s;
}
button.ri-pointer.linkblue:hover, a.ri-pointer.linkblue:hover, div.ri-pointer.linkblue:hover, span.ri-pointer.linkblue:hover, i.ri-pointer.linkblue:hover {
  color: #0984e3;
}
button.ri-pointer.linkyellow:hover, a.ri-pointer.linkyellow:hover, div.ri-pointer.linkyellow:hover, span.ri-pointer.linkyellow:hover, i.ri-pointer.linkyellow:hover {
  color: #fdcb6e;
}
button.ri-pointer.linkfade:hover, a.ri-pointer.linkfade:hover, div.ri-pointer.linkfade:hover, span.ri-pointer.linkfade:hover, i.ri-pointer.linkfade:hover {
  opacity: 0.7;
}

/* form group */
.ri-form-group {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  /* .daterange
  {
  	display: block;
  	position: relative;
  	background-color: #ffffff;
  	width: 100%;
  	padding: 0 10px;
  	box-sizing: border-box;
  	border: none;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	white-space: nowrap;
  	line-height: 38px;
  	cursor: pointer;
  } */
}
.ri-form-group.no-margin {
  margin-bottom: 0;
}
.ri-form-group:last-child {
  margin-bottom: 0;
}
.ri-form-group .title {
  display: block;
  position: relative;
  font-size: 12px;
  color: #212526;
  margin-bottom: 8px;
}
.ri-form-group .basic, .ri-form-group .valued, .ri-form-group .area {
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #dfe4ea;
  box-sizing: border-box;
  border-radius: 3px;
}
.ri-form-group .basic, .ri-form-group .valued {
  height: 40px;
}
.ri-form-group .basic.rounded {
  border-radius: 20px;
}
.ri-form-group .basic.rounded input, .ri-form-group .basic.rounded select {
  border-radius: 20px;
}
.ri-form-group .valued {
  display: flex;
}
.ri-form-group .valued .val {
  display: block;
  position: relative;
  line-height: 40px;
  padding: 0 10px;
  color: #212526;
  font-weight: 500;
  border-right: 1px solid #dfe4ea;
}
.ri-form-group .valued .val.r-val {
  border-right: none;
  border-left: 1px solid #dfe4ea;
}
.ri-form-group .valued .val.passwordvisibility {
  cursor: pointer;
}
.ri-form-group .valued .val.passwordvisibility i {
  opacity: 0.4;
}
.ri-form-group .valued .val.passwordvisibility i.visible {
  opacity: 1;
}
.ri-form-group .valued .field {
  flex: 1;
  height: 40px;
}
.ri-form-group .multi-row {
  display: flex;
}
.ri-form-group .multi-row .basic, .ri-form-group .multi-row .valued, .ri-form-group .multi-row .area {
  flex: 1;
  margin-right: 5px;
}
.ri-form-group .multi-row .basic.phonebook, .ri-form-group .multi-row .valued.phonebook, .ri-form-group .multi-row .area.phonebook {
  flex: inherit;
  width: 120px;
}
.ri-form-group .multi-row .basic:last-child, .ri-form-group .multi-row .valued:last-child, .ri-form-group .multi-row .area:last-child {
  margin-right: 0;
}
.ri-form-group input, .ri-form-group select, .ri-form-group textarea {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  box-sizing: border-box;
  background-color: transparent;
  color: #212526;
}
.ri-form-group input:focus, .ri-form-group select:focus, .ri-form-group textarea:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.02);
}
.ri-form-group input, .ri-form-group select {
  height: 38px;
}
.ri-form-group textarea {
  height: auto;
  min-height: 100px;
  padding: 10px;
  resize: none;
}
.ri-form-group input {
  padding: 0 10px;
}
.ri-form-group input::placeholder, .ri-form-group textarea::placeholder {
  color: #b2bec3;
  font-style: italic;
  font-size: 12px;
}
.ri-form-group input::-ms-input-placeholder, .ri-form-group textarea::-ms-input-placeholder {
  color: #b2bec3;
  font-style: italic;
  font-size: 12px;
}
.ri-form-group input::-ms-input-placeholder, .ri-form-group textarea::-ms-input-placeholder {
  color: #b2bec3;
  font-style: italic;
  font-size: 12px;
}
.ri-form-group select {
  padding: 0 6px;
  cursor: pointer;
}
.ri-form-group .inputfile {
  display: block;
  position: relative;
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  border: none;
  overflow: hidden;
  height: 38px;
  cursor: pointer;
}
.ri-form-group .inputfile .messagefield {
  position: absolute;
  width: 100%;
  line-height: 38px;
  left: 0;
  top: 0;
  font-size: 12px;
  color: #212526;
  padding: 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 0;
}
.ri-form-group .inputfile .browsebutton {
  position: absolute;
  width: auto;
  line-height: 38px;
  right: 0;
  top: 0;
  background-color: #f7f8fa;
  border-left: 1px solid #f0f2f3;
  font-size: 12px;
  color: #636e72;
  font-weight: 500;
  padding: 0 10px;
  box-sizing: border-box;
  z-index: 1;
}
.ri-form-group .inputfile input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 38px;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
}
.ri-form-group .option-button {
  display: block;
  position: relative;
}
.ri-form-group .option-button input {
  display: none;
}
.ri-form-group .option-button label {
  display: flex;
  position: relative;
  cursor: pointer;
}
.ri-form-group .option-button label span.outer {
  display: block;
  position: relative;
  align-self: center;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border: 1px solid #b2bec3;
  border-radius: 50%;
  padding: 3px;
  transition: all 0.3s;
}
.ri-form-group .option-button label span.outer span.inner {
  display: block;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #dfe4ea;
  transition: all 0.3s;
}
.ri-form-group .option-button label span.text {
  display: block;
  position: relative;
  flex: 1;
  min-width: 1px;
  align-self: center;
  padding-left: 5px;
}
.ri-form-group .option-button.inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.ri-form-group .option-button input:checked + label .outer {
  border-color: #74b9ff;
}
.ri-form-group .option-button input:checked + label .outer .inner {
  background-color: #0984e3;
}
.ri-form-group .checkbox {
  display: block;
  position: relative;
}
.ri-form-group .checkbox input {
  display: none;
}
.ri-form-group .checkbox label {
  display: flex;
  position: relative;
  cursor: pointer;
}
.ri-form-group .checkbox label span.outer {
  display: block;
  position: relative;
  align-self: center;
  width: 10px;
  height: 10px;
  background-color: #f0f2f3;
  border: 1px solid #b2bec3;
  padding: 2px;
  border-radius: 3px;
  transition: all 0.3s;
}
.ri-form-group .checkbox label span.outer i {
  position: absolute;
  color: #0984e3;
  font-size: 8px;
  left: 3px;
  top: 3px;
  opacity: 0;
  transition: all 0.3s;
}
.ri-form-group .checkbox label span.text {
  display: block;
  position: relative;
  flex: 1;
  min-width: 1px;
  align-self: center;
  padding-left: 5px;
}
.ri-form-group .checkbox.inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.ri-form-group .checkbox input:checked + label .outer {
  background-color: #fff;
  border-color: #74b9ff;
}
.ri-form-group .checkbox input:checked + label .outer i {
  opacity: 1;
}
.ri-form-group .switch {
  display: block;
  position: relative;
}
.ri-form-group .switch input {
  display: none;
}
.ri-form-group .switch label {
  display: flex;
  position: relative;
  cursor: pointer;
}
.ri-form-group .switch label span.capsule {
  display: block;
  position: relative;
  cursor: pointer;
  align-self: center;
  z-index: 1;
  width: 36px;
  height: 16px;
  border-radius: 20px;
  background-color: #b2bec3;
}
.ri-form-group .switch label span.capsule .ball {
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.2s;
}
.ri-form-group .switch label span.text {
  display: block;
  position: relative;
  flex: 1;
  min-width: 1px;
  align-self: center;
  padding-left: 5px;
}
.ri-form-group .switch.inline {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.ri-form-group .switch input:checked ~ label .capsule {
  background-color: #0984e3;
}
.ri-form-group .switch input:checked ~ label .capsule .ball {
  left: 22px;
}
.ri-form-group .option-image {
  display: block;
  position: relative;
}
.ri-form-group .option-image input {
  display: none;
}
.ri-form-group .option-image label {
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.ri-form-group .option-image label img {
  width: 100%;
  max-width: 40px;
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.3s;
}
.ri-form-group .option-image.inline {
  display: inline-block;
}
.ri-form-group .option-image input:checked + label img {
  opacity: 1;
  transform: scale(1);
}

/* tooltip */
.ri-tooltip {
  position: relative;
  white-space: nowrap;
}
.ri-tooltip:focus {
  outline: none;
}
.ri-tooltip .tooltip {
  visibility: hidden;
  width: auto;
  line-height: normal !important;
  height: auto !important;
  color: #fff;
  background-color: #6c5ce7;
  font-size: 12px;
  padding: 5px;
  border-radius: 2px;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}
.ri-tooltip .tooltip:after {
  content: " ";
  position: absolute;
  border-width: 5px;
  border-style: solid;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-color: transparent transparent #6c5ce7 transparent;
}
.ri-tooltip .tooltip:focus {
  outline: none;
}
.ri-tooltip .tooltip.left {
  left: auto;
  top: 50%;
  right: 115%;
  transform: translateY(-50%);
}
.ri-tooltip .tooltip.left:after {
  bottom: auto;
  margin-left: auto;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-color: transparent transparent transparent #6c5ce7;
}
.ri-tooltip .tooltip.top {
  top: auto;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.ri-tooltip .tooltip.top:after {
  bottom: auto;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-color: #6c5ce7 transparent transparent transparent;
}
.ri-tooltip .tooltip.right {
  top: 50%;
  left: 115%;
  transform: translateY(-50%);
}
.ri-tooltip .tooltip.right:after {
  bottom: auto;
  margin-left: auto;
  left: auto;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-color: transparent #6c5ce7 transparent transparent;
}

/* tooltip hover */
.ri-tooltip:hover .tooltip {
  visibility: visible;
}

/*sidemenu*/
.ri-sidemenu {
  display: block;
  position: relative;
  width: 100%;
}
.ri-sidemenu li {
  display: block;
  position: relative;
  margin-left: -20px;
  list-style-type: none;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  border-bottom: 1px solid #f0f2f3;
}
.ri-sidemenu li a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #000;
  padding: 0 30px 0 45px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ri-sidemenu li a i {
  position: absolute;
  left: 20px;
  top: 19px;
}
.ri-sidemenu li a i.arrow {
  font-size: 8px;
  top: 22px;
  right: 10px;
  left: inherit;
}
.ri-sidemenu li:last-child {
  border: none;
}
.ri-sidemenu li:hover > a {
  color: #3C94EA;
}
.ri-sidemenu li.highlight {
  background-color: rgba(60, 148, 234, 0.11);
  box-shadow: inset 5px 0 0 #3C94EA;
}
.ri-sidemenu li.highlight a i:first-child {
  color: #3C94EA;
}
.ri-sidemenu ul {
  margin-left: -20px;
}
.ri-sidemenu ul li ul {
  display: none;
  background-color: #fbfbfb;
}
.ri-sidemenu ul li ul li {
  border-bottom: none;
}
.ri-sidemenu ul li ul li a i {
  font-size: 8px;
  top: 21px;
  left: 24px;
}
.ri-sidemenu ul li ul li a i.arrow {
  font-size: 8px;
  top: 22px;
  left: inherit;
  right: 10px;
}
.ri-sidemenu ul li ul li ul {
  background-color: #f0f2f3;
}

/* Notification */
.ri-notification {
  display: block;
  position: relative;
  width: 100%;
}
.ri-notification button {
  display: block;
  position: relative;
  padding: 0;
  background-color: 0;
  border: none;
  color: #e17055;
  background-color: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.4s;
}
.ri-notification button:hover {
  color: #b13b1f;
}
.ri-notification .header {
  display: flex;
  position: relative;
  border-bottom: 1px solid #f7f8fa;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.ri-notification .header .title {
  display: block;
  position: relative;
  flex: 1;
  align-self: center;
}
.ri-notification .header .title h4 {
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.ri-notification .header .arrow {
  display: block;
  position: relative;
  flex: inherit;
  align-self: center;
  cursor: pointer;
  padding-right: 5px;
  padding-left: 0px;
  transition: padding-right 0.4s, padding-left 0.4s;
}
.ri-notification .header .arrow:hover {
  padding-right: 0px;
  padding-left: 5px;
  color: #0984e3;
}
.ri-notification .section {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
.ri-notification .section:last-child {
  margin-bottom: 0;
}
.ri-notification .section .subtitle-flex {
  display: flex;
  position: relative;
}
.ri-notification .section .subtitle-flex .box {
  display: block;
  position: relative;
  flex: 1;
  align-self: center;
  color: #b2bec3;
  font-size: 12px;
}
.ri-notification .section .subtitle-flex .box.block {
  flex: inherit;
}
.ri-notification .section .subtitle-flex .box button {
  color: #0984e3;
}
.ri-notification .section .subtitle-flex .box button:hover {
  color: #054b81;
}
.ri-notification .section .card-block {
  display: block;
  position: relative;
}
.ri-notification .section .card-block a.flexcard {
  transition: transform 0.4s;
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  margin-top: 10px;
  box-sizing: border-box;
  border: 1px solid #dfe4ea;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
}
.ri-notification .section .card-block a.flexcard:hover {
  transform: rotate3d(1, 1, 1, 1deg);
}
.ri-notification .section .card-block a.flexcard.new {
  background-color: rgba(0, 127, 255, 0.05);
  border: 1px solid #bbddff;
}
.ri-notification .section .card-block a.flexcard img {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.ri-notification .section .card-block a.flexcard .box {
  display: block;
  position: relative;
  flex: 1;
  padding-left: 15px;
}
.ri-notification .section .card-block a.flexcard .box h4 {
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 14px;
}
.ri-notification .section .card-block a.flexcard .box h4 span {
  font-weight: 700;
}
.ri-notification .section .card-block a.flexcard .box p {
  padding: 0;
  margin: 0;
  margin-top: 10px;
  font-size: 11px;
  line-height: 20px;
  color: #636e72;
}
.ri-notification .section .card-block a.flexcard .box p span {
  font-weight: 700;
}
.ri-notification .section .card-block a.flexcard .box .time {
  display: block;
  position: relative;
  font-size: 11px;
  color: #b2bec3;
  margin-top: 10px;
}
.ri-notification .section .card-block a.load-more {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  font-size: 12px;
  color: #b2bec3;
  transition: color 0.4s;
  cursor: pointer;
}
.ri-notification .section .card-block a.load-more:hover {
  color: #000;
}

/* modal body */
.ri-modal {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: auto;
}
.ri-modal .container {
  display: table;
  table-layout: fixed;
  position: relative;
  width: 100%;
  height: 100%;
}
.ri-modal .container > .center {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 20px;
}
.ri-modal .container > .center .back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  -webkit-animation-name: modalfading;
  -webkit-animation-duration: 0.7s;
  animation-name: modalfading;
  animation-duration: 0.7s;
}
.ri-modal .container > .center .content {
  display: inline-block;
  position: relative;
  text-align: left;
  width: 100%;
  height: auto;
  background-color: #fff;
  z-index: 2;
  border-radius: 5px;
  -webkit-animation-name: modalfall;
  -webkit-animation-duration: 0.7s;
  animation-name: modalfall;
  animation-duration: 0.7s;
}
.ri-modal .container > .center .content .header {
  display: flex;
  position: relative;
  width: 100%;
  height: 50px;
  background-color: #364246;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.ri-modal .container > .center .content .header .title {
  flex: 1;
  align-self: center;
  padding: 0 20px;
  font-size: 18px;
  color: #fff;
}
.ri-modal .container > .center .content .header .title.center {
  text-align: center;
}
.ri-modal .container > .center .content .header .close {
  display: block;
  line-height: 50px;
  background-color: #333a3c;
  align-self: center;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.4s;
  border-top-right-radius: 5px;
}
.ri-modal .container > .center .content .header .close a {
  color: #fff;
  font-weight: 600;
}
.ri-modal .container > .center .content .header .close:hover {
  background-color: #d63031;
}
.ri-modal .container > .center .content > .body {
  display: block;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}
.ri-modal .container > .center .content.xlarge {
  max-width: 980px;
}
.ri-modal .container > .center .content.large {
  max-width: 800px;
}
.ri-modal .container > .center .content.medium {
  max-width: 600px;
}
.ri-modal .container > .center .content.small {
  max-width: 480px;
}

/* modal animation */
@-webkit-keyframes modalfading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modalfading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modalfall {
  0% {
    top: -300px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@keyframes modalfall {
  0% {
    top: -300px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
/* Accordion */
.ri-accordion > .accordion-item {
  display: block;
  position: relative;
  width: 100%;
}
.ri-accordion > .accordion-item > a.heading {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 3rem 1rem 1rem;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border-bottom: 1px solid #e5e5e5;
}
.ri-accordion > .accordion-item > a.heading:hover {
  cursor: pointer;
}
.ri-accordion > .accordion-item > a.heading:hover::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.ri-accordion > .accordion-item > a.heading::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  float: right;
  right: 15px;
  font-size: 10px;
  line-height: 20px;
  color: #7288a2;
  padding: 2px;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #7288a2;
  text-align: center;
  margin-left: 15px;
}
.ri-accordion > .accordion-item > a.heading.active {
  color: #03b5d2;
  border-bottom: 1px solid #03b5d2;
}
.ri-accordion > .accordion-item > a.heading.active::after {
  font-family: "Font Awesome 5 Free";
  content: "";
  color: #03b5d2;
  border: 1px solid #03b5d2;
}
.ri-accordion > .accordion-item > .content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  clear: both;
  -webkit-transition: all 0.2s ease 0.15s;
  -o-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
}
.ri-accordion > .accordion-item > .content.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease 0.15s;
  -o-transition: all 0.35s ease 0.15s;
  transition: all 0.35s ease 0.15s;
}
.ri-accordion > .accordion-item > .content p {
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

/* photogallery */
.ri-photogallery {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px;
  border: 1px solid #dfe4ea;
  border-radius: 10px;
  background-color: #fff;
  box-sizing: border-box;
}
.ri-photogallery .toolbarflex {
  display: flex;
  position: relative;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dfe4ea;
}
.ri-photogallery .toolbarflex .box {
  display: block;
  position: relative;
  flex: 1;
  align-self: center;
}
.ri-photogallery .toolbarflex .box h4 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 17px;
}
.ri-photogallery .toolbarflex .box:nth-child(2) {
  flex: inherit;
  padding-left: 10px;
}
.ri-photogallery .toolbarflex .box .uploadphotobtn {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 140px;
  height: 40px;
  cursor: pointer;
}
.ri-photogallery .toolbarflex .box .uploadphotobtn:hover > .label {
  background-color: #d0d7e0;
}
.ri-photogallery .toolbarflex .box .uploadphotobtn .label {
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: 0;
  line-height: 40px;
  background-color: #dfe4ea;
  border-radius: 3px;
  font-size: 13px;
  color: #000;
  text-align: center;
  z-index: 0;
  cursor: pointer;
  transition: background-color 0.4s;
}
.ri-photogallery .toolbarflex .box .uploadphotobtn input {
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.ri-photogallery .collectionblock {
  display: inline-block;
  position: relative;
  width: 100%;
}
.ri-photogallery .collectionblock .item {
  float: left;
  display: block;
  position: relative;
  width: calc(100% / 4 - 10px);
  height: 150px;
  margin: 5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}
.ri-photogallery .collectionblock .item img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.ri-photogallery .collectionblock .item .sidebar {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 150px;
  opacity: 0.7;
  transition: opacity 0.4s;
  z-index: 2;
}
.ri-photogallery .collectionblock .item .sidebar a.action {
  display: block;
  position: relative;
  width: 50px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s;
  cursor: pointer;
  text-decoration: none;
}
.ri-photogallery .collectionblock .item .sidebar a.action i {
  color: #ffffff;
}
.ri-photogallery .collectionblock .item .sidebar a.action:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.ri-photogallery .collectionblock .item:hover > .sidebar {
  opacity: 1;
}
.ri-photogallery .collectionblock .item:hover > .sidebar .action {
  background-color: rgba(0, 0, 0, 0.2);
}

.ri-lightbox {
  display: none;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.ri-lightbox .table {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.ri-lightbox .table .cell {
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  padding: 20px 70px;
}
.ri-lightbox .table .cell button {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  left: 10px;
  top: 50%;
  margin-top: -25px;
  padding: 0;
  border: none;
  text-align: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.4s;
  cursor: pointer;
  z-index: 3;
}
.ri-lightbox .table .cell button i {
  font-size: 30px;
}
.ri-lightbox .table .cell button:nth-child(2) {
  left: inherit;
  right: 10px;
}
.ri-lightbox .table .cell button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.ri-lightbox .table .cell .overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.ri-lightbox .table .content {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 800px;
}
.ri-lightbox .table .content .slides {
  display: none;
  position: relative;
  width: 100%;
}
.ri-lightbox .table .content .slides img {
  display: block;
  position: relative;
  width: 100%;
}
.ri-lightbox .table .content .slides .caption {
  display: block;
  position: relative;
  margin-top: 10px;
  color: #fff;
  text-align: left;
}

@media (max-width: 767px) {
  .ri-photogallery .toolbarflex {
    display: block;
  }
  .ri-photogallery .toolbarflex .box {
    flex: inherit;
  }
  .ri-photogallery .toolbarflex .box:nth-child(2) {
    margin-top: 10px;
    padding-left: 0;
  }
  .ri-photogallery .collectionblock .item {
    width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 479px) {
  .ri-photogallery .toolbarflex .box .uploadphotobtn {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .ri-photogallery .toolbarflex .box .uploadphotobtn:nth-child(2) {
    margin-top: 5px;
  }
  .ri-photogallery .collectionblock .item {
    width: 100%;
  }
}
/* step progress */
/*stepi*/
ul.ri-stepprogress {
  counter-reset: step;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0;
  margin: auto;
  text-align: center;
}
ul.ri-stepprogress li {
  display: block;
  position: relative;
  width: 100%;
  list-style-type: none;
  line-height: normal;
}
ul.ri-stepprogress li:before {
  display: block;
  position: relative;
  width: 41px;
  line-height: 41px;
  color: transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  margin: 0 auto;
  border-radius: 50%;
  content: counter(step);
  counter-increment: step;
  z-index: 2;
}
ul.ri-stepprogress li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: -50%;
  top: 20px;
  z-index: 1;
}
ul.ri-stepprogress li:first-child:after {
  content: none;
}
ul.ri-stepprogress li.complete:before {
  background: #11998e;
  background: -webkit-linear-gradient(to right, #2cc465, #11998e);
  background: linear-gradient(to right, #2cc465, #11998e);
  box-shadow: 0 0 0 3px rgba(17, 153, 142, 0.2);
}
ul.ri-stepprogress li.complete:after {
  background: #11998e;
  background: -webkit-linear-gradient(to left, #2cc465, #11998e);
  background: linear-gradient(to left, #2cc465, #11998e);
}
ul.ri-stepprogress li.undone:before {
  background: #b2bec3;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
ul.ri-stepprogress li.undone:after {
  background: #b2bec3;
}
ul.ri-stepprogress li.process:before {
  background: #1e3c72;
  background: -webkit-linear-gradient(to right, #543ecf, #1e3c72);
  background: linear-gradient(to right, #543ecf, #1e3c72);
  box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.2);
  -webkit-animation-name: statusprocess;
  -webkit-animation-duration: 1500ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: statusprocess;
  -moz-animation-duration: 1500ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: statusprocess;
  -ms-animation-duration: 1500ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
ul.ri-stepprogress li.process:after {
  background: #543ecf;
  background: -webkit-linear-gradient(to right, #11998e, #543ecf);
  background: linear-gradient(to right, #11998e, #543ecf);
}
ul.ri-stepprogress li.process i {
  -webkit-animation-name: statusrotating;
  -webkit-animation-duration: 3000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: statusrotating;
  -moz-animation-duration: 3000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: statusrotating;
  -ms-animation-duration: 3000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-transition: rotate(3600deg);
}
ul.ri-stepprogress li.failed:before {
  background: #FF416C;
  background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
  background: linear-gradient(to right, #FF4B2B, #FF416C);
  box-shadow: 0 0 0 3px rgba(255, 65, 108, 0.2);
}
ul.ri-stepprogress li.failed:after {
  background: #FF4B2B;
  background: -webkit-linear-gradient(to right, #11998e, #FF4B2B);
  background: linear-gradient(to right, #11998e, #FF4B2B);
}
ul.ri-stepprogress li .image {
  width: 41px;
  height: 41px;
  position: absolute;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 14px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  line-height: 41px;
  text-align: center;
  color: #ffffff;
}
ul.ri-stepprogress li .status {
  display: block;
  position: relative;
  padding: 10px;
  margin-top: 12px;
}
ul.ri-stepprogress li .status > span {
  display: block;
  position: relative;
  margin-bottom: 5px;
}
ul.ri-stepprogress li .status > span:last-child {
  margin-bottom: 0;
}
ul.ri-stepprogress li .status > span.time {
  font-size: 10px;
  color: #b2bec3;
  font-weight: 400;
}
ul.ri-stepprogress li .status > span.title {
  font-size: 12px;
  color: #000;
  font-weight: 500;
}
ul.ri-stepprogress li .status .sle {
  display: inline-block;
  position: relative;
  padding: 7px 12px;
  background-color: #fff;
  border-radius: 3px;
  box-sizing: border-box;
  -webkit-box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
}
ul.ri-stepprogress li .status .sle span {
  display: inline-block;
  position: relative;
  font-size: 11px;
}
ul.ri-stepprogress li .status .sle span sup {
  font-size: 8px;
  color: #b2bec3;
  padding-left: 1px;
  padding-right: 3px;
}
ul.ri-stepprogress li.undone .status .sle {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
ul.ri-stepprogress li.late .status .sle {
  color: #FF416C;
}
ul.ri-stepprogress li.late .status .sle sup {
  color: #FF416C;
}

@-webkit-keyframes statusprocess {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 60, 114, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(30, 60, 114, 0);
  }
}
@keyframes statusprocess {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 60, 114, 0.3);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(30, 60, 114, 0);
  }
}
@-webkit-keyframes statusrotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes statusrotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*jpages*/
.ri-jpages .jpages-pagination {
  display: block;
  position: relative;
  margin-top: 40px;
}
.ri-jpages .jpages-pagination .jpages-wrapper {
  display: inline-block;
  position: relative;
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  border-radius: 3px;
  background-color: #ffffff;
  border: 1px solid #dfe4ea;
  margin-right: 20px;
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder a {
  display: block;
  position: relative;
  float: left;
  padding: 0 15px;
  line-height: 40px;
  font-size: 12px;
  color: #364246;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.4s;
  text-decoration: none;
  /* &.jp-previous
  {
  	margin-right: 0;
  }
  &.jp-next
  {
  	margin-left: 0;
  } */
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder a:hover {
  background-color: #f0f2f3;
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder a.jp-current {
  background-color: #dfe4ea;
  cursor: default;
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder a.jp-current:hover {
  background-color: #dfe4ea;
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder a.jp-disabled {
  color: #b2bec3;
  cursor: default;
  background: none;
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder a.jp-disabled:hover {
  color: #b2bec3;
  cursor: default;
  background: none;
}
.ri-jpages .jpages-pagination .jpages-wrapper .holder span {
  display: block;
  position: relative;
  float: left;
  padding: 0 10px;
  line-height: 40px;
  font-size: 12px;
  color: #b2bec3;
  cursor: default;
  align-self: center;
  transition: background-color 0.4s;
}
.ri-jpages .jpages-pagination .jpages-wrapper .callback {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  line-height: 40px;
  color: #b2bec3;
}
.ri-jpages .jpages-pagination.center {
  text-align: center;
}
.ri-jpages .jpages-pagination.center .callback {
  display: block;
  text-align: center;
}
.ri-jpages .jpages-pagination.center .holder {
  margin-left: 0;
  margin-right: 0;
}
.ri-jpages .jpages-pagination.right {
  text-align: right;
}
.ri-jpages .jpages-pagination.right .holder {
  margin-left: 20px;
}

/* File Uploader */
/* input */
.ri-fileuploader {
  display: block;
  position: relative;
}
.ri-fileuploader .fileuploader-theme-dragdrop .fileuploader-input {
  display: block;
  position: relative;
  padding: 15px 0;
  background: #fff;
  border: 2px dashed #dfe4ea;
  border-radius: 5px;
  text-align: center;
}
.ri-fileuploader .fileuploader-theme-dragdrop .fileuploader-input .fileuploader-input-inner {
  transition: opacity 0.4s;
}
.ri-fileuploader .fileuploader-theme-dragdrop .fileuploader-input h4 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: normal;
  color: #212526;
  white-space: normal;
}
.ri-fileuploader .fileuploader-theme-dragdrop .fileuploader-input.fileuploader-dragging .fileuploader-input-inner {
  opacity: 0.4;
}
.ri-fileuploader .fileuploader-theme-dragdrop .fileuploader-pending-loader .right-half {
  background: #6381E6;
}
.ri-fileuploader .fileuploader-theme-dragdrop .fileuploader-pending-loader .spinner {
  background: #6381E6;
}
.ri-fileuploader .fileuploader-theme-dragdrop.fileuploader-is-uploading .fileuploader-input-caption:after {
  display: none;
}

/* Wizard Step */
.ri-wizard {
  /* .loading
  {
      .spinner
      {

      }
  } */
}
.ri-wizard > .steps {
  display: block;
  position: relative;
  width: 100%;
}
.ri-wizard > .steps .current-info {
  display: none;
}
.ri-wizard > .steps > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.ri-wizard > .steps > ul > li {
  display: block;
  position: relative;
  width: calc(100% / 5 - 5px);
  list-style: none;
  padding-right: 5px;
  padding-bottom: 5px;
}
.ri-wizard > .steps > ul > li a {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  padding: 0 15px;
  border-radius: 3px;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ri-wizard > .steps .disabled a {
  background: #f0f2f3;
  color: #636e72;
  cursor: default;
}
.ri-wizard > .steps .current a {
  background: #005291;
  color: #ffffff;
  cursor: default;
}
.ri-wizard > .steps .done a {
  background: #00cec9;
  color: #fff;
  transition: background 0.4s;
}
.ri-wizard > .steps .done a:hover, .ri-wizard > .steps .done a:active {
  background: #00b5b0;
  color: #fff;
}
.ri-wizard > .steps .error a {
  background: #d63031;
  color: #fff;
}
.ri-wizard .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
  margin-top: 5px;
}
.ri-wizard .actions > ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  text-align: right;
}
.ri-wizard .actions > ul > li {
  float: left;
  padding-left: 5px;
  list-style: none;
}
.ri-wizard .actions a {
  display: block;
  position: relative;
  background: #00b894;
  color: #fff;
  min-width: 100px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #00b894;
  cursor: pointer;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
  transition: background 0.4s, border 0.4s;
}
.ri-wizard .actions a:hover, .ri-wizard .actions a:active {
  background: #00856b;
  border: 1px solid #00856b;
}
.ri-wizard .actions .disabled a {
  background: transparent;
  color: #00b894;
  border: 1px solid #00b894;
  transition: background 0.4s;
}
.ri-wizard .actions .disabled a:hover, .ri-wizard .actions .disabled a:active {
  background: #fbfbfb;
}
.ri-wizard > .content {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  border: 1px solid #dfe4ea;
  box-sizing: border-box;
  border-radius: 3px;
}
.ri-wizard > .content > .title {
  display: none;
}
.ri-wizard > .content > .body {
  display: block;
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.ri-wizard > .content > .body p {
  font-size: 14px;
}
.ri-wizard > .content > .body ul {
  list-style: disc !important;
}
.ri-wizard > .content > .body ul > li {
  display: list-item;
}
.ri-wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}
.ri-wizard > .content > .body input {
  display: block;
  border: 1px solid #ccc;
}
.ri-wizard > .content > .body input[type=checkbox] {
  display: inline-block;
}
.ri-wizard > .content > .body input.error {
  background: #fbe3e4;
  border: 1px solid #fbc2c4;
  color: #8a1f11;
}
.ri-wizard > .content > .body label {
  display: inline-block;
  margin-bottom: 0.5em;
}
.ri-wizard > .content > .body label.error {
  color: #8a1f11;
  display: inline-block;
  margin-left: 1.5em;
}
.ri-wizard.vertical > .steps {
  display: inline;
  float: left;
  width: 30%;
}
.ri-wizard.vertical > .steps ul li {
  float: none;
  width: 100%;
}
.ri-wizard.vertical > .content {
  display: inline;
  float: left;
  margin: 0 2.5% 0.5em 2.5%;
  width: 65%;
}
.ri-wizard.vertical > .actions {
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%;
}
.ri-wizard.vertical > .actions ul li {
  margin: 0 0 0 1em;
}
.ri-wizard .step-section {
  background: #F9F9F9;
  padding: 25px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.ri-wizard .step-section input[type=text], .ri-wizard .step-section input[type=email], .ri-wizard .step-section input[type=tel], .ri-wizard .step-section input[type=url] {
  font: 400 12px/16px;
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}
.ri-wizard .step-section input[type=text]:hover, .ri-wizard .step-section input[type=email]:hover, .ri-wizard .step-section input[type=tel]:hover, .ri-wizard .step-section input[type=url]:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}
.ri-wizard .step-section textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  height: 100px;
  max-width: 100%;
  resize: none;
}
.ri-wizard .step-section textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}
.ri-wizard .step-section button[type=submit] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4CAF50;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}
.ri-wizard .step-section button[type=submit]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.ri-wizard .step-section button[type=submit]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
.ri-wizard .step-section textarea, .ri-wizard .step-section button[type=submit] {
  font: 400 12px/16px;
}
.ri-wizard .step-section h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}
.ri-wizard .step-section h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}
.ri-wizard .step-section input:focus, .ri-wizard .step-section textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}
.ri-wizard fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

/*signature*/
.ri-signature {
  display: block;
  position: relative;
  text-align: center;
}
.ri-signature .pad {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 600px;
  font-size: 10px;
}
.ri-signature .pad .body {
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
  border: 1px solid #f3f3f3;
  box-sizing: border-box;
  -webkit-box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 8px -6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
.ri-signature .pad .body canvas {
  display: block;
  position: relative;
  width: 100%;
  height: 300px;
}
.ri-signature .pad .body button.clearcanvas {
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 0;
  border: none;
  transition: background-color 0.4s;
  border-radius: 50%;
  cursor: pointer;
}
.ri-signature .pad .body button.clearcanvas:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.ri-signature .pad .foot span,
.ri-signature .pad .swap span {
  display: block;
  position: relative;
  text-align: center;
  font-size: 13px;
  color: #000;
  padding: 20px 0;
}
.ri-signature .pad .swap {
  display: none;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
.ri-signature .pad .swap p {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}

/* Back to Top */
.ri-stickyhead {
  display: block;
  position: fixed;
  left: 0;
  top: -40px;
  width: 100%;
  height: 40px;
  background-color: #000;
  transition: top 1s;
}
.ri-stickyhead.show {
  top: 0px;
}

.ri-scrolltop {
  display: block;
  position: fixed;
  width: 40px;
  line-height: 40px;
  bottom: -40px;
  right: 0;
  text-align: center;
  font-size: 20px;
  background-color: #000000;
  z-index: 1;
  border-top-left-radius: 5px;
  transition: bottom 1s;
  cursor: pointer;
}
.ri-scrolltop i {
  color: #fff;
}
.ri-scrolltop:hover {
  background-color: #333333;
}
.ri-scrolltop.show {
  bottom: 0px;
}

/* Loading Screen Styling*/
.ri-loadingscreen {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #1e3c72;
  background: -webkit-linear-gradient(to right, #2a5298, #1e3c72);
  background: linear-gradient(to right, #2a5298, #1e3c72);
}
.ri-loadingscreen > .table {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.ri-loadingscreen > .table > .cell {
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
.ri-loadingscreen > .table > .cell > .content {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 150px;
}
.ri-loadingscreen > .table > .cell > .content .circle {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  width: 75px;
  height: 75px;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  -webkit-animation-name: signal;
  -webkit-animation-duration: 1500ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: signal;
  -moz-animation-duration: 1500ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: signal;
  -ms-animation-duration: 1500ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
.ri-loadingscreen > .table > .cell > .content .circle img {
  display: inline-block;
  position: relative;
  width: 50px;
  margin-top: 24px;
}
.ri-loadingscreen > .table > .cell > .content .progress {
  display: block;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #ff9c08;
  overflow: hidden;
}
.ri-loadingscreen > .table > .cell > .content .progress:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  left: 0;
  top: 0;
  background: transparent;
  background: -webkit-linear-gradient(to right, transparent, #ffe9ba, transparent);
  background: linear-gradient(to right, transparent, #ffe9ba, transparent);
  -webkit-animation-name: light;
  -webkit-animation-duration: 3000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: light;
  -moz-animation-duration: 3000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: light;
  -ms-animation-duration: 3000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
.ri-loadingscreen > .table > .cell > .content .text1 {
  display: block;
  position: relative;
  color: #99aaca;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
.ri-loadingscreen > .table > .cell > .content .text2 {
  display: block;
  position: relative;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.ri-loaddata {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 70px;
  justify-content: center;
}
.ri-loaddata > .center {
  display: block;
  position: relative;
  text-align: center;
  align-self: center;
  width: 37px;
  height: 50px;
}
.ri-loaddata > .center > span {
  display: block;
  position: absolute;
  width: 5px;
  height: 20px;
  border-radius: 2.5px;
  background: #8E2DE2;
  background: -webkit-linear-gradient(to top, #4A00E0, #8E2DE2);
  background: linear-gradient(to top, #4A00E0, #8E2DE2);
}
.ri-loaddata > .center > span:nth-child(1) {
  left: 0;
  -webkit-animation-name: barone;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: barone;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: barone;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
.ri-loaddata > .center > span:nth-child(2) {
  left: 8px;
  -webkit-animation-name: bartwo;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: bartwo;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: bartwo;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
.ri-loaddata > .center > span:nth-child(3) {
  left: 16px;
  -webkit-animation-name: barthree;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: barthree;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: barthree;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
.ri-loaddata > .center > span:nth-child(4) {
  left: 24px;
  -webkit-animation-name: bartwo;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: bartwo;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: bartwo;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
.ri-loaddata > .center > span:nth-child(5) {
  left: 32px;
  -webkit-animation-name: barone;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: barone;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: barone;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}
.ri-loaddata > .center > .text {
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0;
  font-size: 8px;
  color: #b2bec3;
}

.ri-loadingbar {
  display: block;
  position: relative;
}
.ri-loadingbar > div {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f9d8b0;
}
.ri-loadingbar > div > span {
  display: block;
  position: relative;
  height: 1px;
  background-color: #ef9e3a;
  width: 0%;
}

/*loading-screen*/
@-webkit-keyframes signal {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
@keyframes signal {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes light {
  0% {
    left: -50%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: -50%;
  }
}
@keyframes light {
  0% {
    left: -50%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: -50%;
  }
}
/* loading data */
@-webkit-keyframes barone {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@-webkit-keyframes bartwo {
  0% {
    bottom: 25px;
  }
  25% {
    bottom: 30px;
  }
  75% {
    bottom: 20px;
  }
  100% {
    bottom: 25px;
  }
}
@-webkit-keyframes barthree {
  0% {
    bottom: 30px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 30px;
  }
}
.ri-shadow {
  position: relative;
  min-width: 0;
  word-wrap: break-word;
  background-color: #f8f9fa;
  background-clip: border-box;
  border-radius: 4px;
}
.ri-shadow.boxed {
  width: auto;
  height: 100px;
  align-items: center;
  align-content: center;
  text-align: center;
  justify-content: center;
  line-height: 100px;
}
.ri-shadow.ri-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.ri-shadow.ri-shadow-default {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.ri-shadow.ri-shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

html {
  scroll-behavior: smooth;
}

.ri-header .ri-sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 1;
  background: #ccc;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
}
.ri-header nav {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  top: 0;
  display: flex;
}
.ri-header nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px;
  background: #fff;
  margin: 0;
}
.ri-header nav ul.flex-end {
  justify-content: flex-end;
}
.ri-header nav ul li {
  list-style: none;
  margin-right: 20px;
  font-size: 16px;
}
.ri-header nav ul li a {
  text-decoration: none;
  color: #1ac;
}
.ri-header section {
  height: 100vh;
  display: grid;
  place-items: center;
  font-size: 50px;
  font-weight: bold;
  background: #eee;
  margin-bottom: 5px;
}

.ri-megamenu-block .header {
  background: #2196f3;
  position: relative;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1;
  border-radius: 4px;
}
.ri-megamenu-block .header a {
  text-decoration: none;
  color: #ffffff;
}
.ri-megamenu-block .header ul {
  list-style: none;
  padding-left: 0;
}
.ri-megamenu-block .logo {
  font-size: 2rem;
}
.ri-megamenu-block .menu-items {
  display: flex;
  align-items: center;
}
.ri-megamenu-block .menu-items li {
  padding: 0.5rem 1rem;
  transition: background 0.3s ease-in-out;
  border-radius: 4px;
}
.ri-megamenu-block .menu-items li:hover .ri-mega-menu {
  top: 80px;
  opacity: 1;
  visibility: visible;
}
.ri-megamenu-block .dropdown {
  position: relative;
}
.ri-megamenu-block .dropdown:hover .dropdown-menu {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
.ri-megamenu-block .dropdown-menu {
  position: absolute;
  background: #fff;
  width: 100%;
  top: 80px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.ri-megamenu-block .dropdown-menu li a {
  color: #444;
}
.ri-megamenu-block .dropdown-menu li a:hover, .ri-megamenu-block .dropdown-menu li a:focus {
  color: #427dad;
}
.ri-megamenu-block .menu-right {
  position: absolute;
  background: #fff;
  width: 100%;
  top: 50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 110%;
}
.ri-megamenu-block .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.ri-megamenu-block .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
.ri-megamenu-block .ri-mega-menu {
  position: absolute;
  left: 0;
  width: 100%;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.ri-megamenu-block .ri-mega-menu .content {
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}
.ri-megamenu-block .blog .content {
  grid-template-columns: repeat(3, 1fr);
}
.ri-megamenu-block .content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3rem;
  padding: 1rem;
}
.ri-megamenu-block .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  border-radius: 6px;
}
.ri-megamenu-block .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}
.ri-megamenu-block .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ri-megamenu-block .content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
.ri-megamenu-block .content .col h2 {
  color: #146db3;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}
.ri-megamenu-block .content .col p {
  line-height: 1.2rem;
}
.ri-megamenu-block .content .col .read-more {
  display: inline-block;
  padding-top: 1rem;
  color: #427dad;
  transition: color 0.3s ease;
}
.ri-megamenu-block .content .col .read-more:hover {
  color: #107dd4;
}
.ri-megamenu-block .col .mega-links li {
  padding: 0 1rem;
}
.ri-megamenu-block .col .mega-links li a {
  padding: 0 10px;
  color: #444;
}
.ri-megamenu-block .col .mega-links li:hover a {
  color: #427dad;
}
.ri-megamenu-block .menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.ri-megamenu-block .menu-btn__lines {
  width: 1.5rem;
  height: 0.1rem;
  background: #ffffff;
  transition: all 0.5s ease-in-out;
}
.ri-megamenu-block .menu-btn__lines::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.1rem;
  background: #ffffff;
  transition: all 0.5s ease-in-out;
  transform: translateY(-0.5rem);
}
.ri-megamenu-block .menu-btn__lines::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.1rem;
  background: #ffffff;
  transition: all 0.5s ease-in-out;
  transform: translateY(0.5rem);
}
.ri-megamenu-block .menu-btn.open .menu-btn__lines {
  transform: translateX(2rem);
  background: transparent;
}
.ri-megamenu-block .menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  background: #ffffff;
}
.ri-megamenu-block .menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  background: #ffffff;
}
@media screen and (max-width: 970px) {
  .ri-megamenu-block .menu-btn {
    display: flex;
  }
  .ri-megamenu-block .header .menu-items {
    position: absolute;
    height: auto;
    top: 100%;
    right: 0;
    opacity: 0;
    background: #107dd4;
    display: block;
    padding: 1rem;
    line-height: 3rem;
    overflow-y: auto;
    transform: translateY(-100vh);
    transition: transform 0.3s ease-out;
    border-radius: 4px;
  }
  .ri-megamenu-block .menu-items.open {
    transform: translateY(0);
    opacity: 1;
  }
  .ri-megamenu-block .menu-items li a {
    display: block;
    font-size: 1rem;
  }
  .ri-megamenu-block .menu-items li:hover {
    background-color: transparent;
  }
  .ri-megamenu-block .menu-items .dropdown-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    width: 100%;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .ri-megamenu-block .menu-items .menu-right {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    padding-left: 1rem;
    width: 100%;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .ri-megamenu-block .menu-items .ri-mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    padding-left: 1rem;
    width: 100%;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .ri-megamenu-block .menu-items .ri-mega-menu .content {
    justify-content: unset;
  }
  .ri-megamenu-block .expand-btn.open + .expandable {
    max-height: 100%;
    transform: scaleY(1);
    padding-left: 0;
  }
  .ri-megamenu-block .expandable li {
    margin: 0;
  }
  .ri-megamenu-block .expandable li a {
    font-size: 1rem;
  }
  .ri-megamenu-block .ri-mega-menu .content {
    grid-template-columns: auto;
  }
  .ri-megamenu-block .ri-mega-menu .content .col {
    padding: 1rem;
    border-top: 1px solid #eee;
  }
  .ri-megamenu-block .ri-mega-menu .content .col:nth-child(1) {
    border-top: 0px;
  }
  .ri-megamenu-block .content .col .mega-links {
    border-left: 0px;
    padding-left: 1rem;
  }
  .ri-megamenu-block .col .mega-links li {
    margin: 0;
  }
}

.ri-video {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.ri-video video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.ri-video .viewport-header {
  position: relative;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ri-video h1 {
  color: white;
  text-transform: uppercase;
  letter-spacing: 3vw;
  line-height: 1.2;
  font-size: 3vw;
  text-align: center;
}
.ri-video h1 span {
  display: block;
  font-size: 10vw;
  letter-spacing: -1.3vw;
}
.ri-video main {
  background: rgba(0, 0, 0, 0.66);
  color: white;
  position: relative;
  padding: 1rem;
}
.ri-video main p {
  max-width: 600px;
  margin: 1rem auto;
}

/* chart */
.ri-chart {
  display: flex;
  position: relative;
  width: 100%;
}
.ri-chart > div {
  display: block;
  position: relative;
  flex: 1;
}
.ri-chart > div:nth-child(2) {
  flex: inherit;
  width: 100px;
  padding-left: 20px;
}
.ri-chart > div.full {
  width: 100%;
}
.ri-chart > div.full > .fulldata {
  display: flex;
  width: 100%;
}
.ri-chart > div.full > .fulldata > div {
  flex: 1;
  padding-right: 20px;
}
.ri-chart > div.full > .fulldata > div:nth-child(2) {
  text-align: right;
}
.ri-chart > div h4.subtitle {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 400;
}
.ri-chart > div h1.data {
  margin: 0 0 10px 0;
  font-size: 38px;
}
.ri-chart > div h1.data sup {
  font-size: 12px;
  color: #636e72;
  font-weight: 400;
  padding-left: 5px;
}
.ri-chart > div div.legend h4 {
  font-size: 11px;
  font-style: italic;
  color: #b2bec3;
  font-weight: 400;
  margin: 0 0 3px 0;
}
.ri-chart > div div.legend span {
  font-size: 12px;
  margin-right: 7px;
  margin-bottom: 7px;
  white-space: nowrap;
}
.ri-chart > div div.legend span:last-child {
  margin-right: 0;
}

/* Accordion */
.ri-slider {
  display: block;
  position: relative;
  width: 100%;
}
.ri-slider .single-slidediv {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 300px;
  background-color: #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}
.ri-slider .single-slidediv:nth-child(odd) {
  background-color: #f5f5f5;
}

/* Text Editor */
.ql-toolbar.ql-snow {
  border: 1px solid #dfe4ea;
  background-color: #ffffff;
  box-sizing: border-box;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.ql-container.ql-snow {
  border: 1px solid #dfe4ea;
  box-sizing: border-box;
  background-color: #fbfbfb;
  color: #212526;
  height: 200px;
  overflow: auto;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Image Crop */
.ri-img-crop {
  text-align: center;
  width: 100%;
  height: 500px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
}
.ri-img-crop h3 {
  color: #2f3848;
  font-size: 1.2em;
}
.ri-img-crop .block {
  border-radius: 10px;
  background-color: #f1f5ff;
}
.ri-img-crop .block .stage {
  width: 320px;
  height: 320px;
  position: relative;
  border-radius: 10px;
}
.ri-img-crop .ri-upload label#filedrag {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.ri-img-crop .ri-upload input[type=file] {
  display: none;
}
.ri-img-crop .ri-crop {
  display: none;
}
.ri-img-crop .ri-crop .cr-boundary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}
.ri-img-crop .ri-crop .cr-boundary .cr-image {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  z-index: -1;
  max-width: none;
}
.ri-img-crop .ri-crop .cr-boundary .cr-viewport {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 0 0 900px #d9d9d9;
  z-index: 0;
}
.ri-img-crop .ri-crop .cr-boundary .cr-overlay {
  position: absolute;
  z-index: 2;
  cursor: move;
}
.ri-img-crop .ri-crop .cr-slider-wrap {
  z-index: 99;
  display: -webkit-box;
  display: flex;
  margin-top: 20px;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider {
  width: 90%;
  background-color: #595b6c;
  border-radius: 20px;
  padding: 0 2.5px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider:focus {
  outline: none;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background-color: transparent;
  border: 0;
  border-radius: 1em;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-moz-range-track {
  width: 100%;
  height: 4px;
  background-color: transparent;
  border: 0;
  border-radius: 1em;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 32px;
  height: 16px;
  margin-top: -6px;
  background-color: #ffffff;
  border-radius: 20px;
  border: none;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-moz-range-thumb {
  height: 16px;
  width: 32px;
  margin-top: -6px;
  background-color: #ffffff;
  border-radius: 20px;
  border: none;
  transform: scale(1);
  -moz-transition: transform 0.3s;
  transition: transform 0.3s;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-ms-track {
  width: 300px;
  height: 4px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-ms-fill-lower, .ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-ms-fill-upper {
  background: #c8cccf;
  border-radius: 10px;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-slider::-ms-thumb {
  border: none;
  height: 16px;
  width: 32px;
  background-color: #ffffff;
  border-radius: 20px;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-rotate {
  background-color: transparent;
  border: none;
  color: #595b6c;
  text-align: right;
  background-color: transparent;
  -webkit-box-flex: 1;
  flex: 1;
  display: flex;
  cursor: pointer;
  transition: color 0.4s;
  height: 25px;
  justify-content: flex-end;
  align-items: center;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-rotate:hover {
  color: #2b2c34;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-rotate:active {
  color: #8b8da0;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-rotate:active > i {
  transform: rotate(45deg);
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-rotate:focus {
  outline: none;
}
.ri-img-crop .ri-crop .cr-slider-wrap .cr-rotate:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}
.ri-img-crop .nblock {
  display: flex;
  margin-top: 20px;
}
.ri-img-crop .ri-crop .btn, .ri-img-crop .ri-result .btn {
  color: #000;
  background-color: #dfe4ea;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.4s;
  margin-right: 10px;
  flex: 1;
}
.ri-img-crop .ri-crop .btn:hover, .ri-img-crop .ri-result .btn:hover {
  background-color: #c0cad6;
}
.ri-img-crop .ri-crop .btn#crop, .ri-img-crop .ri-crop .btn#save, .ri-img-crop .ri-result .btn#crop, .ri-img-crop .ri-result .btn#save {
  background-color: #0984e3;
  color: #fff;
  margin-right: 0;
}
.ri-img-crop .ri-crop .btn#crop:hover, .ri-img-crop .ri-crop .btn#save:hover, .ri-img-crop .ri-result .btn#crop:hover, .ri-img-crop .ri-result .btn#save:hover {
  background-color: #0767b2;
}
.ri-img-crop .ri-result {
  display: none;
}
.ri-img-crop .ri-result img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

/* Select2 Plugin */
.select2 {
  min-width: 100%;
}

.select2-container .select2-selection--single {
  height: 38px;
  background-color: transparent;
  border: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 10px;
  line-height: 38px;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 38px;
  width: 20px;
  right: 0;
  top: 0;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent;
  border-width: 6px 3px 0 3px;
  left: 50%;
  margin-left: -3px;
  top: 50%;
  margin-top: -3px;
}
.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #0984e3 transparent;
  border-width: 0 3px 6px 3px;
}
.select2-container .select2-selection--multiple {
  border: none;
}
.select2-container .select2-selection--multiple .select2-selection__choice {
  border-radius: 2px;
  background-color: #f7f8fa;
  border: 1px solid #dfe4ea;
  line-height: 26px;
  padding-left: 5px;
  padding-right: 10px;
  font-size: 12px;
}
.select2-container.select2-container--focus .select2-selection--multiple {
  border: none;
}

.select2-dropdown {
  background-color: #fff;
  border: 1px solid #dfe4ea;
  box-sizing: initial;
  left: -1px !important;
  z-index: 10000;
}
.select2-dropdown input:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.02);
}

.select2-results {
  color: #636e72;
}

span.select2-selection.select2-selection--single {
  outline: none;
}

@media screen and (max-width: 767px) {
  .select2-dropdown {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100% !important;
    padding: 20px;
    box-sizing: border-box;
    -webkit-box-shadow: 0 18px 14px -9px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 18px 14px -9px rgba(0, 0, 0, 0.2);
    box-shadow: 0 18px 14px -9px rgba(0, 0, 0, 0.2);
  }

  .select2-search--dropdown {
    border: 1px solid #aaa;
  }

  .select2-results__options {
    border: 1px solid #aaa;
  }
}
/* datatable */
table.dataTable {
  width: 100% !important;
}
table.dataTable thead th, table.dataTable tfoot th {
  font-weight: 500;
  font-size: 14px;
  color: #212526;
  vertical-align: middle;
  white-space: nowrap;
}
table.dataTable thead {
  background-color: #fff;
}
table.dataTable thead th, table.dataTable thead td {
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 30px;
  padding-left: 10px;
  text-align: left;
  border-top: 1px solid #f0f2f3;
  border-bottom: 1px solid #f0f2f3;
}
table.dataTable thead th:first-child, table.dataTable thead td:first-child {
  border-left: 1px solid #f0f2f3;
}
table.dataTable thead th:last-child, table.dataTable thead td:last-child {
  border-right: 1px solid #f0f2f3;
}
table.dataTable thead th:active, table.dataTable thead td:active {
  outline: none;
}
table.dataTable thead th.nowrap, table.dataTable thead td.nowrap {
  white-space: nowrap;
}
table.dataTable thead th.fit {
  white-space: nowrap;
  width: 1px;
  padding-right: 20px;
}
table.dataTable tbody th, table.dataTable tbody td {
  color: #364246;
  font-size: 12px;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 30px;
  padding-left: 10px;
  border-bottom: 1px solid #f7f8fa;
  vertical-align: top;
  white-space: normal;
}
table.dataTable tbody th.nowrap, table.dataTable tbody td.nowrap {
  white-space: nowrap;
}
table.dataTable tbody th a.link-only, table.dataTable tbody td a.link-only {
  display: inline-block;
  position: relative;
  vertical-align: top;
  line-height: 30px;
  padding: 0 10px;
  margin-bottom: 2px;
  background-color: #d8ecfa;
  font-size: 12px;
  color: #636e72;
  max-width: 100px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.4s;
}
table.dataTable tbody th a.link-only:hover, table.dataTable tbody td a.link-only:hover {
  background-color: #abd6f4;
}
table.dataTable tbody th a.action, table.dataTable tbody th button.action, table.dataTable tbody td a.action, table.dataTable tbody td button.action {
  display: inline-block;
  position: relative;
  margin-right: -1px;
  margin-bottom: 2px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  background-color: #b2bec3;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.4s;
}
table.dataTable tbody th a.action i, table.dataTable tbody th button.action i, table.dataTable tbody td a.action i, table.dataTable tbody td button.action i {
  font-size: 10px;
}
table.dataTable tbody th a.action:hover, table.dataTable tbody th button.action:hover, table.dataTable tbody td a.action:hover, table.dataTable tbody td button.action:hover {
  background-color: #798e96;
}
table.dataTable tbody th div.user, table.dataTable tbody td div.user {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-bottom: 2px;
  white-space: nowrap;
}
table.dataTable tbody th div.user figure, table.dataTable tbody td div.user figure {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin: 0 8px 0 0;
  padding: 0;
}
table.dataTable tbody th div.user figure img, table.dataTable tbody td div.user figure img {
  width: 35px;
  height: 35px;
  display: block;
  position: relative;
  border-radius: 50%;
  border: 2px solid #dfe4ea;
}
table.dataTable tbody th div.user.male figure img, table.dataTable tbody td div.user.male figure img {
  border: 2px solid #74b9ff;
}
table.dataTable tbody th div.user.female figure img, table.dataTable tbody td div.user.female figure img {
  border: 2px solid #fd79a8;
}
table.dataTable tbody th span.time, table.dataTable tbody th span.status, table.dataTable tbody td span.time, table.dataTable tbody td span.status {
  white-space: nowrap;
}
table.dataTable tbody th span.status, table.dataTable tbody td span.status {
  color: #636e72;
}
table.dataTable tbody th span.status.red, table.dataTable tbody th span.status.green, table.dataTable tbody th span.status.blue, table.dataTable tbody td span.status.red, table.dataTable tbody td span.status.green, table.dataTable tbody td span.status.blue {
  font-weight: 700;
}
table.dataTable tbody th span.status.red, table.dataTable tbody td span.status.red {
  color: #d63031;
}
table.dataTable tbody th span.status.green, table.dataTable tbody td span.status.green {
  color: #00b894;
}
table.dataTable tbody th span.status.blue, table.dataTable tbody td span.status.blue {
  color: #0984e3;
}
table.dataTable tbody tr:last-child td {
  border-bottom: none;
}
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  background-color: #fbfbfb;
}
table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.display tbody tr.odd > .sorting_3 {
  font-weight: 500;
  background-color: transparent;
}
table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.display tbody tr.odd.selected > .sorting_3 {
  font-weight: 500;
}
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.display tbody tr.even > .sorting_3 {
  font-weight: 500;
  background-color: transparent;
}
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  font-weight: 500;
}
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3.odd.selected > .sorting_3 {
  font-weight: 500;
}
table.dataTable.order-column.stripe tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  font-weight: 500;
}
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #ffffff;
}
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #ffffff;
}
table.dataTable.stripe tbody tr.odd:hover, table.dataTable.display tbody tr.odd:hover {
  background-color: #fbfbfb;
}
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid #f0f2f3;
  border-bottom: none;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: top;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #f0f2f3;
}
.dataTables_wrapper .dataTables_length {
  float: left;
  font-size: 14px;
  color: #636e72;
  margin-bottom: 20px;
}
.dataTables_wrapper .dataTables_length select {
  height: 35px;
  line-height: 35px;
  padding: 0 5px;
  border-radius: 2px;
  border: 1px solid #b2bec3;
}
.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
  font-size: 14px;
  color: #364246;
  margin-bottom: 20px;
}
.dataTables_wrapper .dataTables_filter input {
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  border-radius: 35px;
  border: 1px solid #b2bec3;
}
.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  margin-top: 20px;
  color: #212526;
  font-size: 11px;
}
.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  margin-top: 15px;
  padding: 5px;
  border-radius: 3px;
  background-color: #fff;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  min-width: 30px;
  padding: 5px;
  border-radius: 3px;
  border: none;
  font-size: 11px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  color: #b2bec3 !important;
  border: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: #b2bec3 !important;
  border: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  cursor: default;
  border: none;
  background-color: #f0f2f3;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f0f2f3), color-stop(100%, #f0f2f3));
  background: -webkit-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: -moz-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: -ms-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: -o-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: linear-gradient(to bottom, #f0f2f3 0%, #f0f2f3 100%);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: none;
  background-color: #f0f2f3;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f0f2f3), color-stop(100%, #f0f2f3));
  background: -webkit-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: -moz-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: -ms-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: -o-linear-gradient(top, #f0f2f3 0%, #f0f2f3 100%);
  background: linear-gradient(to bottom, #f0f2f3 0%, #f0f2f3 100%);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #0984e3 !important;
  border: none;
  background-color: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, transparent));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
  background: -moz-linear-gradient(top, transparent 0%, transparent 100%);
  background: -ms-linear-gradient(top, transparent 0%, transparent 100%);
  background: -o-linear-gradient(top, transparent 0%, transparent 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 100%);
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  color: #d63031 !important;
  background-color: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, transparent));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 100%);
  background: -moz-linear-gradient(top, transparent 0%, transparent 100%);
  background: -ms-linear-gradient(top, transparent 0%, transparent 100%);
  background: -o-linear-gradient(top, transparent 0%, transparent 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 100%);
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 20px;
  }
  .dataTables_wrapper .dataTables_length {
    display: none;
  }
  .dataTables_wrapper .dataTables_filter input {
    width: 130px;
  }
}
/* slick js Plugin */
.slick-prev {
  left: 20px;
  z-index: 1;
}

.slick-next {
  right: 20px;
  z-index: 1;
}

.slick-slide {
  outline: none !important;
}

.slick-new-arrow-left, .slick-new-arrow-right {
  position: absolute;
  top: 50%;
  font-size: 30px;
  margin-top: -15px;
  cursor: pointer;
  color: #000;
  transition: color 0.4s;
  z-index: 1;
}
.slick-new-arrow-left:hover, .slick-new-arrow-right:hover {
  color: #2AAAF3;
}

.slick-new-arrow-left {
  left: 20px;
}

.slick-new-arrow-right {
  right: 20px;
}

.slick-slide {
  margin: 0 10px;
}

.slick-list {
  margin: 0 -10px;
}

.slick-dots {
  bottom: 4px;
  width: calc(100% - 18px);
  text-align: right;
}
.slick-dots li {
  margin: 0;
  margin-left: 5px;
}
.slick-dots li button {
  width: 15px;
  height: 15px;
  padding: 0;
}
.slick-dots li button:before {
  width: 15px;
  height: 15px;
  font-size: 15px;
  color: transparent;
  background-color: #ffffff;
  content: "";
  border-radius: 50%;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #2AAAF3;
}

/*display*/
.ri-block {
  display: block;
  position: relative;
}

.ri-inlineblock {
  display: inline-block;
  position: relative;
}
.ri-inlineblock.top {
  vertical-align: top;
}
.ri-inlineblock.middle {
  vertical-align: middle;
}
.ri-inlineblock.bottom {
  vertical-align: bottom;
}
.ri-inlineblock.baseline {
  vertical-align: baseline;
}

.ri-table {
  display: table;
  position: relative;
  border-collapse: collapse;
}
.ri-table .row {
  display: table-row;
}
.ri-table .row .cell {
  display: table-cell;
  position: relative;
  padding: 3px;
}
.ri-table .row .cell.top {
  vertical-align: top;
}
.ri-table .row .cell.middle {
  vertical-align: middle;
}
.ri-table .row .cell.bottom {
  vertical-align: bottom;
}
.ri-table .row .cell.baseline {
  vertical-align: baseline;
}
.ri-table.fullwidth {
  width: 100%;
}

.ri-flex {
  display: flex;
  position: relative;
}
.ri-flex > .block, .ri-flex > .flex1, .ri-flex > .flex2, .ri-flex > .flex3 {
  display: block;
  position: relative;
  min-width: 0;
}
.ri-flex > .block.center, .ri-flex > .flex1.center, .ri-flex > .flex2.center, .ri-flex > .flex3.center {
  align-self: center;
}
.ri-flex > .flex1 {
  flex: 1;
}
.ri-flex > .flex2 {
  flex: 2;
}
.ri-flex > .flex3 {
  flex: 3;
}
.ri-flex.fullwidth {
  width: 100%;
}

.ri-rotating i {
  -webkit-animation-name: rotating;
  -webkit-animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotating;
  -moz-animation-duration: 2000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotating;
  -ms-animation-duration: 2000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-transition: rotate(3600deg);
}

@-webkit-keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .ri-tablet-hide {
    display: none;
  }

  .ri-inlineblock.tablet-break {
    display: block;
    padding: 0;
    margin-bottom: 30px;
  }

  .ri-table.tablet-break {
    display: block;
  }
  .ri-table.tablet-break > .row {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .ri-table.tablet-break > .row .cell {
    display: block;
    width: 100%;
    padding: 0;
  }
  .ri-table.tablet-break > .row .cell.middle {
    vertical-align: top;
  }

  .ri-flex.tablet-break {
    display: block;
    width: 100%;
  }
  .ri-flex.tablet-break > .block, .ri-flex.tablet-break > .flex1, .ri-flex.tablet-break > .flex2, .ri-flex.tablet-break > .flex3 {
    width: 100%;
    flex: inherit;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  .ri-flex.tablet-break > .block:last-child, .ri-flex.tablet-break > .flex1:last-child, .ri-flex.tablet-break > .flex2:last-child, .ri-flex.tablet-break > .flex3:last-child {
    margin-bottom: 0;
  }
}
.ri-box {
  box-sizing: border-box;
}

/* position */
.ri-relative {
  position: relative;
}

.ri-absolute {
  position: absolute;
}

.ri-fixed {
  position: fixed;
}

.ri-inherit {
  position: inherit;
}

.ri-left {
  text-align: left;
}

.ri-right {
  text-align: right;
}

.ri-center {
  text-align: center;
}

.ri-justify {
  text-align: justify;
}

.ri-top {
  vertical-align: top;
}

.ri-middle {
  vertical-align: middle;
}

.ri-bottom {
  vertical-align: bottom;
}

.ri-baseline {
  vertical-align: baseline;
}

/* width */
.ri-fullwidth {
  width: 100%;
}

/* bg color */
.ri-bgwhite1 {
  background-color: #ffffff;
}

.ri-bgwhite2 {
  background-color: #fbfbfb;
}

.ri-bgwhite3 {
  background-color: #f7f8fa;
}

.ri-bgwhite4 {
  background-color: #f0f2f3;
}

.ri-bgwhite5 {
  background-color: #dfe4ea;
}

.ri-bgblack1 {
  background-color: #000000;
}

.ri-bgblack2 {
  background-color: #151717;
}

.ri-bgblack3 {
  background-color: #212526;
}

.ri-bgblack4 {
  background-color: #2d3436;
}

.ri-bgblack5 {
  background-color: #364246;
}

.ri-bggrey1 {
  background-color: #636e72;
}

.ri-bggrey2 {
  background-color: #b2bec3;
}

.ri-bggreen1 {
  background-color: #00b894;
}

.ri-bggreen2 {
  background-color: #55efc4;
}

.ri-bgcyan1 {
  background-color: #00cec9;
}

.ri-bgcyan2 {
  background-color: #81ecec;
}

.ri-bgblue1 {
  background-color: #0984e3;
}

.ri-bgblue2 {
  background-color: #74b9ff;
}

.ri-bgnavy1 {
  background-color: #1a4566;
}

.ri-bgnavy2 {
  background-color: #005291;
}

.ri-bgnavy3 {
  background-color: #005ba1;
}

.ri-bgpurple1 {
  background-color: #6c5ce7;
}

.ri-bgpurple2 {
  background-color: #a29bfe;
}

.ri-bgyellow1 {
  background-color: #fdcb6e;
}

.ri-bgyellow2 {
  background-color: #ffeaa7;
}

.ri-bgpeach1 {
  background-color: #e17055;
}

.ri-bgpeach2 {
  background-color: #fab1a0;
}

.ri-bgred1 {
  background-color: #d63031;
}

.ri-bgred2 {
  background-color: #ff7675;
}

.ri-bgpink1 {
  background-color: #e84393;
}

.ri-bgpink2 {
  background-color: #fd79a8;
}

.ri-bgtransparent {
  background-color: transparent;
}

/*content font size*/
.ri-cfontsize8 {
  font-size: 8px;
}

.ri-cfontsize9 {
  font-size: 9px;
}

.ri-cfontsize10 {
  font-size: 10px;
}

.ri-cfontsize11 {
  font-size: 11px;
}

.ri-cfontsize12 {
  font-size: 12px;
}

.ri-cfontsize13 {
  font-size: 13px;
}

.ri-cfontsize14 {
  font-size: 14px;
}

.ri-cfontsize15 {
  font-size: 15px;
}

.ri-cfontsize16 {
  font-size: 16px;
}

/*sub title font size*/
.ri-stfontsize18 {
  font-size: 18px;
}

.ri-stfontsize20 {
  font-size: 20px;
}

.ri-stfontsize22 {
  font-size: 22px;
}

.ri-stfontsize24 {
  font-size: 24px;
}

/*title font size*/
.ri-tfontsize32 {
  font-size: 32px;
}

.ri-tfontsize40 {
  font-size: 40px;
}

.ri-tfontsize48 {
  font-size: 48px;
}

.ri-tfontsize56 {
  font-size: 56px;
}

.ri-tfontsize64 {
  font-size: 64px;
}

.ri-tfontsize72 {
  font-size: 72px;
}

/*line height*/
.ri-lineheight24 {
  line-height: 24px;
}

.ri-lineheight28 {
  line-height: 28px;
}

.ri-lineheight32 {
  line-height: 32px;
}

.ri-lineheight36 {
  line-height: 36px;
}

.ri-lineheight40 {
  line-height: 40px;
}

.ri-lineheight44 {
  line-height: 44px;
}

.ri-lineheight48 {
  line-height: 48px;
}

/* font style */
.ri-fw-normal {
  font-weight: 400;
}

.ri-fw-medium {
  font-weight: 500;
}

.ri-fw-bold {
  font-weight: 700;
}

.ri-fs-italic {
  font-style: italic;
}

/* font color */
.ri-txwhite1 {
  color: #ffffff;
}

.ri-txwhite2 {
  color: #fbfbfb;
}

.ri-txwhite3 {
  color: #f7f8fa;
}

.ri-txwhite4 {
  color: #f0f2f3;
}

.ri-txwhite5 {
  color: #dfe4ea;
}

.ri-txblack1 {
  color: #000000;
}

.ri-txblack2 {
  color: #151717;
}

.ri-txblack3 {
  color: #212526;
}

.ri-txblack4 {
  color: #2d3436;
}

.ri-txblack5 {
  color: #364246;
}

.ri-txgrey1 {
  color: #636e72;
}

.ri-txgrey2 {
  color: #b2bec3;
}

.ri-txgreen1 {
  color: #00b894;
}

.ri-txgreen2 {
  color: #55efc4;
}

.ri-txcyan1 {
  color: #00cec9;
}

.ri-txcyan2 {
  color: #81ecec;
}

.ri-txblue1 {
  color: #0984e3;
}

.ri-txblue2 {
  color: #74b9ff;
}

.ri-txnavy1 {
  color: #1a4566;
}

.ri-txnavy2 {
  color: #005291;
}

.ri-txnavy3 {
  color: #005ba1;
}

.ri-txpurple1 {
  color: #6c5ce7;
}

.ri-txpurple2 {
  color: #a29bfe;
}

.ri-txyellow1 {
  color: #fdcb6e;
}

.ri-txyellow2 {
  color: #ffeaa7;
}

.ri-txpeach1 {
  color: #e17055;
}

.ri-txpeach2 {
  color: #fab1a0;
}

.ri-txred1 {
  color: #d63031;
}

.ri-txred2 {
  color: #ff7675;
}

.ri-txpink1 {
  color: #e84393;
}

.ri-txpink2 {
  color: #fd79a8;
}

.ri-txtransparent {
  color: transparent;
}

/*margin box*/
.ri-margin0 {
  margin: 0px;
}

.ri-margin5 {
  margin: 5px;
}

.ri-margin10 {
  margin: 10px;
}

.ri-margin15 {
  margin: 15px;
}

.ri-margin20 {
  margin: 20px;
}

.ri-margin25 {
  margin: 25px;
}

.ri-margin30 {
  margin: 30px;
}

.ri-margin35 {
  margin: 35px;
}

.ri-margin40 {
  margin: 40px;
}

.ri-margin3 {
  margin: 3px;
}

/*margin left*/
.ri-marginleft0 {
  margin-left: 0px;
}

.ri-marginleft5 {
  margin-left: 5px;
}

.ri-marginleft10 {
  margin-left: 10px;
}

.ri-marginleft15 {
  margin-left: 15px;
}

.ri-marginleft20 {
  margin-left: 20px;
}

.ri-marginleft25 {
  margin-left: 25px;
}

.ri-marginleft30 {
  margin-left: 30px;
}

.ri-marginleft35 {
  margin-left: 35px;
}

.ri-marginleft40 {
  margin-left: 40px;
}

.ri-marginleft3 {
  margin-left: 3px;
}

/*margin right*/
.ri-marginright0 {
  margin-right: 0px;
}

.ri-marginright5 {
  margin-right: 5px;
}

.ri-marginright10 {
  margin-right: 10px;
}

.ri-marginright15 {
  margin-right: 15px;
}

.ri-marginright20 {
  margin-right: 20px;
}

.ri-marginright25 {
  margin-right: 25px;
}

.ri-marginright30 {
  margin-right: 30px;
}

.ri-marginright35 {
  margin-right: 35px;
}

.ri-marginright40 {
  margin-right: 40px;
}

.ri-marginright3 {
  margin-right: 3px;
}

/*margin top*/
.ri-margintop0 {
  margin-top: 0px;
}

.ri-margintop5 {
  margin-top: 5px;
}

.ri-margintop10 {
  margin-top: 10px;
}

.ri-margintop15 {
  margin-top: 15px;
}

.ri-margintop20 {
  margin-top: 20px;
}

.ri-margintop25 {
  margin-top: 25px;
}

.ri-margintop30 {
  margin-top: 30px;
}

.ri-margintop35 {
  margin-top: 35px;
}

.ri-margintop40 {
  margin-top: 40px;
}

.ri-margintop3 {
  margin-top: 3px;
}

/*margin bottom*/
.ri-marginbottom0 {
  margin-bottom: 0px;
}

.ri-marginbottom5 {
  margin-bottom: 5px;
}

.ri-marginbottom10 {
  margin-bottom: 10px;
}

.ri-marginbottom15 {
  margin-bottom: 15px;
}

.ri-marginbottom20 {
  margin-bottom: 20px;
}

.ri-marginbottom25 {
  margin-bottom: 25px;
}

.ri-marginbottom30 {
  margin-bottom: 30px;
}

.ri-marginbottom35 {
  margin-bottom: 35px;
}

.ri-marginbottom40 {
  margin-bottom: 40px;
}

.ri-marginbottom3 {
  margin-bottom: 3px;
}

/*padding box*/
.ri-padding0 {
  padding: 0px;
}

.ri-padding5 {
  padding: 5px;
}

.ri-padding10 {
  padding: 10px;
}

.ri-padding15 {
  padding: 15px;
}

.ri-padding20 {
  padding: 20px;
}

.ri-padding25 {
  padding: 25px;
}

.ri-padding30 {
  padding: 30px;
}

.ri-padding35 {
  padding: 35px;
}

.ri-padding40 {
  padding: 40px;
}

.ri-padding3 {
  padding: 3px;
}

/*padding left*/
.ri-paddingleft0 {
  padding-left: 0px;
}

.ri-paddingleft5 {
  padding-left: 5px;
}

.ri-paddingleft10 {
  padding-left: 10px;
}

.ri-paddingleft15 {
  padding-left: 15px;
}

.ri-paddingleft20 {
  padding-left: 20px;
}

.ri-paddingleft25 {
  padding-left: 25px;
}

.ri-paddingleft30 {
  padding-left: 30px;
}

.ri-paddingleft35 {
  padding-left: 35px;
}

.ri-paddingleft40 {
  padding-left: 40px;
}

.ri-paddingleft3 {
  padding-left: 3px;
}

/*padding right*/
.ri-paddingright0 {
  padding-right: 0px;
}

.ri-paddingright5 {
  padding-right: 5px;
}

.ri-paddingright10 {
  padding-right: 10px;
}

.ri-paddingright15 {
  padding-right: 15px;
}

.ri-paddingright20 {
  padding-right: 20px;
}

.ri-paddingright25 {
  padding-right: 25px;
}

.ri-paddingright30 {
  padding-right: 30px;
}

.ri-paddingright35 {
  padding-right: 35px;
}

.ri-paddingright40 {
  padding-right: 40px;
}

.ri-paddingright3 {
  padding-right: 3px;
}

/*padding top*/
.ri-paddingtop0 {
  padding-top: 0px;
}

.ri-paddingtop5 {
  padding-top: 5px;
}

.ri-paddingtop10 {
  padding-top: 10px;
}

.ri-paddingtop15 {
  padding-top: 15px;
}

.ri-paddingtop20 {
  padding-top: 20px;
}

.ri-paddingtop25 {
  padding-top: 25px;
}

.ri-paddingtop30 {
  padding-top: 30px;
}

.ri-paddingtop35 {
  padding-top: 35px;
}

.ri-paddingtop40 {
  padding-top: 40px;
}

.ri-paddingtop3 {
  padding-top: 3px;
}

/*padding bottom*/
.ri-paddingbottom0 {
  padding-bottom: 0px;
}

.ri-paddingbottom5 {
  padding-bottom: 5px;
}

.ri-paddingbottom10 {
  padding-bottom: 10px;
}

.ri-paddingbottom15 {
  padding-bottom: 15px;
}

.ri-paddingbottom20 {
  padding-bottom: 20px;
}

.ri-paddingbottom25 {
  padding-bottom: 25px;
}

.ri-paddingbottom30 {
  padding-bottom: 30px;
}

.ri-paddingbottom35 {
  padding-bottom: 35px;
}

.ri-paddingbottom40 {
  padding-bottom: 40px;
}

.ri-paddingbottom3 {
  padding-bottom: 3px;
}
/*
     FILE ARCHIVED ON 00:35:19 Jan 07, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 02:56:12 Jan 09, 2023.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 148.466
  exclusion.robots: 0.073
  exclusion.robots.policy: 0.066
  RedisCDXSource: 1.284
  esindex: 0.007
  LoadShardBlock: 128.728 (3)
  PetaboxLoader3.datanode: 84.894 (4)
  CDXLines.iter: 16.224 (3)
  load_resource: 56.092
  PetaboxLoader3.resolve: 41.397
*/