* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
}

button {
  background: #ccc;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  border: 0;
  transition: 0.3s;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  padding: 15px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}

li {
  padding: 10px;
}

ul.borders li {
  border: 0;
  border-bottom: 0.05em solid #aaa;
}

form {
  padding: 10px;
  text-align: center;
}

input {
  width: 100%;
  border: 0.05em solid #ccc;
  padding: 9px;
  border-radius: 5px;
  font-family: "arial";
  margin: 5px 0;
  position: relative;
}
input::-moz-placeholder {
  font-family: "arial";
}
input::placeholder {
  font-family: "arial";
}
input:focus {
  outline: none;
}

textarea {
  width: 100%;
  border: 0.05em solid #ccc;
  padding: 9px;
  font-size: 10pt;
  border-radius: 5px;
  resize: none;
  font-family: "arial";
  margin: 5px 0;
}
textarea::-moz-placeholder {
  font-family: "arial";
}
textarea::placeholder {
  font-family: "arial";
}
textarea:focus {
  outline: none;
}

.input-container {
  position: relative;
  margin: 5px 0;
}
.input-container span {
  position: absolute;
  top: -1.9px;
  color: #444;
  left: 10px;
  padding: 0 10px;
  background: #fff;
  font-size: 9pt;
  transition: 0.2s;
}
.input-container input {
  border: 0.01em solid #aaa;
  background: #fff;
  height: 40px;
}
.input-container textarea {
  border: 0.01em solid #aaa;
  background: none;
}

.input-group {
  display: flex;
}
.input-group .input-day {
  position: relative;
}
.input-group .input-day::after {
  content: "Day";
  position: absolute;
  top: -7px;
  left: 10px;
  padding: 5px;
  font-size: 10pt;
  background: #fff;
}
.input-group .input-month {
  position: relative;
}
.input-group .input-month::after {
  content: "Month";
  position: absolute;
  top: -7px;
  left: 10px;
  padding: 5px;
  font-size: 10pt;
  background: #fff;
}
.input-group .input-year {
  position: relative;
}
.input-group .input-year::after {
  content: "Year";
  position: absolute;
  top: -7px;
  left: 10px;
  padding: 5px;
  font-size: 10pt;
  background: #fff;
}

select {
  width: 100%;
  border: 0.05em solid #ccc;
  padding: 9px;
  font-size: 10px;
  border-radius: 5px;
  font-family: arial;
  margin: 5px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}

label {
  cursor: pointer;
}

nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
nav .brand-logo {
  width: 50px;
  height: 50px;
  padding: 5px;
}
nav .brand-logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
nav .nav-items {
  display: flex;
  flex-wrap: wrap;
  margin: 5px;
}

nav.shrink {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
nav.shrink .nav-items {
  height: 0;
  overflow: hidden;
  display: block;
  margin: 5px;
}
nav.shrink .nav-items a {
  display: block;
  padding: 10px;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  nav .nav-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  nav .nav-items a {
    display: inline;
    padding: 0 10px;
  }
  nav.shrink .nav-items {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 5px;
  }
  nav.shrink .nav-items a {
    display: inline;
    padding: 0px 10px;
  }
}
.primary_bg {
  background: #3490dc;
  color: #fff;
}

.neutral_bg {
  background: #6c757d;
  color: #fff;
}

.success_bg {
  background: #38c172;
  color: #fff;
}

.caution {
  background: #ffed4a;
}

.danger_bg {
  background: #e3342f;
  color: #fff;
}

.void_bg {
  background: #333;
}

.purple_bg {
  background: #9561e2;
}

.clean_bg {
  background: #fff;
}

* {
  box-sizing: border-box;
}

.parent {
  width: 100%;
}

.step-parent {
  width: 100%;
  padding: 3%;
}

body, html {
  margin: 0;
  padding: 0;
}

.pointer {
  cursor: pointer;
}

/*======== Margin ========= */
.ma-0 {
  margin: 0;
}

.ma-1 {
  margin: 10px;
}

.ma-2 {
  margin: 10px;
}

.ma-3 {
  margin: 15px;
}

.ma-4 {
  margin: 20px;
}

.ma-5 {
  margin: 25px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 5px;
}

.mt-2 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 15px;
}

.mt-4 {
  margin-top: 20px;
}

.mt-5 {
  margin-top: 25px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 5px;
}

.mb-2 {
  margin-bottom: 10px;
}

.mb-3 {
  margin-bottom: 15px;
}

.mb-4 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 25px;
}

.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 5px;
}

.mr-2 {
  margin-right: 10px;
}

.mr-3 {
  margin-right: 15px;
}

.mr-4 {
  margin-right: 20px;
}

.mr-5 {
  margin-right: 25px;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 5px;
}

.ml-2 {
  margin-left: 10px;
}

.ml-3 {
  margin-left: 15px;
}

.ml-4 {
  margin-left: 20px;
}

.ml-5 {
  margin-left: 25px;
}

.center {
  margin: 0 auto;
}

/*========= Padding =========*/
.pa-0 {
  padding: 0;
}

.pa-1 {
  padding: 5px;
}

.pa-2 {
  padding: 10px;
}

.pa-3 {
  padding: 15px;
}

.pa-4 {
  padding: 20px;
}

.pa-5 {
  padding: 25px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 5px;
}

.pt-2 {
  padding-top: 10px;
}

.pt-3 {
  padding-top: 15px;
}

.pt-4 {
  padding-top: 20px;
}

.pt-5 {
  padding-top: 25px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 5px;
}

.pb-2 {
  padding-bottom: 10px;
}

.pb-3 {
  padding-bottom: 15px;
}

.pb-4 {
  padding-bottom: 20px;
}

.pb-5 {
  padding-bottom: 25px;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 5px;
}

.pr-2 {
  padding-right: 10px;
}

.pr-3 {
  padding-right: 15px;
}

.pr-4 {
  padding-right: 20px;
}

.pr-5 {
  padding-right: 25px;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 5px;
}

.pl-2 {
  padding-left: 10px;
}

.pl-3 {
  padding-left: 15px;
}

.pl-4 {
  padding-left: 20px;
}

.pl-5 {
  padding-left: 25px;
}

/*========= Display Flex =========*/
.df {
  display: flex;
  flex-wrap: wrap;
}

.jl {
  justify-content: flex-start;
}

.jr {
  justify-content: flex-end;
}

.jc {
  justify-content: center;
}

.j-ar {
  justify-content: space-around;
}

.j-btw {
  justify-content: space-between;
}

.j-even {
  justify-content: space-evenly;
}

.at {
  align-content: flex-start;
  align-items: flex-start;
}

.ab {
  align-content: flex-end;
  align-items: flex-end;
}

.ac {
  align-items: center;
  align-items: center;
}

.a-ar {
  align-content: space-around;
  align-items: space-around;
}

.a-btw {
  align-content: space-between;
  align-items: space-between;
}

.a-even {
  align-content: space-evenly;
  align-items: space-evenly;
}

/*========= Display Grid =========*/
.dg {
  display: grid;
}

/*========= Other Displays =========*/
.db {
  display: block;
}

.di {
  display: inline;
}

.dt {
  display: table;
}

.di-b {
  display: inline-block;
}

.di-t {
  display: inline-table;
}

.dn {
  display: none;
}

/*========= Floats =========*/
.fl {
  float: left;
}

.fr {
  float: right;
}

/*========= Text Alignment =========*/
.tr {
  text-align: right;
}

.tl {
  text-align: left;
}

.tj {
  text-align: justify;
}

.tc {
  text-align: center;
}

/*=========== Bend =============*/
.square {
  border-radius: 0;
}

.circle {
  border-radius: 50%;
}

.bend {
  border-radius: 5px;
}

.bend-left {
  border-radius: 5px 0 0 5px;
}

.bend-right {
  border-radius: 0 5px 5px 0;
}

.bend-top {
  border-radius: 5px 5px 0 0;
}

.bend-bottom {
  border-radius: 0 0 5px 5px;
}

.bend-top-left {
  border-radius: 5px 0 0 0;
}

.bend-top-right {
  border-radius: 0 5px 0 0;
}

.bend-bottom-left {
  border-radius: 0 0 0 5px;
}

.bend-bottom-right {
  border-radius: 0 0 5px 0;
}

/*============ Border ============*/
.nb {
  border: 0;
}

.tb {
  border-top: 0.1em solid #ccc;
}

.rb {
  border-right: 0.1em solid #ccc;
}

.bb {
  border-bottom: 0.1em solid #ccc;
}

.lb {
  border-left: 0.1em solid #ccc;
}

.b {
  border: 0.1em solid #ccc;
}

/* ============== Force Middle =========*/
.a-am {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.a-vm {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.a-hm {
  position: absolute;
  left: 50%;
  transform: translateZ(-50%);
}

.f-am {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.f-vm {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.f-hm {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.r-am {
  position: relative;
  top: 50%;
}

.r-vm {
  position: relative;
  top: 50%;
}

.r-hm {
  position: relative;
  left: 50%;
}

/* ============= Absolute Extreme Positioning =============*/
.a-bottom {
  position: absolute;
  bottom: 0;
}

.a-top {
  position: absolute;
  top: 0;
}

.a-right {
  position: absolute;
  right: 0;
}

.a-left {
  position: absolute;
  left: 0;
}

/* ============= Fixed Extreme Positioning =============*/
.f-bottom {
  position: fixed;
  bottom: 0;
}

.f-top {
  position: fixed;
  top: 0;
}

.f-right {
  position: fixed;
  right: 0;
}

.f-left {
  position: fixed;
  left: 0;
}

/* ======= Columns with gutter ======= */
.cm-12 {
  width: 99%;
  margin: 0.5%;
}

.cm-11 {
  width: 90.66%;
  margin: 0.5%;
}

.cm-10 {
  width: 82.33%;
  margin: 0.5%;
}

.cm-9 {
  width: 74%;
  margin: 0.5%;
}

.cm-8 {
  width: 65.66%;
  margin: 0.5%;
}

.cm-7 {
  width: 57.33%;
  margin: 0.5%;
}

.cm-6 {
  width: 49%;
  margin: 0.5%;
}

.cm-5 {
  width: 40.66%;
  margin: 0.5%;
}

.cm-4 {
  width: 32.33%;
  margin: 0.5%;
}

.cm-3 {
  width: 24%;
  margin: 0.5%;
}

.cm-2 {
  width: 15.66%;
  margin: 0.5%;
}

.cm-1 {
  width: 7.33%;
  margin: 0.5%;
}

/* ======= Columns without gutter ======= */
.c-12 {
  width: 100%;
}

.c-11 {
  width: 91.66%;
}

.c-10 {
  width: 83.33%;
}

.c-9 {
  width: 75%;
}

.c-8 {
  width: 66.66%;
}

.c-7 {
  width: 58.33%;
}

.c-6 {
  width: 50%;
}

.c-5 {
  width: 41.66%;
}

.c-4 {
  width: 33.33%;
}

.c-3 {
  width: 25%;
}

.c-2 {
  width: 16.66%;
}

.c-1 {
  width: 8.33%;
}

.one-child, .two-children, .three-children, .four-children, .five-children, .six-children, .twelve-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: auto;
  width: 100%;
}

.one-child .child {
  width: 83.33%;
  margin: 0.5%;
}

.two-children .child {
  width: 83.33%;
  margin: 0.5%;
}

.three-children .child {
  width: 83.33%;
  margin: 0.5%;
}

.four-children .child {
  width: 47%;
  margin: 1.5%;
}

.five-children .child {
  width: 47%;
  margin: 1.5%;
}

.six-children .child {
  width: 30%;
  margin: 1.5%;
}

.twelve-children .child {
  width: 21;
  margin: 1.5%;
}

/* ======= Small screen columns ======= */
@media only screen and (min-width: 540px) {
  /* ======= Small screen columns with gutter ======= */
  .c-sm-12 {
    width: 99%;
    margin: 0.5%;
  }
  .c-sm-11 {
    width: 90.66%;
    margin: 0.5%;
  }
  .c-sm-10 {
    width: 82.33%;
    margin: 0.5%;
  }
  .c-sm-9 {
    width: 74%;
    margin: 0.5%;
  }
  .c-sm-8 {
    width: 65.66%;
    margin: 0.5%;
  }
  .c-sm-7 {
    width: 57.33%;
    margin: 0.5%;
  }
  .c-sm-6 {
    width: 49%;
    margin: 0.5%;
  }
  .c-sm-5 {
    width: 40.66%;
    margin: 0.5%;
  }
  .c-sm-4 {
    width: 32.33%;
    margin: 0.5%;
  }
  .c-sm-3 {
    width: 24%;
    margin: 0.5%;
  }
  .c-sm-2 {
    width: 15.66%;
    margin: 0.5%;
  }
  .c-sm-1 {
    width: 7.33%;
    margin: 0.5%;
  }
  /* ======= Small screen columns without gutter ======= */
  .c-s-12 {
    width: 100%;
  }
  .c-s-11 {
    width: 91.66%;
  }
  .c-s-10 {
    width: 83.33%;
  }
  .c-s-9 {
    width: 75%;
  }
  .c-s-8 {
    width: 66.66%;
  }
  .c-s-7 {
    width: 58.33%;
  }
  .c-s-6 {
    width: 50%;
  }
  .c-s-5 {
    width: 41.66%;
  }
  .c-s-4 {
    width: 33.33%;
  }
  .c-s-3 {
    width: 25%;
  }
  /* =========childs styling ============*/
  .one-child .child {
    width: 83.33%;
  }
  .two-children .child {
    width: 83.33%;
    margin: 0.5%;
  }
  .three-children .child {
    width: 83.33%;
    margin: 0.5%;
  }
  .four-children .child {
    width: 49%;
    margin: 0.5%;
  }
  .five-children .child {
    width: 49%;
    margin: 0.5%;
  }
  .six-children .child {
    width: 24%;
    margin: 0.5%;
  }
  .twelve-children .child {
    width: 32.33%;
    margin: 0.5%;
  }
  /* =========Float styling ============*/
  .s-fl {
    float: left;
  }
  .s-fr {
    float: right;
  }
  .m-dn {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .m-rf {
    flex-direction: row-reverse;
  }
  /* ======= Medium screen columns with gutter ======= */
  .c-mm-12 {
    width: 99%;
    margin: 0.5%;
  }
  .c-mm-11 {
    width: 90.66%;
    margin: 0.5%;
  }
  .c-mm-10 {
    width: 82.33%;
    margin: 0.5%;
  }
  .c-mm-9 {
    width: 74%;
    margin: 0.5%;
  }
  .c-mm-8 {
    width: 65.66%;
    margin: 0.5%;
  }
  .c-mm-7 {
    width: 57.33%;
    margin: 0.5%;
  }
  .c-mm-6 {
    width: 49%;
    margin: 0.5%;
  }
  .c-mm-5 {
    width: 40.66%;
    margin: 0.5%;
  }
  .c-mm-4 {
    width: 32.33%;
    margin: 0.5%;
  }
  .c-mm-3 {
    width: 24%;
    margin: 0.5%;
  }
  .c-mm-2 {
    width: 15.66%;
    margin: 0.5%;
  }
  .c-mm-1 {
    width: 7.33%;
    margin: 0.5%;
  }
  /* ======= Medium screen columns without gutter ======= */
  .c-m-12 {
    width: 100%;
  }
  .c-m-11 {
    width: 91.66%;
  }
  .c-m-10 {
    width: 83.33%;
  }
  .c-m-9 {
    width: 75%;
  }
  .c-m-8 {
    width: 66.66%;
  }
  .c-m-7 {
    width: 58.33%;
  }
  .c-m-6 {
    width: 50%;
  }
  .c-m-5 {
    width: 41.66%;
  }
  .c-m-4 {
    width: 33.33%;
  }
  .c-m-3 {
    width: 25%;
  }
  .c-m-2 {
    width: 16.66%;
  }
  .c-m-1 {
    width: 8.33%;
  }
  /* =========childs styling ============*/
  .one-child .child {
    width: 83.33%;
  }
  .two-children .child {
    width: 49%;
    margin: 0.5%;
  }
  .three-children .child {
    width: 32.33%;
    margin: 0.5%;
  }
  .four-children .child {
    width: 24%;
    margin: 0.5%;
  }
  .five-children .child {
    width: 19%;
    margin: 0.5%;
  }
  .six-children .child {
    width: 15.66%;
    margin: 0.5%;
  }
  .twelve-children .child {
    width: 6.33;
    margin: 0.5%;
  }
  /* =========Float styling ============*/
  .m-fl {
    float: left;
  }
  .m-fr {
    float: right;
  }
  .m-dn {
    display: none;
  }
}
/*========= Large screen columns ======= */
@media only screen and (min-width: 992px) {
  /* ======= Large screen columns with gutter ======= */
  .c-lm-12 {
    width: 99%;
    margin: 0.5%;
  }
  .c-lm-11 {
    width: 90.66%;
    margin: 0.5%;
  }
  .c-lm-10 {
    width: 82.33%;
    margin: 0.5%;
  }
  .c-lm-9 {
    width: 74%;
    margin: 0.5%;
  }
  .c-lm-8 {
    width: 65.66%;
    margin: 0.5%;
  }
  .c-lm-7 {
    width: 57.33%;
    margin: 0.5%;
  }
  .c-lm-6 {
    width: 49%;
    margin: 0.5%;
  }
  .c-lm-5 {
    width: 40.66%;
    margin: 0.5%;
  }
  .c-lm-4 {
    width: 32.33%;
    margin: 0.5%;
  }
  .c-lm-3 {
    width: 24%;
    margin: 0.5%;
  }
  .c-lm-2 {
    width: 15.66%;
    margin: 0.5%;
  }
  .c-lm-1 {
    width: 7.33%;
    margin: 0.5%;
  }
  /* ======= Large screen columns without gutter ======= */
  .c-l-12 {
    width: 100%;
  }
  .c-l-11 {
    width: 91.66%;
  }
  .c-l-10 {
    width: 83.33%;
  }
  .c-l-9 {
    width: 75%;
  }
  .c-l-8 {
    width: 66.66%;
  }
  .c-l-7 {
    width: 58.33%;
  }
  .c-l-6 {
    width: 40%;
  }
  .c-l-5 {
    width: 41.66%;
  }
  .c-l-4 {
    width: 33.33%;
  }
  .c-l-3 {
    width: 25%;
  }
  .c-l-2 {
    width: 16.66%;
  }
  .c-l-1 {
    width: 8.33%;
  }
  /* =========Tiles styling ============*/
  .one-child .child {
    width: 83.33%;
  }
  .two-children .child {
    width: 49%;
    margin: 0.5%;
  }
  .three-children .child {
    width: 32.33%;
    margin: 0.5%;
  }
  .four-children .child {
    width: 24%;
    margin: 0.5%;
  }
  .five-children .child {
    width: 19%;
    margin: 0.5%;
  }
  .six-children .child {
    width: 15.66%;
    margin: 0.5%;
  }
  .twelve-children .child {
    width: 6.33;
    margin: 0.5%;
  }
  /* =========Float styling ============*/
  .l-fl {
    float: left;
  }
  .l-fr {
    float: right;
  }
  .l-dn {
    display: none;
  }
}
.toast_prompt {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  min-height: 50px;
  padding: 10px;
  border-radius: 7px;
  transition: 0.5s;
  z-index: 999;
  color: #fff;
}
.toast_prompt.success {
  background: #38c172;
}
.toast_prompt.error {
  background: #e3342f;
}
.toast_prompt.neutral {
  background: #6c757d;
}
.toast_prompt.none {
  bottom: -100%;
}
.toast_prompt button {
  border: 0;
  transition: 0.5s;
  color: #fff;
}
.toast_prompt button:hover {
  transform: scale(1);
  background: rgba(0, 0, 0, 0.2);
}

.pop_modal_prompt {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  width: 100%;
}
.pop_modal_prompt .message {
  background: #fff;
  color: #444;
  border-radius: 10px;
  min-height: 40vh;
}

.inkycode_text_editor .texteditor {
  border: 0.1em solid #ccc;
  height: 500px;
  overflow-y: auto;
  padding: 10px;
  text-align: left;
}
.inkycode_text_editor .texteditor img {
  width: 100%;
}
.inkycode_text_editor .texteditor_button_section {
  border: 0.1em solid #ccc;
  margin-bottom: 10px;
  padding: 5px;
}
.inkycode_text_editor .texteditor_button_section .button_section {
  border-right: 0.1em solid #ccc;
  margin-right: 10px;
  padding-right: 5px;
  display: flex;
}
.inkycode_text_editor .texteditor_button_section .button_section button {
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}
.inkycode_text_editor .texteditor_button_section .button_section button svg {
  height: 15px;
  width: 15px;
}
.inkycode_text_editor .texteditor_button_section .button_section button svg .fil0 {
  fill: #444;
}

.wysiwyg_file_explorer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.wysiwyg_file_explorer .explorer_container {
  background: #fff;
  height: 90vh;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_header {
  border-bottom: 0.1em solid #ccc;
  height: 60px;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_header .wysiwyg_button_section {
  align-content: center;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_header .wysiwyg_button_section button {
  background: none;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_header .wysiwyg_button_section .wysiwyg_label {
  background: none;
  border-radius: 0 5px 0 5px;
  padding: 10px;
  color: #fff;
  font-weight: bold;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_header .wysiwyg_button_section .wysiwyg_label svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_header .wysiwyg_button_section .wysiwyg_label svg .fil0 {
  fill: #444;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_header .wysiwyg_button_section .close_btn {
  background: red;
  color: #fff;
  width: 30px;
  height: 30px;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container {
  overflow: hidden;
  height: calc(90vh - 95px);
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container {
  display: flex;
  transition: 0.5s;
  height: 100%;
  position: relative;
  left: 0;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .slide {
  min-width: 100%;
  max-width: 100%;
  background: #f7f7f7;
  height: 100%;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .file_display_section {
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .file_display_section .file_container {
  height: 200px;
  position: relative;
  width: 150px;
  border: 0.1em solid #ccc;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .file_display_section .file_container .file_button {
  height: calc(100% - 30px);
  background: none;
  width: 100%;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .file_display_section .file_container .file_button img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .file_display_section .file_container .file_button video {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .file_display_section .file_container .file_name {
  font-size: 8pt;
  padding: 5px;
  text-align: center;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .file_display_section .file_container .remove_btn {
  height: 30px;
  width: 30px;
  border-radius: 0 5px 0 5px;
  font-size: 14pt;
  font-weight: bold;
  background: red;
  color: #fff;
  position: absolute;
  top: 10px;
  right: -10px;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .link_display_section .url_button {
  background: purple;
  border-radius: 0 5px 0 5px;
  color: #fff;
}
.wysiwyg_file_explorer .explorer_container .display_slider_container .slider_container .link_display_section .error {
  color: red;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_label {
  background: purple;
  border-radius: 0 5px 0 5px;
  padding: 10px;
  color: #fff;
  font-weight: bold;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_label svg {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_label svg .fil0 {
  fill: #fff;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_footer {
  width: 100%;
  padding: 5px;
  border-top: 0.1em solid #ccc;
}
.wysiwyg_file_explorer .explorer_container .wysiwyg_footer .file_count {
  font-size: 8pt;
  height: 35px;
}
.wysiwyg_file_explorer .explorer_container .remove_btn {
  background: red;
  color: #fff;
}

.toggle_input_container {
  display: flex;
  height: 20px;
  width: 40px;
  align-items: center;
  margin: 0 5px;
}
.toggle_input_container input[type=checkbox] {
  display: none;
}
.toggle_input_container input[type=checkbox]:checked ~ label:before {
  left: calc(50% - 2px);
  background: #ddd;
}
.toggle_input_container label {
  display: block;
  width: inherit;
  position: relative;
  background: #fff;
  height: inherit;
  border: 0.1em solid #ccc;
  border-radius: 10px;
}
.toggle_input_container label:before {
  content: "";
  position: absolute;
  width: 50%;
  left: 0;
  transition: 0.5s;
  border: 0.1em solid #ccc;
  height: calc(100% - 0.1em);
  border-radius: 10px;
}

.single_choice_input_container {
  display: flex;
  height: 20px;
  width: 20px;
  align-items: center;
  margin: 0 5px;
}
.single_choice_input_container input[type=radio] {
  display: none;
}
.single_choice_input_container input[type=radio]:checked ~ label:before {
  background: #ddd;
  left: 10px;
  top: 10px;
}
.single_choice_input_container label {
  display: block;
  width: inherit;
  position: relative;
  background: #fff;
  height: inherit;
  border: 0.1em solid #ccc;
  border-radius: 50%;
  padding: 5px;
}
.single_choice_input_container label:before {
  content: "";
  position: absolute;
  width: 100%;
  left: -10px;
  top: -10px;
  transition: 0.5s;
  border: 0.1em solid #ccc;
  height: 100%;
  border-radius: 50%;
}/*# sourceMappingURL=app.css.map */