/*
  Core Document Sections
*/

body {
  width: auto;
  height: 125vh;
  display: block;
  margin: 0;
  padding: 0;
  font-family: Verdana, Tahoma, "Lucida Console";
}

.app-header {
  width: 100%;
  min-width: 100%;
  height: 20%;
  min-height: 20%;
  background-color: #12293b;
  border-bottom: 2px solid white;
}

.app-main {
  width: 100%;
  min-width: 100%;
  height: 80%;
  min-height: 80%;
  background-color: #f2f3f3;
  position: relative;
}

/*
  Header and Cover Screen section
*/

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
}

.peargis-label {
  display: inline-block;
  width: 80.5%;
  color: white;
  font-size: 2vw;
}

.app-title {
  font-size: 5vw;
  color: white;
  text-align: center;
  width: 100%;
  margin: 0;
  margin-top: -1%;
  font-family: Tahoma, Verdana, "Lucida Console";
}

.peargis-anchor {
  width: 4.5%;
}

.pear-anchor {
  width: 15%;
}

.logo {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.cover-screen {
  z-index: 8;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #12293b;
  opacity: 1;
  pointer-events: auto;
  cursor: normal;
}

.arrow-label {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 2vw;
  color: white;
  margin-top: 5%;
  cursor: pointer;
}

.arrow-down {
  position: relative;
  left: 48%;
  top: 20px;
  width: 4%;
  height: auto;
  cursor: pointer;
  animation: MoveUpDown 2s linear infinite;
}

@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(100px);
  }
}

/*
  Survey Designer Panels
*/

.survey-designer-window {
  background-color: #d5dbdb;
  margin-left: 0%;
  width: 100%;
  min-width: 768px;
  height: 92%;
  min-height: 500px;
  float: left;
  margin-top: 2%;
  box-shadow: 3px 3px 5px grey;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.attribute-panel {
  padding: 0;
  margin-left: 3%;
  width: 22%;
  margin-top: 2.5%;
  height: 87%;
  background-color: white;
  border-radius: 15px;
  float: left;
  box-shadow: 2px 2px 5px grey;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.overview-panel {
  margin-left: 3%;
  width: 33%;
  margin-top: 2.5%;
  height: 87%;
  background-color: white;
  border-radius: 15px;
  float: left;
  box-shadow: 2px 2px 5px grey;
}

.properties-panel {
  margin-left: 3%;
  width: 33%;
  margin-top: 2.5%;
  height: 87%;
  background-color: white;
  border-radius: 15px;
  float: left;
  box-shadow: 2px 2px 5px grey;
  position: relative;
  display: flex;
  flex-flow: column;
  overflow-y: auto;
}

/*
  Panel Headings & Titles
*/

.attribute-panel-header, .overview-panel-header,
.properties-panel-header {
  margin: 0;
  padding: 0;
  width: auto;
  height: 7%;
  border-radius: 15px 15px 0 0;
}

.panel-header-text {
  color: black;
  font-size: 1.2vw;
  font-weight: bold;
  letter-spacing: 2px;
  position: relative;
  top: 25%;
  left: 5%;
}

.header-divider {
  margin: 0;
  padding: 0;
  width: 75%;
  height: 3px;
  border: 0;
  background-image: linear-gradient(to right, transparent, transparent, white),
    linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
  background-image: -moz-linear-gradient(to right, white, transparent, white),
    -webkit-linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
  background-image: -ms-linear-gradient(to right, white, transparent, white),
    -webkit-linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
}

/*
  Input Forms styling
*/

.size-input {
  position: absolute;
  float: left;
  left: 20%;
  width: 40%;
  top: 20%;
  height: 45%;
  font-size: 1vw;
  text-align: center;
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
}

.size-input::-webkit-inner-spin-button,
.size-input::-webkit-outer-spin-button {
  opacity: 1;
}

.size-input:focus {
  background-color: rgba(3, 155, 229, 0.4);
  outline: none;
}

.size-input-outline {
  left: 55%;
  width: 25%;
  height: 50%;
  top: 15%;
}

.size-input-disabled {
  background-color: rgba(46, 49, 49, 0.2);
  border: none;
}

.pixel-unit {
  position: absolute;
  font-size: 0.8vw;
  height: 25%;
  left: 60%;
  width: 20%;
  padding-left: 5%;
  top: 40%;
}

.pixel-unit-outline {
  left: 80%;
  padding-left: 1%;
}

.area-checkbox {
  margin-right: 5px;
}

input[type=checkbox] {
  border: 2px solid black;
}

.tooltip-info, .tooltip-info-fixed {
  background-color: #12293b !important;
  color: white;
  border-radius: 10px;
  font-size: 0.8vw !important;
  max-width: 20%;
  box-shadow: 5px 5px 10px black !important;
  border: 3px solid black !important;
}

.tooltip-info-fixed {
  position: fixed;
}

.input-error {
  background-color: rgba(255, 0, 0, 0.8) !important;
}

.input-error-styling {
  background-color: rgba(255, 0, 0, 0.8) !important;
}

.input-error-symbol:hover {
  background-color: rgba(3, 155, 229, 0.4) !important;
}

.input-error-symbol {
  background-color: rgba(255, 0, 0, 0.8) !important;
  border-radius: 0 10px 10px 0;
}

.input-error-colour {
  border: rgba(255, 0, 0, 0.8) solid 4px !important;
}

.input-error-checkbox input[type=checkbox] {
  border: rgba(255, 0, 0, 0.8) solid 4px !important;
}

/*
  Spectrum Colour Picker Styling
*/

.color-input-large {
  position: absolute;
  left: 20%;
  width: 60%;
  top: 20%;
  height: 45%;
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
}

.color-input-small {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 15%;
  left: 25%;
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
}

.color-input-outline {
  position: absolute;
  width: 35%;
  height: 50%;
  top: 15%;
  left: 15%;
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
}

/*
  Menu Bar
*/

.menu-bar {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 5%;
  background-color: #12293b;
  border-radius: 15px 15px 0 0;
}

.menu-button {
  position: relative;
  left: 1%;
  width: auto;
  top: 5%;
  height: 90%;
  font-size: 1.1vw;
  color: white;
  background: none;
  border: none;
  outline: none;
  letter-spacing: 2px;
  z-index: 2;
  cursor: pointer;
}

.menu-panel {
  position: absolute;
  background-color: white;
  z-index: 1;
  left: -25%;
  width: 25%;
  height: 31.25%;
  top: 0;
  border-radius: 15px 0 15px 0;
  box-shadow: 5px 5px 10px;
  display: none;
  padding-top: 4%;
}

.menu-option {
  position: relative;
  width: 95%;
  height: 20%;
  background-color: white;
  outline: none;
  border: none;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 5%;
  font-size: 0.9vw;
  cursor: pointer;
}

.menu-option:hover {
  background-color: #d5dbdb;
}

.file-button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: blue;
  opacity: 0;
}

.tooltip-toggle-title {
  width: 50%;
}

.save-template-btn {
  position: relative;
  left: 78%;
  width: 15%;
  margin: 0;
  padding: 0;
  height: 80%;
  box-sizing: border-box;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  font-size: 0.85vw;
  background: none;
  border: solid 2px white;
  color: white;
  transition: 0.75s;
}

.save-template-btn:hover {
  background-color: #d5dbdb;
  color: black;
  border: 2px solid #12293b;
}

/*
  Tooltips toggle slider.
*/

.switch {
  position: absolute;
  right: 5%;
  display: inline-block;
  width: 60px;
  height: 30px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.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: 24px;
  width: 24px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #12293b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #12293b;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/*
  Message Banner
*/
.message-banner {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 15%;
  z-index: 6;
  border-radius: 0 0 15px 15px;
  box-shadow: 6px 6px 10px;
}

.message-banner-success {
  background-color: rgba(46, 142, 46, 1);
}

.message-banner-fail {
  background-color: rgba(209, 51, 51, 1);
}

.message-banner-warning {
  background-color: rgba(194, 112, 30, 1);
}

.message-panel {
  height: 90%;
  top: 5%;
  width: 90%;
  float: left;
  color: white;
  font-size: 1.15vw;
  padding-left: 5%;
  margin-right: -5%;
  word-wrap: break-word;
  word-break: normal;
  overflow-y: auto;
  position: relative;
}

.banner-close {
  height: 100%;
  width: 10%;
  display: inline-block;
  position: relative;
}

.close-button {
  position: absolute;
  height: 0;
  border: 0;
  right: 10%;
  bottom: 10%;
  width: 25%;
  padding-top: 25%;
  cursor: pointer;
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/close_button.png');
  background-size: 100%;
  outline: none;
}

.manage-drop-down-error-btn {
  width: 20%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #f2f3f3;
  outline: none;
}

/*
  Confirmation Message
*/

.confirm-backdrop {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0.8;
  display: none;
}

.confirm-modal {
  position: absolute;
  left: 37%;
  width: 26%;
  top: 35%;
  height: 30%;
  background-color: #f2f3f3;
  border-radius: 15px;
  box-shadow: 5px 5px 5px;
  border: solid 2px black;
  z-index: 5;
  overflow: hidden;
  display: none;
}

.confirm-message {
  padding: 10%;
  font-size: 1.2vw;
  text-align: center;
  border-bottom: solid 2px grey;
  height: 35%;
  position: absolute;
}

.message-cancel-button, .message-no-button,
.message-confirm-button {
  position: relative;
  width: 20%;
  height: 15%;
  top: 77.5%;
  left: 10%;
  border: solid 2px black;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  background-color: rgba(18, 41, 59, 0.65);
  color: white;
  font-size: 0.9vw;
  transition: 0.5s;
}

.message-confirm-button:hover {
  background-color: rgba(18, 41, 59, 1);
}

.message-no-button, .message-cancel-button {
  width: 20%;
  margin-left: 10%;
  background-color: rgba(255, 0, 0, 0.65);
}

.message-no-button:hover, .message-cancel-button:hover {
  background-color: rgba(255, 0, 0, 1);
}

.loading-icon-container {
  z-index: 4;
  position: fixed;
  top: 30%;
  left: 42.5%;
  width: 15%;
  display: none;
}

.loading-icon {
  width: 100%;
}

/*
  File drag & drop message.
*/

.drag-drop-backdrop {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  opacity: 0.9;
  display: none;
  box-sizing: border-box;
  border: 4px dashed black;
  display: none;
}

.drag-drop-message {
  position: relative;
  font-size: 2.5vw;
  font-weight: bold;
  text-align: center;
  top: 40%;
}

/*
  Attribute Panel
*/

.attribute-list {
  flex: 1;
  overflow-y: auto;
  margin-top: 15px;
  vertical-align: bottom;
}

.header-divider-attribute {
  width: 100%;
  margin-bottom: 15px;
  background-image: linear-gradient(to right, transparent, transparent, transparent),
    linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
  background-image: -moz-linear-gradient(to right, white, transparent, transparent),
    -webkit-linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
  background-image: -ms-linear-gradient(to right, white, transparent, transparent),
    -webkit-linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
}

.attribute-list-item {
  border: 3px solid #12293b;
  box-sizing: border-box;
  margin-left: 5%;
  margin-bottom: 15px;
  width: 90%;
  height: calc(calc(100% - calc(165px + 3px + 15px))/11);
  border-radius: 10px;
  cursor: move;
  text-align: center;
  transition: 0.3s;
}

.attribute-list-item:hover {
  background-color: rgba(3, 155, 229, 0.4);
}

.attribute-item-text {
  color: black;
  font-size: 0.9vw;
  letter-spacing: 2px;
  position: relative;
  top: 20%;
}

/*
  Overview (#2) Panel
*/

.overview-details {
  width: auto;
  height: 33%;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 15px;
}

.overview-list {
  width: auto;
  height: calc(100% - calc(33% + 7% + 6px));
  background-color: none;
  border-radius: 0 0 15px 15px;
}

.survey-title {
  margin-left: 5%;
  font-size: 0.8vw;
  font-weight: bold;
  letter-spacing: 0.6px;
  margin-top: 15px;
}

.survey-title-input {
  background-color: none;
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  border-radius: 10px;
  height: 12%;
  font-size: 90%;
  padding-left: 10px;
  box-sizing: border-box;;
  border: 2px solid black;
}

.survey-title-input:focus {
  background-color: rgba(3, 155, 229, 0.4);
  outline: none;
}

.survey-styling-name {
  margin-left: 5%;
  font-size: 0.8vw;
  font-weight: bold;
  letter-spacing: 0.6px;
  margin-top: 15px;
}

.survey-styling-panel {
  background-color: #d5dbdb;
  cursor: not-allowed;
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  border-radius: 10px;
  flex: 1;
  font-size: 0;
  border: 2px solid black;
  box-sizing: border-box;
}

.survey-styling-panel-active {
  background-color: white;
  cursor: default;
}

.survey-styling-tab {
  margin: 0;
  padding: 0;
  width: 33.33%;
  height: 20%;
  background-color: #d5dbdb;
  border: none;
  border-bottom: 2px solid black;
  box-sizing: border-box;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 0.8vw;
}

.survey-styling-tab-left {
  border-radius: 10px 0 0 0;
  border-right: 2px solid black;
}

.survey-styling-tab-right {
  border-radius: 0 10px 0 0;
  border-left: 2px solid black;
}

.survey-styling-tab:hover {
  background-color: rgba(3, 155, 229, 0.4);
}

.survey-styling-tab:focus {
  outline: 0;
}

.cursor-default {
  cursor: default;
}

.survey-styling-panel-sub {
  width: 100%;
  height: 80%;
  background: none;
  display: none;
}

.survey-styling-points-shapes, .survey-styling-lines-colour, .survey-styling-area-outline {
  width: 65%;
  height: 100%;
  float: left;
}

.survey-styling-size {
  width: 35%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.styling-title {
  text-align: center;
  width: 100%;
  margin-top: 15px;
  height: 20%;
  font-size: 0.9vw;
}

.styling-panel-core {
  width: 100%;
  height: calc(100% - calc(20% + 15px));
  position: relative;
}

.shapes-div {
  margin-right: 7.33%;
  width: 15%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.shapes-div-circle {
  margin-left: 9%;
}

.shapes-circle, .shapes-square, .shapes-cross, .shapes-diagonal-cross {
  position: absolute;
  height: 0;
  border: 0;
  margin-top: 15%;
  padding-top: 100%;
  width: 100%;
  cursor: pointer;
}

.shapes-circle {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/circle.png');
  background-size: 100%;
}

.shapes-circle:hover {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/circle_selected.png');
  opacity: 0.6;
}

.shapes-circle-selected {
  position: absolute;
  height: 0;
  border: 0;
  margin-top: 15%;
  padding-top: 100%;
  width: 100%;
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/circle_selected.png');
  background-size: 100%;
}

.shapes-square {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/square.png');
  background-size: 100%;
}

.shapes-square:hover {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/square_selected.png');
  opacity: 0.6;
}

.shapes-square-selected {
  position: absolute;
  height: 0;
  border: 0;
  margin-top: 15%;
  padding-top: 100%;
  width: 100%;
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/square_selected.png');
  background-size: 100%;
}

.shapes-cross {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/cross.png');
  background-size: 100%;
}

.shapes-cross:hover {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/cross_selected.png');
  opacity: 0.6;
}

.shapes-cross-selected {
  position: absolute;
  height: 0;
  border: 0;
  margin-top: 15%;
  padding-top: 100%;
  width: 100%;
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/cross_selected.png');
  background-size: 100%;
}

.shapes-diagonal-cross {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/diagonal_cross.png');
  background-size: 100%;
}

.shapes-diagonal-cross:hover {
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/diagonal_cross_selected.png');
  opacity: 0.6;
}

.shapes-diagonal-cross-selected {
  position: absolute;
  height: 0;
  border: 0;
  margin-top: 15%;
  padding-top: 100%;
  width: 100%;
  background-image: url('https://peargiscloud.s3.eu-central-1.amazonaws.com/SurveyDesigner/images/diagonal_cross_selected.png');
  background-size: 100%;
}

.shapes-circle:active, .shapes-square:active, .shapes-cross:active, .shapes-diagonal-cross:active {
  outline: none;
}

.header-divider-overview {
  margin-top: 0;
  width: 100%;
  background-image: linear-gradient(to right, transparent, transparent, transparent),
    linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
  background-image: -moz-linear-gradient(to right, white, transparent, transparent),
    -webkit-linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
  background-image: -ms-linear-gradient(to right, white, transparent, transparent),
    -webkit-linear-gradient(transparent, rgba(0,0,0,0.55) 150%);
}

.drag-and-drop-panel {
  border: 2px solid #12293b;
  box-sizing: border-box;
  margin-left: 5%;
  width: 90%;
  margin-top: 15px;
  padding-bottom: 13%;
  height: calc(100% - calc(30px + 15px + 3px));
  border-radius: 10px;
  padding-top: 5px;
  overflow-y: auto;
}

.drag-and-drop-panel-hover {
  border: 3px dashed #12293b;
}

.used-attribute {
  margin-left: 2%;
  width: 96%;
  margin-bottom: 5px;
  box-sizing: border-box;
  border: 1px solid #12293b;
  transition: 0.3s;
  cursor: move;
  padding-left: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 5px;
  background-color: #d5dbdb;
  white-space: pre;
}

.used-attribute-page-break {
  background-color: #12293b;
  transition: 0.3s;
}

.used-attribute-page-break > .used-attribute-title,
.used-attribute-page-break > .used-attribute-type {
  color: white;
  text-align: center;
  font-weight: normal;
}

.used-attribute-page-break:hover > .used-attribute-title,
.used-attribute-page-break:hover > .used-attribute-type {
  color: black;
}

.used-attribute:hover {
  background-color: white;
}

.used-attribute-hover {
  border: 2px dashed #12293b;
}

.used-attribute-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
  font-size: 0.8vw;
  font-weight: bold;
  display: block;
}

.used-attribute-type {
  display: block;
  color: black;
  font-size: 0.6vw;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.used-attribute-selected {
  background-color: rgba(255, 186, 82, 0.6);
  color: black;
  border: 2px solid black;
  box-sizing: border-box;
  box-shadow: 0.5px 0.5px;
}

.used-attribute-selected > .used-attribute-title,
.used-attribute-selected > .used-attribute-type {
  color: black;
}

/*
  Properties - Options
*/

.attribute-name {
  margin-left: 5%;
  font-size: 0.8vw;
  font-weight: bold;
  letter-spacing: 0.6px;
  margin-top: 15px;
  display: none;
}

.attribute-name-input {
  background-color: none;
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  border-radius: 10px;
  height: 4%;
  font-size: 90%;
  padding-left: 10px;
  box-sizing: border-box;
  border: 2px solid black;
  display: none;
}

.attribute-name-input:focus {
  background-color: rgba(3, 155, 229, 0.4);
  outline: none;
}

.attribute-options {
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  height: 16%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px solid black;
  display: none;
  flex-wrap: wrap;
  align-content: flex-start;
  position: relative;
}

.attribute-options-panel {
  width: 50%;
  height: 33.33%;
  position: relative;
}

.checklist-options-panel {
  display: none;
  width: 100%;
}

.attribute-options-radio {
  left: 20%;
  top: 25%;
  position: relative;
  font-size: 0.75vw;
  cursor: pointer;
}

.attribute-options-checklist {
  left: 10%;
}

.options-radio-text {
  top: 15%;
}

/*
  Properties - Auto Set
*/

.attribute-auto-set {
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  height: 14%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px solid black;
  display: none;
}

.auto-set-radio-panel {
  width: 100%;
  height: 17.5%;
}

.attribute-auto-set-radio {
  left: 3%;
  top: 25%;
  position: relative;
  font-size: 0.75vw;
  cursor: pointer;
}

.auto-set-info {
  margin-top: 15px;
  margin-left: 10%;
  width: 80%;
  height: 60%;
  padding-left: 5%;
  padding-right: 5%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px dashed black;
  font-size: 0.69vw;
  text-align: center;
  display: table;
  overflow: hidden;
  visibility: hidden;
}

.vertical-align-text {
  display: table-cell;
  vertical-align: middle;
}

.auto-set-disabled {
  cursor: not-allowed;
  color: grey;
  border: none;
}

.auto-set-disabled-background {
  background-color: rgba(46, 49, 49, 0.2);
  border: none;
}

/*
  Properties - Auto Increment
*/

.attribute-auto-increment {
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  height: 21%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px solid black;
  display: none;
}

.auto-increment-info {
  margin-top: 5px;
  margin-left: 10%;
  width: 80%;
  height: 40%;
  padding-left: 5%;
  padding-right: 5%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px dashed black;
  font-size: 0.69vw;
  text-align: center;
  display: table;
  overflow: hidden;
  visibility: hidden;
}

.auto-set-prefix {
  width: 100%;
  margin-top: 5px;
  height: calc(47% - 10px);
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.auto-set-prefix-panel-1 {
  width: 20%;
  height: 100%;
  position: relative;
}

.auto-set-prefix-panel-2 {
  width: 30%;
  height: 100%;
  position: relative;
}

.start-input-label {
  width: 100%;
  position: absolute;
  display: inline-block;
  text-align: right;
  top: 35%;
  font-size: 0.75vw;
}

.start-input-text {
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
  margin-left: 5%;
  width: 60%;
  position: absolute;
  top: 20%;
  height: 55%;
  font-size: 1vw;
  padding-left: 10px;
  text-align: center;
}

.start-input-text::-webkit-inner-spin-button,
.start-input-text::-webkit-outer-spin-button {
  opacity: 1;
}

.start-input-text:focus {
  background-color: rgba(3, 155, 229, 0.4);
  outline: none;
}

.prefix-input-text {
  padding-left: 0;
}

/*
  Properties - Value Size
*/

.attribute-value-size {
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  height: 7.9%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px solid black;
  display: none;
  flex-wrap: wrap;
  align-content: flex;
}

.value-size-prefix-panel-1 {
  width: 20%;
  height: 100%;
  position: relative;
}

.value-size-prefix-panel-2 {
  width: 20%;
  height: 100%;
  position: relative;
}

.value-size-prefix-panel-3 {
  width: 30%;
  height: 100%;
  position: relative;
}

.value-size-prefix-panel-4 {
  width: 25%;
  height: 100%;
  position: relative;
}

.value-size-label {
  width: 100%;
  position: absolute;
  display: inline-block;
  text-align: right;
  top: 35%;
  font-size: 0.75vw;
}

.value-size-text {
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
  margin-left: 7%;
  width: 90%;
  position: absolute;
  top: 20%;
  height: 60%;
  font-size: 1vw;
  text-align: center;
}

.value-size-text:focus {
  background-color: rgba(3, 155, 229, 0.4);
  outline: none;
}

.value-size-text-2 {
  width: 72%;
}

.value-size-text::-webkit-inner-spin-button,
.value-size-text::-webkit-outer-spin-button {
  opacity: 1;
}

.value-size-disabled {
  cursor: not-allowed;
  color: grey;
  border: none;
}

.value-size-disabled-background {
  background-color: rgba(46, 49, 49, 0.2);
  border: none;
}

/*
  Properties - Attribute Delete
*/

.attribute-delete-btn {
  margin-left: 5%;
  margin-bottom: 15px;
  width: 90%;
  height: 6%;
  position: absolute;
  bottom: 0;
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 1.0vw;
  cursor: pointer;
  background-color: rgba(209, 39, 39, 0.4);
  transition: 0.5s;
  display: none;
}

.attribute-delete-btn:hover {
  background-color: rgba(209, 39, 39, 1);
  color: white;
}

/*
  Properties - Drop Down
*/

.drop-down-list {
  background-color: none;
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  border-radius: 10px;
  height: 4%;
  font-size: 90%;
  padding-left: 10px;
  box-sizing: border-box;
  border: 2px solid black;
  display: none;
}

.drop-down-list:focus {
  background-color: rgba(3, 155, 229, 0.4);
  outline: none;
}

.normal-drop-down-panel, .categorised-drop-down-panel {
  position: relative;
  width: 100%;
  margin-top: 5px;
  display: none;
  flex: 1 1 auto;
}

.drop-down-items-list {
  position: relative;
  left: 5%;
  width: 90%;
  height: 68%;
  font-size: 0.85vw;
  text-align: center;
  border-radius: 15px 0 0 15px;
  box-sizing: border-box;
  border: 2px solid black;
  letter-spacing: 1px;
  padding: 5px;
  visibility: hidden;
  overflow-x: visible;
}

.drop-down-items-list > option:disabled,
.drop-down-category-items > option:disabled {
  color: black;
}

.drop-down-items-list:focus, .drop-down-categories:focus,
.drop-down-category-items:focus {
  outline: none;
}

.drop-down-categories {
  position: relative;
  left: 5%;
  width: 40%;
  height: 57%;
  font-size: 0.75vw;
  text-align: center;
  border-radius: 15px 0 0 15px;
  box-sizing: border-box;
  border: 2px solid black;
  letter-spacing: 1px;
  padding: 5px;
  overflow-x: visible;
}

.drop-down-category-items {
  position: relative;
  left: 10%;
  width: 42.5%;
  height: 57%;
  font-size: 0.75vw;
  text-align: center;
  border-radius: 15px 0 0 15px;
  box-sizing: border-box;
  border: 2px solid black;
  letter-spacing: 1px;
  padding: 5px;
  overflow-x: visible;
}

.depends-on-list {
  position: relative;
  width: 64%;
  height: 8%;
  margin-top: 12px;
  box-sizing: border-box;
  border: 2px solid black;
  border-radius: 10px;
  left: 1%;
  font-size: 90%;
  padding-left: 3%;
}

.depends-on-list:focus {
  background-color: rgba(3, 155, 229, 0.4);
  outline: none;
}

.depends-on-label {
  position: relative;
  width: 25%;
  font-size: 0.8vw;
  text-align: center;
  margin-left: 5%;
  float: left;
  margin-top: 17px;
}

.manage-drop-downs-btn, .manage-drop-downs-btn-2 {
  left: 5%;
  width: 90%;
  height: 10%;
  margin-top: 3%;
  position: relative;
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 1.0vw;
  cursor: pointer;
  background-color: rgba(18, 41, 59, 0.4);
  transition: 0.5s;
}

.manage-drop-downs-btn:hover, .manage-drop-downs-btn-2:hover {
  background-color: rgba(18, 41, 59, 1);
  color: white;
}

.attribute-delete-btn-2 {
  left: 5%;
  width: 90%;
  height: 10%;
  margin-top: 3%;
  position: relative;
  border: 2px solid black;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 1.0vw;
  cursor: pointer;
  background-color: rgba(209, 39, 39, 0.4);
  transition: 0.5s;
}

.attribute-delete-btn-2:hover {
  background-color: rgba(209, 39, 39, 1);
  color: white;
}

/*
  Properties - Image File Name.
*/

.attribute-file-name {
  margin-top: 5px;
  margin-left: 5%;
  width: 90%;
  height: auto;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px solid black;
  display: none;
  position: relative;
  text-align: center;
}

.attribute-file-name-text {
  font-size: 9px;
  padding-left: 8px;
  padding-right: 8px;
  margin-top: 7px;
  margin-bottom: 3px;
}

.attribute-file-name-note {
  font-size: 8px;
  text-align: center;
}

#fileNameSelect {
  display: block;
  width: 80%;
  margin-left: 10%;
  margin-top: 15px;
  margin-bottom: 9px;
  font-size: 12.5px;
  height: 23px;
  border-radius: 3px
}

/*
  Properties - QTRA Message.
*/

.qtra-message {
  margin-top: 25px;
  margin-left: 5%;
  width: 90%;
  height: auto;
  border-radius: 10px;
  border: 2px dashed black;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-size: 1vw;
}

/*
  Manage Drop-Downs modal
*/

.manage-drop-down-modal {
  z-index: 4;
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
  display: none;
  border: 3px solid black;
  border-radius: 15px;
  box-sizing: border-box;
}

.manage-drop-down-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.manage-header {
  width: 100%;
  height: 10%;
  background-color: #1E678F;
  border-radius: 13px 13px 0 0;
  border-bottom: 2px solid black;
  box-sizing: border-box;
  color: white;
  font-size: 1.3vw;
  letter-spacing: 3px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.ok-modal-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10%;
  height: 10%;
  background-color: #1E678F;
  border-radius: 10px 0 10px 0;
  border: none;
  border-left: 3px solid black;
  border-top: 3px solid black;
  font-size: 1.25vw;
  color: white;
  cursor: pointer;
  outline: none;
  transition: 0.5s;
}

.ok-modal-button:hover {
  background-color: #12293b;
}

.manage-left-panel {
  width: 35%;
  height: 90%;
  float: left;
  background-color: #d5dbdb;
  border-radius: 0 0 0 15px;
}

.manage-right-panel {
  width: calc(65% - 5px);
  height: 90%;
  float: left;
  background-color: white;
  border-radius: 0 0 15px 0;
}

.manage-panel-divider {
  margin: 0;
  padding: 0;
  width: 5px;
  height: 90%;
  border: 0;
  z-index: 4;
  float: left;
  background-image: linear-gradient(to right, white, grey, grey, white);
}

.manage-left-top-panel {
  width: 100%;
  height: 80%;
  display: flex;
  flex-flow: column;
}

.manage-left-bottom-panel {
  width: 100%;
  height: 20%;
  display: flex;
  flex-flow: column;
}

.manage-drop-downs-list-title {
  height: auto;
  font-size: 0.9vw;
  padding-left: 10%;
  margin-top: 15px;
  font-weight: bold;
}

.manage-drop-downs-list {
  flex: 1;
  position: relative;
  left: 10%;
  width: 80%;
  margin-top: 5px;
  margin-bottom: 5px;
  border-radius: 15px 0 0 15px;
  border: 2px solid black;
  box-sizing: border-box;
  text-align: center;
  padding: 2%;
  outline: none;
}

.new-drop-down-title {
  height: auto;
  font-size: 0.9vw;
  padding-left: 10%;
  margin-top: 25px;
  font-weight: bold;
}

.new-drop-down-panel {
  flex: 1;
}

.manage-new-button-container {
  width: 100%;
  flex: 1;
  padding-top: 5px;
  padding-bottom: 15px;
  font-size: 0;
}

.new-drop-down-button {
  height: 100%;
  margin-left: 10%;
  width: 39%;
  border-radius: 15px;
  border: 2px solid black;
  box-sizing: border-box;
  font-size: 0.9vw;
  color: black;
  cursor: pointer;
  background-color: white;
  transition: 0.5s;
  outline: none;
}

.new-drop-down-button:hover {
  background-color: #12293b;
  color: white;
}

.margin-left-2 {
  margin-left: 2%;
}

.manage-right-panel-name {
  height: 14%;
  width: 100%;
  display: none;
}

.manage-right-panel-normal {
  height: 63%;
  width: 100%;
  display: none;
  flex-flow: column;
}

.manage-right-panel-categorised {
  height: 63%;
  width: 100%;
  display: none;
  flex-flow: column;
  flex-direction: row;
}

.manage-categories-container {
  height: 100%;
  width: 47.5%;
  display: flex;
  flex-direction: column;
}

.manage-category-items-container {
  display: flex;
  flex-direction: column;
  width: 52.5%;
  height: 100%;
}

.manage-right-panel-options {
  height: 23%;
  width: 100%;
  display: none;
  flex-flow: column;
  flex-direction: row;
}

.manage-drop-down-name-title {
  padding-left: 5%;
  padding-top: 15px;
  font-size: 0.9vw;
  font-weight: bold;
}

.manage-drop-down-name {
  position: relative;
  left: 5%;
  width: 60%;
  height: 42%;
  top: 5px;
  border-radius: 15px;
  border: 2px solid black;
  box-sizing: border-box;
  padding-left: 10px;
  outline: none;
}

.normal-items-list-title, .category-list-title,
.category-items-list-title {
  padding-left: 5%;
  padding-top: 15px;
  font-size: 0.9vw;
  font-weight: bold;
}

.category-list-title {
  padding-left: 10.75%;
}

.normal-items-list {
  margin-top: 5px;
  position: relative;
  left: 5%;
  width: 60%;
  flex: 1;
  overflow-y: scroll;
  overflow-x: visible;
  border-radius: 15px 0 0 15px;
  resize: none;
  border: 2px solid black;
  box-sizing: border-box;
  outline: none;
  padding: 7px;
}

.manage-add-new-values {
  width: 60%;
  border: 2px solid black;
  box-sizing: border-box;
  position: relative;
  left: 5.375%;
  margin-top: 30px;
  margin-bottom: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding-right: 15px;
}

.manage-add-new-checkbox {
  position: relative;
  width: 30px;
  height: 30px;
  left: 5%;
  cursor: pointer;
}

.manage-add-new-checkbox-label {
  position: relative;
  left: 10%;
  font-size: 0.8vw;
  margin-right: 10%;
  word-wrap: break-word;
  word-break: normal;
  cursor: pointer;
}

.delete-drop-down-button {
  height: 10%;
  margin-left: 10%;
  width: 80%;
  border-radius: 15px;
  border: 2px solid black;
  box-sizing: border-box;
  font-size: 0.9vw;
  cursor: pointer;
  background-color: rgba(209, 39, 39, 0.4);
  transition: 0.5s;
  outline: none;
}

.delete-drop-down-button:hover {
  background-color: rgba(209, 39, 39, 1);
  color: white;
}

.manage-categories-list {
  margin-top: 5px;
  margin-left: 10.75%;
  width: 89.25%;
  height: 88%;
  overflow-y: scroll;
  overflow-x: visible;
  border-radius: 15px 0 0 0;
  border: 2px solid black;
  box-sizing: border-box;
  outline: none;
  padding: 7px;
}

.import-csv-container {
  position: relative;
  display: flex;
  height: 12%;
  left: 10.75%;
  width: 89.25%;
}

.import-csv-button {
  position: relative;
  height: 100%;
  width: 85%;
  border: 2px solid black;
  box-sizing: border-box;
  outline: none;
  border-radius: 0 0 0 15px;
  font-size: 0.8vw;
  background-color: #d5dbdb;
  justify-content: center;
  display: flex;
  align-items: center;
}

.file-input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.tooltip-csv-help {
  height: 100%;
  width: 15%;
  border-top: 2px solid black;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  box-sizing: border-box;
  font-size: 1.2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #12293b;
  color: white;
  cursor: default;
}

.csv-help-table {
  margin-left: 5%;
  width: 90%;
  font-size: 0.7vw;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: none !important;
  margin-top: -10px;
}

.help-cell-small {
  width: 40%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.help-cell-large {
  width: 60%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.cell-border {
  border-bottom: 1px solid black;
  box-sizing: border-box;
}

.category-name-container {
  display: flex;
  position: relative;
  left: 10.75%;
  width: 80.75%;
  height: 10%;
  margin-top: 5px;
}

.manage-categories-edit {
  position: relative;
  width: 85%;
  height: 100%;
  border: 2px solid black;
  box-sizing: border-box;
  border-radius: 15px 0 0 0;
  outline: none;
  padding-left: 10px;
}

.delete-category-button {
  position: relative;
  width: 15%;
  height: 100%;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  border-left: none;
  box-sizing: border-box;
  border-radius: 0 15px 0 0;
  outline: none;
  font-size: 1vw;
  background-color: rgba(209, 39, 39, 0.4);
  transition: 0.5s;
}

.delete-button-glow {
  cursor: pointer;
}

.delete-button-glow:hover {
  background-color: rgba(209, 39, 39, 1);
  color: white;
}

.category-items-list {
  position: relative;
  left: 10.75%;
  width: 80.75%;
  flex: 1;
  overflow-y: scroll;
  overflow-x: visible;
  border-radius: 0 0 0 15px;
  border: 2px solid black;
  box-sizing: border-box;
  outline: none;
  padding: 7px;
  resize: none;
}

.new-category-option {
  background-color: black;
  cursor: pointer;
  color: white;
  margin-left: -7px;
  padding-left: 7px;
  width: 100%;
  width: calc(100% + 3.5px);
  margin-top: 5px;
}

.cateogry-text-size {
  font-size: 1vw;
}

/*
  Media Queries
*/

@media screen and (min-width: 992px) {
  .survey-designer-window {
    margin-left: 5%;
    width: 90%;
  }

  .message-banner {
    left: 5%;
    width: 90%;
  }

  .attribute-item-text {
    top: 15%;
  }

  .options-radio-text {
    top: 15%;
  }

  .arrow-up {
    top: 33%;
    right: 33.5%;
  }

  .confirm-message {
    font-size: 1.6vw;
  }

  .depends-on-label {
    font-size: 1vw;
  }

  .manage-drop-down-modal {
    left: 10%;
    top: 15%;
    width: 80%;
    height: 70%;
  }

  .manage-add-new-checkbox-label {
    font-size: 0.9vw;
  }

  .delete-category-button {
    font-size: 1.2vw;
  }

  .import-csv-button {
    font-size: 0.9vw;
  }

  .tooltip-csv-help {
    font-size: 1.3vw;
  }

  .tooltip-info, .tooltip-info-fixed {
    font-size: 0.9vw !important;
  }

  .csv-help-table {
    font-size: 0.8vw !important;
  }

  .peargis-anchor {
    width: 6%;
  }

  .pear-anchor {
    width: 20%;
  }

  .peargis-label {
    width: 74%;
  }

  .arrow-label {
    font-size: 2.5vw;
  }

  .arrow-down {
    left: 47.5%;
    width: 5%;
  }

  .attribute-file-name-text {
    font-size: 11px;
  }
  
  .attribute-file-name-note {
    font-size: 10px;
  }
}

@media screen and (min-width: 1300px) {

  .manage-category-items-container {
    display: flex;
    flex-direction: column;
  }

  .survey-designer-window {
    margin-left: 10%;
    width: 80%;
  }

  .message-banner {
    left: 10%;
    width: 80%;
  }

  .attribute-item-text {
    top: 20%;
  }

  .options-radio-text {
    top: 20%;
  }

  .confirm-message {
    font-size: 1.4vw;
  }

  .depends-on-label {
    font-size: 0.9vw;
  }

  .manage-drop-down-modal {
    left: 15%;
    top: 15%;
    width: 70%;
    height: 70%;
  }

  #fileNameSelect {
    width: 60%;
    margin-left: 20%;
  }

  .attribute-file-name-text {
    font-size: 12px;
  }
  
  .attribute-file-name-note {
    font-size: 11px;
  }
}

@media screen and (min-width: 1500px) {
  .survey-designer-window {
    margin-left: 10%;
    width: 80%;
  }

  .message-banner {
    left: 10%;
    width: 80%;
  }

  .attribute-item-text {
    top: 15%;
  }

  .message-panel {
    font-size: 1.05vw;
  }

  .confirm-message {
    font-size: 1.2vw;
  }

  .manage-add-new-checkbox-label {
    font-size: 0.85vw;
  }

  .delete-category-button {
    font-size: 1vw;
  }

  .import-csv-button {
    font-size: 0.8vw;
  }

  .tooltip-csv-help {
    font-size: 1.2vw;
  }

  .tooltip-info, .tooltip-info-fixed {
    font-size: 0.8vw !important;
  }

  .csv-help-table {
    font-size: 0.7vw !important;
  }

  .peargis-anchor {
    width: 4.5%;
  }

  .pear-anchor {
    width: 15%;
  }

  .peargis-label {
    width: 80.5%;
  }

  .arrow-label {
    font-size: 2vw;
  }

  .arrow-down {
    left: 48%;
    width: 4%;
  }

  .qtra-message {
    font-size: 0.8vw;
  }
}

@media screen and (min-width: 1800px) {
  .survey-designer-window {
    margin-left: 15%;
    width: 70%;
  }

  .options-radio-text {
    top: 23%;
  }

  .message-banner {
    left: 15%;
    width: 70%;
  }

  .arrow-up {
    top: 32%;
    right: 35%;
  }

  .tooltip-info {
    font-size: 0.8vw;
    max-width: 15%;
  }

  .depends-on-label {
    font-size: 0.8vw;
  }

  .manage-drop-down-modal {
    left: 20%;
    top: 15%;
    width: 60%;
    height: 70%;
  }

  .manage-add-new-checkbox-label {
    font-size: 0.8vw;
  }

  .category-text-size {
    font-size: 0.9vw;
  }
}

/* Tablets in Portrait Mode */
@media screen and (orientation: portrait) and (min-width: 600px) and (max-width: 1280px) {
  .survey-styling-tab {
    font-size: 1.0vw;
  }

  .styling-title {
    height: 10%;
    font-size: 1.4vw;
  }

  .shapes-div {
    margin-left: 17%;
    width: 25%;
    height: 50%;
  }

  .pixel-unit {
    font-size: 1.2vw;
  }

  .options-radio-text {
    top: 15%;
    font-size: 1vw;
  }

  .auto-set-info {
    font-size: 1vw;
  }

  .start-input-text {
    width: 75%;
  }

  .start-input-label {
    top: 40%;
  }

  .value-size-text {
    width: 110%;
  }

  .value-size-text-2 {
    width: 90%;
  }

  .attribute-delete-btn, .attribute-delete-btn-2 {
    font-size: 1.5vw;
  }

  .manage-drop-downs-btn, .manage-drop-downs-btn-2 {
    font-size: 1.5vw;
  }

  .value-size-label {
    top: 45%;
  }

  .message-panel {
    font-size: 2.5vw;
  }

  .arrow-up {
    top: 27%;
    right: 30%;
  }

  .menu-panel {
    width: 40%;
    padding-top: 7%;
  }

  .menu-option {
    font-size: 1.9vw;
  }

  .menu-button {
    font-size: 2.3vw;
  }

  .save-template-btn {
    left: 73%;
    font-size: 1.6vw;
  }

  .drop-down-items-list {
    font-size: 1.5vw;
  }

  .drop-down-categories, .drop-down-category-items {
    font-size: 1.4vw;
  }

  .attribute-item-text {
    font-size: 1.5vw;
  }

  .confirm-modal {
    left: 30%;
    width: 40%;
  }

  .confirm-message {
    font-size: 2.8vw;
    height: 50%;
  }

  .message-confirm-button, .message-cancel-button,
  .message-no-button {
    font-size: 1.8vw;
  }

  .manage-drop-downs-btn {
    margin-top: 6%;
  }

  .attribute-delete-btn-2 {
    margin-top: 6%;
  }

  .manage-drop-downs-btn-2 {
    margin-top: 8%;
  }

  .depends-on-label {
    font-size: 1.4vw;
  }

  .manage-drop-down-modal {
    left: 2.5%;
    top: 15%;
    width: 95%;
    height: 70%;
  }

  .manage-header {
    font-size: 2.8vw;
  }

  .category-title-size {
    font-size: 2vw;
  }

  .new-drop-down-button, .delete-drop-down-button {
    font-size: 1.7vw;
  }

  .category-text-size {
    font-size: 1.9vw;
  }

  .normal-items-list, .manage-drop-down-name {
    width: 80%;
  }

  .manage-add-new-checkbox-label {
    font-size: 1.7vw;
  }

  .delete-category-button {
    font-size: 1.8vw;
  }

  .import-csv-button {
    font-size: 1.6vw;
  }

  .tooltip-csv-help {
    font-size: 2.1vw;
  }

  .tooltip-info, .tooltip-info-fixed {
    font-size: 1.1vw !important;
  }

  .csv-help-table {
    font-size: 1.0vw !important;
  }

  .tooltip-info {
    font-size: 1.9vw !important;
  }

  .tooltip-info-fixed {
    font-size: 1.9vw !important;
  }

  .csv-help-table {
    font-size: 1.7vw !important;
  }

  .peargis-anchor {
    width: 10%;
  }

  .pear-anchor {
    width: 33.33%;
  }

  .peargis-label {
    width: 56.67%;
    font-size: 3.5vw;
  }

  .app-title {
    font-size: 8vw;
    margin-top: 5%;
  }

  .arrow-label {
    font-size: 4.5vw;
  }

  .arrow-down {
    left: 45.5%;
    width: 9%;
  }

  .ok-modal-button {
    width: 14%;
    height: 12.5%;
    font-size: 2.4vw;
  }

  .qtra-message {
    font-size: 1.7vw;
  }
}

/* Phones in Landscape Mode */
@media screen and (orientation: landscape) and (max-height: 550px) {
  .attribute-item-text {
    top: -45%;
  }

  .styling-title {
    margin-top: 3%;
  }

  .styling-title-size {
    margin-top: 9%;
  }

  .size-input, .color-input-small, .color-input-large, .color-input-outline {
    height: 80%;
  }

  .styling-title-outline, .styling-title-fill {
    margin-bottom: 5%;
  }

  .options-radio-text {
    top: 10%;
  }

  .message-banner {
    height: 25%;
  }

  .message-panel {
    font-size: 1.75vw;
  }

  .arrow-up {
    top: 37%;
    right: 32%;
  }

  .shapes-circle, .shapes-square, .shapes-cross, .shapes-diagonal-cross {
    margin-top: 25%
  }

  .menu-panel {
    width: 30%;
  }

  .menu-option {
    font-size: 1.3vw;
  }

  .menu-button {
    font-size: 1.4vw;
  }

  .save-template-btn {
    left: 77%;
    font-size: 1.2vw;
  }

  .switch {
    height: 24px;
  }

  .slider:before {
    height: 20px;
    width: 20px;
    bottom: 2px;
  }

  .drop-down-list {
    font-size: 70%;
  }

  .manage-drop-downs-btn-2 {
    margin-top: 1%;
  }

  .depends-on-list {
    margin-top: 2%;
  }

  .depends-on-label {
    margin-top: 3%;
  }

  .manage-drop-down-modal {
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
  }

  .category-title-size {
    font-size: 1.4vw;
  }

  .category-text-size {
    font-size: 1.2vw;
  }

  .manage-add-new-values {
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .manage-add-new-checkbox-label {
    font-size: 1.2vw;
  }

  .delete-category-button {
    font-size: 1.2vw;
  }

  .import-csv-button {
    font-size: 1vw;
  }

  .tooltip-csv-help {
    font-size: 1.4vw;
  }

  .tooltip-info {
    font-size: 1.1vw !important;
  }

  .tooltip-info-fixed {
    font-size: 1.0vw !important;
  }

  .csv-help-table {
    font-size: 0.9vw !important;
  }

  .peargis-anchor {
    width: 6%;
  }

  .pear-anchor {
    width: 20%;
  }

  .peargis-label {
    width: 74%;
  }

  .app-title {
    font-size: 5vw;
    margin-top: -5%;
  }

  .arrow-label {
    font-size: 3vw;
  }

  .arrow-down {
    left: 47%;
    width: 6%;
  }

  .ok-modal-button {
    width: 10%;
    height: 14%;
    font-size: 1.8vw;
  }

  .new-drop-down-title {
    margin-top: 10px;
  }

  .manage-new-button-container {
    padding-bottom: 5px;
  }

  .qtra-message {
    font-size: 1.2vw;
  }
}

/* Square Monitors */
@media screen and (min-width: 992px) and (max-width: 1500px) and (min-height: 900px) and (orientation: landscape) {
  .shapes-div {
    margin-top: 6%;
  }

  .options-radio-text {
    top: 20%;
  }

  .value-size-label {
    top: 40%;
  }

  .message-panel {
    font-size: 1.5vw;
  }

  .arrow-up {
    top: 29%;
    right: 33%;
  }

  .menu-panel {
    width: 30%;
  }

  .menu-option {
    font-size: 1.4vw;
  }

  .menu-button {
    font-size: 1.8vw;
  }

  .save-template-btn {
    left: 76%;
    font-size: 1.1vw;
  }

  .confirm-message {
    font-size: 1.6vw;
    height: 42%;
  }

  .message-confirm-button, .message-cancel-button,
  .message-no-button {
    font-size: 1.1vw;
  }

  .manage-drop-downs-btn-2 {
    margin-top: 7%;
  }

  .depends-on-label {
    margin-top: 22px;
  }

  .manage-drop-down-modal {
    left: 10%;
    top: 15%;
    width: 80%;
    height: 70%;
  }

  .manage-header {
    font-size: 1.6vw;
  }

  .category-title-size {
    font-size: 1.4vw;
  }

  .new-drop-down-button, .delete-drop-down-button {
    font-size: 1.1vw;
  }

  .category-text-size {
    font-size: 1.4vw;
  }

  .normal-items-list, .manage-drop-down-name {
    width: 70%;
  }

  .manage-add-new-checkbox-label {
    font-size: 1.1vw;
  }

  .delete-category-button {
    font-size: 1.2vw;
  }

  .import-csv-button {
    font-size: 1.1vw;
  }

  .tooltip-csv-help {
    font-size: 1.6vw;
  }

  .tooltip-info, .tooltip-info-fixed {
    font-size: 1.1vw !important;
  }

  .csv-help-table {
    font-size: 1.0vw !important;
  }

  .peargis-anchor {
    width: 6%;
  }

  .pear-anchor {
    width: 20%;
  }

  .peargis-label {
    width: 74%;
  }

  .app-title {
    font-size: 6vw;
  }

  .arrow-label {
    font-size: 3vw;
  }

  .arrow-down {
    left: 47%;
    width: 6%;
  }

  .ok-modal-button {
    font-size: 1.7vw;
  }

  .qtra-message {
    font-size: 1vw;
  }
}
