.editbutton, .removebutton{
  background-image:url('/icons/edit.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 14px;
}
.removebutton{
  background-image:url('/icons/remove.svg');
  background-size: 24px;
}
.actioncolumn{
  display: flex;
}
.url{
  background-image:url('/icons/earth.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
  padding-left: 25px;
  color: inherit;

}
#referenceurl{
  margin-bottom:24px;
  display: block;
  font-size:13px;
}
#loadingoverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none; /* Use flexbox */
}
.loadingspinner {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
body{
  margin:0 auto;
  background:#f0f0f9
}
h3{
  margin:0;
  padding:0;
  line-height: 2
}
nav{
  overflow-y: auto;
}
nav>a{
  padding:16px;
  border-bottom:1px solid #cca;
  display: block;
  text-decoration: none;
  color:inherit;
}
nav .highlight{
  background:#22a2f0;
  color:white;
}

table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

table td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

table tr:nth-child(even){background-color: #f2f2f2;}

table tr:hover {background-color: #ddd;}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}


  .row{
    margin-bottom:30px;
    width: 100%;
  }
  label{
    display: block;
    text-align: left;
    color:#225;
    margin-bottom:4px;
    font-size:14px;
  }
  textarea{
    width: 100%;
    min-height: 400px;
    padding:8px;
  }
  .iceinput.button{
    width:90px;
    background:#f028dd;
    border:0px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
  }
.iceinput{
    border:1px solid #ccc;
    border-radius: 8px;
    display: block;
    width: 100%;
    line-height: 2;
    box-sizing: border-box;
    height: 36px;
    padding:8px;

  }
button.iceinput{
  width:auto;
  min-width: 92px;
}
  .fr-wrapper>div:first-child{
    display: none;
  }

.floatbutton{
  position: fixed;
  bottom:24px;
  right:24px;
  border-radius: 50%;
  height: 70px;
  width:70px;
    min-width: 70px!important;
    z-index: 9;
}


.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
