@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://use.fontawesome.com/releases/v7.0.1/css/all.css');

body {
    background: #f3f3f3;
    color: #1b202c;
    font-family: "Roboto", sans-serif;
}

.ease {
    -webkit-transition: .2s linear all;
    transition: .2s linear all;
}

.zoom:hover {
  transform: scale(1.02);
}

.unzoom:hover {
  transform: scale(0.95);
}

.iconbar {
    background: #1e39d2;
    background: linear-gradient(180deg,rgba(59, 69, 124, 1) 0%, rgba(30, 57, 210, 1) 200px);
    color: #FFFFFF;
    width: 175px;
    font-size: 16px;
    text-align: left;
    padding: 20px 0;
    line-height: 1.0em;
}


.iconbar-link {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-left: 6px solid #dafebf;
    margin-bottom: 4px;
}

.iconbar-link:hover {
    background: #3B457C;
    color: #FFFFFF;
    border-left: 6px solid #6BD11D;
}

.iconbar i {
    width: 20px;
}

.iconbar .dropdown-menu a {
    font-size: 16px;
    padding: 0.375rem 0.75rem;
    color: #3B457C;
    border-bottom: none;
}

.iconbar .dropdown-menu a:hover {
    color: #1e39d2;
}


.iconbar-settings {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    background: #001dc0;
    border-left: 6px solid #de9f89;
    text-decoration: none;
    padding: 8px;
    margin-bottom: 4px;
}

.iconbar-settings:hover {
    background: #3B457C;
    border-left: 6px solid #D14C1D;
}

.bg-blue {
    background: #1e39d2;
}

.bg-ltblue {
    background: #445ce5;
}

.bg-green {
    background: #6BD11D;
}


#highlight-bug {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 5px;
}



.linkbar {
    background: #1b202c;
    color: #f3f3f3;
}

.linkbar-page {
    width: 200px;
    padding: 0;
}

.linkbar-page span {
    display: block;
    cursor: pointer;
    text-align: right;
    font-size: 20px;
    padding: 20px;
}

.linkbar-page a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 5px 10px;
    border-bottom: 1px solid #666666;
    color: #FFFFFF;
}

.linkbar-page a:hover {
    background: #666666;
}

.topbar {
    background: #FFFFFF;
}


.image-box {
    padding: 0;
    border: 1px solid #666666;
    border-radius: 10px;
    overflow: hidden;
}

.image-box-controls span {
    font-size: 10px;
}

@keyframes shadows {
    0% { box-shadow: #48abe0 0 0 10px; }
    50% { box-shadow: blueviolet 0 0 10px; }
    75% { box-shadow: rebeccapurple 0 0 10px;}
    100% { box-shadow: #48abe0 0 0 10px; }
}

.hiliteglow {
    animation: shadows 2s infinite
}

form .card {
    margin: 10px auto 40px auto;
}

form .card-body {
    padding: 30px 15px 15px 15px;
}

h1 {
    background: #3B457C;
    color: #FFFFFF;
    border-left: 10px solid #6BD11D;
    padding: 10px;
    margin-bottom: 30px;
    line-height: 1.2em;
    font-weight: 400;
    font-size: 28px;
    text-transform: uppercase;
}

h1.error {
  background: #5f0000;
  border-left: 10px solid #990000;
}

h1.admin {
  background: #001dc0;
  border-left: 10px solid #D14C1D;
}

h2 {
    background: #666666;
    color: #FFFFFF;
    border-left: 8px solid #001dc0;
    padding: 10px;
    margin: 25px 0;
    line-height: 1.2em;
    font-weight: 400;
    font-size: 23px;
    text-transform: uppercase;
}

h4 {
    background: #666666;
    color: #FFFFFF;
    border-left: 6px solid #001dc0;
    padding: 6px;
    margin: 20px 0;
    line-height: 1.2em;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
}

.form-label {
    margin-bottom: 2px;
}

.form-control::placeholder {
  opacity: 0.4;
}

.file-preview {
  height: 72px;
  width: 72px;
  border-radius: 5px;
  object-fit: cover;
}

/*selectPure JS classes */

.select-pure__select {
  align-items: center;
  background: #f9f9f8;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: left;
  min-height: 44px;
  padding: 5px 10px;
  position: relative;
  transition: 0.2s;
  width: 100%;
}
.select-pure__options {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  display: none;
  left: 0;
  max-height: 221px;
  overflow-y: scroll;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 5;
}
.select-pure__select--opened .select-pure__options {
  display: block;
}
.select-pure__option {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  box-sizing: border-box;
  line-height: 16px;
  padding: 7px 10px;
}
.select-pure__option:hover {
  background: #e4e4e4;
}
.select-pure__option--selected {
  color: #e4e4e4;
  cursor: initial;
  pointer-events: none;
}
.select-pure__option--hidden {
  display: none;
}
.select-pure__selected-label {
  background: #5e6264;
  border-radius: 4px;
  color: #fff;
  cursor: initial;
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 1px 4px;
  font-size: 14px;
}
.select-pure__selected-label:last-of-type {
  margin-right: 0;
}
.select-pure__selected-label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
}
.select-pure__selected-label i:hover {
  color: #e4e4e4;
}
.select-pure__autocomplete {
  background: #f9f9f8;
  border-bottom: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  border-top: none;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
  padding: 10px;
  width: 100%;
}

.bullet-select {
  font-family: "fontAwesome", "Roboto", sans-serif;
}

.hasty-help {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  padding: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 30px;
}

.hasty-help:hover {
  width: 180px;
  background: #FFFFFF;
}

.hasty-help:hover img {
  transform: rotate(-15deg);
}


