/*  --------------------------------------------------
  Global style
  -------------------------------------------------- */
.dspopup-modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  top: 0;
  left: 0;
  z-index: 100;
}

.dspopup-modal {
  display: none;
  visibility: hidden;
  position: fixed;
  min-width: 300px;
  background: #f5f5f5;
  z-index: 101;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 0px 5px rgba(0, 0, 0, 0.4);
  /*.close-dspopup-modal {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    border-width: 0;
    border-radius: 25%;
    cursor: pointer;
    background: #aeaeae;
    color: #fff;
    text-align: center;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;

    &:before {
      display: block;
      content: '\00D7'; //'\2573';
      padding: 2px 5px 4px;
      font-size: 30px;
    }

    &:hover {
      background: #808080;
    }
  }*/
}
.dspopup-modal .close-dspopup-modal {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  border-width: 0;
  border-radius: 25%;
  cursor: pointer;
  background: transparent;
  text-align: center;
}
.dspopup-modal .close-dspopup-modal:before {
  padding: 2px 5px 4px;
  font-size: 30px;
}
.dspopup-modal .close-dspopup-modal svg:hover .st0 {
  fill: #808080;
}

.ds-form form {
  padding: 15px 30px;
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.ds-form form label {
  display: block;
  margin-bottom: 0;
  font-size: 0.875em;
  font-weight: normal;
  line-height: 2.05556em;
  color: #78767a;
  cursor: pointer;
}
.ds-form form label .required {
  color: #b21a41;
}
.ds-form form input:not([type]),
.ds-form form input[type="text"],
.ds-form form input[type="password"],
.ds-form form input[type="date"],
.ds-form form input[type="datetime"],
.ds-form form input[type="datetime-local"],
.ds-form form input[type="month"],
.ds-form form input[type="week"],
.ds-form form input[type="email"],
.ds-form form input[type="number"],
.ds-form form input[type="search"],
.ds-form form input[type="tel"],
.ds-form form input[type="time"],
.ds-form form input[type="url"],
.ds-form form input[type="color"],
.ds-form form select,
.ds-form form textarea {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 100%;
  display: block;
  height: 2.05556em;
  margin: 0 0 0.88889em 0;
  padding: 0.44444em;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  border-radius: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #78767a;
  font-family: inherit;
  font-size: .875em;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  transition: border-color 0.15s linear, background 0.15s linear;
  -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear;
}
.ds-form form input:not([type]):focus,
.ds-form form input[type="text"]:focus,
.ds-form form input[type="password"]:focus,
.ds-form form input[type="date"]:focus,
.ds-form form input[type="datetime"]:focus,
.ds-form form input[type="datetime-local"]:focus,
.ds-form form input[type="month"]:focus,
.ds-form form input[type="week"]:focus,
.ds-form form input[type="email"]:focus,
.ds-form form input[type="number"]:focus,
.ds-form form input[type="search"]:focus,
.ds-form form input[type="tel"]:focus,
.ds-form form input[type="time"]:focus,
.ds-form form input[type="url"]:focus,
.ds-form form input[type="color"]:focus,
.ds-form form select:focus,
.ds-form form textarea:focus {
  background-color: #fff;
  border-color: #999999;
  outline: none;
}
.ds-form form input:not([type]).improper-value,
.ds-form form input[type="text"].improper-value,
.ds-form form input[type="password"].improper-value,
.ds-form form input[type="date"].improper-value,
.ds-form form input[type="datetime"].improper-value,
.ds-form form input[type="datetime-local"].improper-value,
.ds-form form input[type="month"].improper-value,
.ds-form form input[type="week"].improper-value,
.ds-form form input[type="email"].improper-value,
.ds-form form input[type="number"].improper-value,
.ds-form form input[type="search"].improper-value,
.ds-form form input[type="tel"].improper-value,
.ds-form form input[type="time"].improper-value,
.ds-form form input[type="url"].improper-value,
.ds-form form input[type="color"].improper-value,
.ds-form form select.improper-value,
.ds-form form textarea.improper-value {
  border-color: #b21a41;
}
.ds-form form input[type="checkbox"] {
  vertical-align: middle;
}
.ds-form form input[type="radio"] {
  vertical-align: middle;
}
.ds-form form input[readonly],
.ds-form form input[readonly='readonly'],
.ds-form form textarea[readonly],
.ds-form form textarea[readonly='readonly'] {
  background-color: #eee;
  opacity: 1;
}
.ds-form form input[readonly]:hover, .ds-form form input[readonly]:active, .ds-form form input[readonly]:focus,
.ds-form form input[readonly='readonly']:hover,
.ds-form form input[readonly='readonly']:active,
.ds-form form input[readonly='readonly']:focus,
.ds-form form textarea[readonly]:hover,
.ds-form form textarea[readonly]:active,
.ds-form form textarea[readonly]:focus,
.ds-form form textarea[readonly='readonly']:hover,
.ds-form form textarea[readonly='readonly']:active,
.ds-form form textarea[readonly='readonly']:focus {
  background-color: #eee;
  opacity: 1;
}
.ds-form form input.readonly[readonly],
.ds-form form input.readonly[readonly='readonly'],
.ds-form form textarea.readonly[readonly],
.ds-form form textarea.readonly[readonly='readonly'] {
  border-color: transparent !important;
  background-color: transparent !important;
  padding-left: 0 !important;
  box-shadow: none;
}
.ds-form form input.readonly[readonly]:hover, .ds-form form input.readonly[readonly]:active, .ds-form form input.readonly[readonly]:focus,
.ds-form form input.readonly[readonly='readonly']:hover,
.ds-form form input.readonly[readonly='readonly']:active,
.ds-form form input.readonly[readonly='readonly']:focus,
.ds-form form textarea.readonly[readonly]:hover,
.ds-form form textarea.readonly[readonly]:active,
.ds-form form textarea.readonly[readonly]:focus,
.ds-form form textarea.readonly[readonly='readonly']:hover,
.ds-form form textarea.readonly[readonly='readonly']:active,
.ds-form form textarea.readonly[readonly='readonly']:focus {
  padding-left: 0 !important;
  border-color: transparent !important;
  background-color: transparent !important;
  opacity: 1;
  box-shadow: none;
}
.ds-form form input[disabled],
.ds-form form input[disabled='disabled'],
.ds-form form input.disabled,
.ds-form form textarea[disabled],
.ds-form form textarea[disabled='disabled'],
.ds-form form textarea.disabled {
  background-color: #eee;
  color: #808080;
  opacity: 1;
  cursor: not-allowed;
}
.ds-form form input[disabled]:hover, .ds-form form input[disabled]:active, .ds-form form input[disabled]:focus,
.ds-form form input[disabled='disabled']:hover,
.ds-form form input[disabled='disabled']:active,
.ds-form form input[disabled='disabled']:focus,
.ds-form form input.disabled:hover,
.ds-form form input.disabled:active,
.ds-form form input.disabled:focus,
.ds-form form textarea[disabled]:hover,
.ds-form form textarea[disabled]:active,
.ds-form form textarea[disabled]:focus,
.ds-form form textarea[disabled='disabled']:hover,
.ds-form form textarea[disabled='disabled']:active,
.ds-form form textarea[disabled='disabled']:focus,
.ds-form form textarea.disabled:hover,
.ds-form form textarea.disabled:active,
.ds-form form textarea.disabled:focus {
  background-color: #eee;
  opacity: 1;
  cursor: not-allowed;
}
.ds-form form input[type="submit"],
.ds-form form button[type="submit"] {
  width: auto;
  font-family: inherit;
  font-size: .875em;
  color: #fff;
  text-transform: none;
  padding: 8px 20px;
  background: #34495e;
  border-style: solid;
  border-width: 0px;
  border-color: #d0d0d0;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: 0;
  opacity: .75;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  transition: border-color 0.15s linear, background 0.15s linear, opacity 0.15s linear;
  -webkit-transition: border-color 0.15s linear, background 0.15s linear, opacity 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear, opacity 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear, opacity 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear, opacity 0.15s linear;
  cursor: pointer;
  height: auto;
}
.ds-form form input[type="submit"]:hover, .ds-form form input[type="submit"]:focus,
.ds-form form button[type="submit"]:hover,
.ds-form form button[type="submit"]:focus {
  opacity: 1;
}
.ds-form form select {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAICAMAAADUf89RAAAAXVBMVEXe3t7////e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t7e3t4c2GbBAAAAHnRSTlMAAAMGCQwPIScqMDM5P0Wfpau0usDDxuTn6u3w8/a+b40GAAAAS0lEQVQI123JRRKAQADEwODubvP/Z3KhYBfIMU00yaxyriCejV+7D5As929cDCBdr996WEC2SZI6jxeQ75J6nw9QHBoDfoByCLHgBAR/B7a3OfpzAAAAAElFTkSuQmCC);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 1.75em;
}
.ds-form form select option {
  padding: 0.22222em 0.64em;
  color: #78767a;
  font-family: inherit;
  font-size: .875em;
}
.ds-form form textarea {
  min-height: 6em;
}
.ds-form .inline {
  font-size: 0;
}
.ds-form .inline.label-left label {
  width: 28%;
  display: inline-block;
  margin-right: 2%;
}
.ds-form .inline.label-left input {
  display: inline-block;
  width: 70%;
}
.ds-form .inline.label-right label {
  display: inline-block;
  float: right;
  width: 30%;
}
.ds-form .inline.label-right input {
  display: inline-block;
  float: left;
  width: 65%;
}
.ds-form .clearfix:before, .ds-form .clearfix:after {
  content: " ";
  display: table;
}
.ds-form .clearfix:after {
  clear: both;
}
.ds-form .form-head {
  margin-bottom: 15px;
  border-bottom: 1px solid #d4d4d4;
  font-size: 1.5em;
  line-height: 2.05556em;
  color: #808080;
}
.ds-form .is_checkbox,
.ds-form .is_radio {
  display: block;
  text-align: left;
}
.ds-form .is_checkbox label,
.ds-form .is_radio label {
  margin-left: 2.05556em;
}
.ds-form .is_checkbox input,
.ds-form .is_radio input {
  margin-top: -22px;
}
.ds-form .infoform {
  margin-bottom: 15px;
  font-size: 12px;
  color: #b7b7b7;
}
.ds-form .error-form {
  margin-top: 15px;
  padding-left: 15px;
  font-size: .875em;
  color: #b21a41;
  list-style: none;
}
.ds-form .error-form li {
  list-style: none;
}
.ds-form .error-form li:before {
  content: "\00d7";
  float: left;
  margin-left: -15px;
  font-weight: 700;
}
.ds-form .buttonform {
  margin-top: 15px;
}
.ds-form .rating_selection {
  text-align: left;
  font-size: 0;
}
.ds-form .rating_selection label:first-of-type {
  display: none;
}
.ds-form .rating_selection input[type='radio'] {
  display: none;
}
.ds-form .rating_selection label {
  cursor: pointer;
  display: inline-block;
}
.ds-form .rating_selection label {
  display: inline-block;
  font-size: 30px;
  letter-spacing: 5px;
  color: #e9cd10;
  margin-right: 0;
}
.ds-form .rating_selection input:checked ~ label {
  color: #aaa;
}
.ds-form .rating_selection:hover label[for] {
  color: #e9cd10;
}
.ds-form .rating_selection:hover label:hover ~ label {
  color: #aaa;
}

.dspopup-modal .form-head {
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -15px;
  padding: 10px 30px;
}

[id*="formmessagereport"] {
  margin-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #78767a;
}
[id*="formmessagereport"] .form-head {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding: 10px 30px;
}
[id*="formmessagereport"] .error-report {
  padding: 15px 30px;
  text-align: center !important;
}
[id*="formmessagereport"] .error-report p {
  text-align: center !important;
}
[id*="formmessagereport"] .text-report p:first-child {
  margin-bottom: 20px;
  font-size: 1.125em;
}
[id*="formmessagereport"] .repeatform {
  color: #34495e;
}
[id*="formmessagereport"] .repeatform:hover, [id*="formmessagereport"] .repeatform:focus {
  color: #4f6f8f;
}

@media only screen and (min-width: 560px) {
  .dspopup-modal {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) {
  .dspopup-modal {
    margin-left: auto;
    margin-right: auto;
  }
}


#dsfeedback * {
  margin:0;

  color: black;
  transition: all 0.3s ease-out;
  font-family: 'SegoeUIRegular', Arial, sans-serif;
}

#dsfeedback input[type="submit"] {
  color: unset;

}

#dsfeedback {
  border-radius: 15px;
}

#dsfeedback-form .form-head {
  border:none;
  font-weight: bold;
}

#dsfeedback {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/images/5514478/bkk.png');
}

#dsfeedback .leftfeedbackfromwrap {
  display: inline-block;
  width: 52%;
  vertical-align: top;
}

 #dsfeedback .rightfeedbackfromwrap{
  display: inline-block;
  width: 45%;
  vertical-align: top;
}



#dsfeedback .leftfeedbackfromwrap {
  margin-right: 2%;
}

#dsfeedback .rightfeedbackfromwrap{
/*  margin-left: 2%;*/
}

.leftfeedbackfromwrapstring1 > div  {
  display: inline-block;
  width: 47%;
}


#dsfeedback .required {
  color: red;
}



#dsfeedback  input[type="submit"] {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-block;
    outline: none !important;
    border: none;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: medium;
    height: 36px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 16px;
    background: #d8383a;
    background: -moz-linear-gradient(top, #d8383a 0%, #b72b31 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d8383a), color-stop(100%, #b72b31));
    background: -webkit-linear-gradient(top, #d8383a 0%, #b72b31 100%);
    background: -o-linear-gradient(top, #d8383a 0%, #b72b31 100%);
    background: -ms-linear-gradient(top, #d8383a 0%, #b72b31 100%);
    background: linear-gradient(to bottom, #d8383a 0%, #b72b31 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d8383a', endColorstr='#b72b31', GradientType=0);
    color: #ffffff;
    border-top: none;
    -webkit-box-shadow: 0 3px 0 0 #901d25;
    -moz-box-shadow: 0 3px 0 0 #901d25;
    box-shadow: 0 3px 0 0 #901d25;
    padding: 0 32px;
    background: #d8383a;
    background: -moz-linear-gradient(top, #d8383a 0%, #c72d33 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d8383a), color-stop(100%, #c72d33));
    background: -webkit-linear-gradient(top, #d8383a 0%, #c72d33 100%);
    background: -o-linear-gradient(top, #d8383a 0%, #c72d33 100%);
    background: -ms-linear-gradient(top, #d8383a 0%, #c72d33 100%);
    background: linear-gradient(to bottom, #d8383a 0%, #c72d33 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d8383a', endColorstr='#c72d33', GradientType=0);
    color: #ffffff;
    opacity: 1;
}


#dsfeedback  input[type="submit"]:hover {
background: linear-gradient(to bottom, #d8383a 0%, #b72b31 100%);
}

#dsfeedback textarea {
  border-radius: 10px;
  font-size: 17px;
}

#dsfeedback .leftfeedbackfromwrapstring1   input {
  border-radius: 10px;
  min-height: 40px;
  padding: 10px;
  font-size: 17px;
}

#dsfeedback  .leftfeedbackfromwrapstring1 {
  margin-bottom: 20px;
}

#dsfeedback  #dsfeedback-form {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 45px;
}

.leftfeedbackfromwrapstring2 > div.buttonform{
  display: inline-block;
  vertical-align: top;
  width: 39%;
}

.leftfeedbackfromwrapstring2 > div.buttonform input {
  min-width: 170px;
  font-size: 17px;
}
.leftfeedbackfromwrapstring2 > div.text-bottom-from-sogls {
  display: inline-block;
  vertical-align: top;
  width: 60%;

}

#dsfeedback .leftfeedbackfromwrapstring2 > div.text-bottom-from-sogls > p {
    color: #969696;
    font-size: 14px;
}

#dsfeedback .leftfeedbackfromwrapstring2 > div.text-bottom-from-sogls > p > a{
    color: #23527c;
    
}

#dsfeedback .leftfeedbackfromwrapstring1 .field-3 {
  margin-right: 3%;
}

#dsfeedback  label {
  font-size: 17px;
}

#dsfeedbackformmessagereport .form-head {
  border: none;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0;
}

#dsfeedbackformmessagereport .error-report {
  font-size: 20px;
  margin-top: 0;
  padding-top:0;
}

#dsfeedbackformmessagereport .dsfeedbackformmessagereport {
  min-height: 230px;
}

@media (max-width: 1055px) {
  .leftfeedbackfromwrapstring2 > div.buttonform {
    width: 49%;
  }
  .leftfeedbackfromwrapstring2 > div.text-bottom-from-sogls {
    width: 49%;
  }
}

@media (max-width: 1050px) {
.leftfeedbackfromwrapstring1 > div {
  display: block;
  width: 100%;
}
.leftfeedbackfromwrapstring1 > div {
  display: block;
  width: 100%;
}
#dsfeedback textarea {
  min-height: 115px;
}
.leftfeedbackfromwrapstring2 > div.buttonform {
  display: block;
  width: 100%;
}
#dsfeedback .leftfeedbackfromwrapstring2 > div.text-bottom-from-sogls {
  display: block;
  width: 100%;
  margin-top: 20px;
}
}


@media (max-width: 650px) {
.leftfeedbackfromwrapstring1 > div {
  display: block;
  width: 100%;
}
.leftfeedbackfromwrapstring1 > div {
  display: block;
  width: 100%;
}
#dsfeedback textarea {
  min-height: 115px;
}
.leftfeedbackfromwrapstring2 > div.buttonform {
  display: block;
  width: 100%;
}
#dsfeedback .leftfeedbackfromwrapstring2 > div.text-bottom-from-sogls {
  display: block;
  width: 100%;
  margin-top: 20px;
}

#dsfeedback .leftfeedbackfromwrap {
  display: block;
  width: 100%;
  vertical-align: top;
}

 #dsfeedback .rightfeedbackfromwrap{
  display: block;
  width: 100%;
  vertical-align: top;
}
#dsfeedback .leftfeedbackfromwrapstring2 {
position: absolute;
bottom: 25px;
max-width: 230px
}

#dsfeedback {
  min-height: 600px;
}

#dsfeedback .leftfeedbackfromwrapstring2 input[type="submit"] {
  display: block;
  margin:0 auto;
}
#dsfeedback .leftfeedbackfromwrapstring2 > div.text-bottom-from-sogls p {
  text-align: center;
}
#dsfeedbackformmessagereport .form-head {
  text-align: center;
}
}

