/*************************************************
 CL MIXINS COLLECTION
**************************************************/
/*** Global Options ************/
/*
  PALM                 NOTPALM
------540-|...........................................

            TABLET             NOTPORTABLE
..........|-----750-|.................................

       PORTABLE       LAPTOP
....................|-----950-|.......................

               TABLETLAPTOP
..........|-540-----------950-|.......................

            NOTDESKTOP              DESKTOP
..............................|-950-------------------

                                         BIGDESKTOP
.......................................|-1350---------

*/
.contact-us-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 40, 0.5);
  z-index: 11;
}

.contact-us-dialog {
  position: fixed;
  top: 33.33%;
  left: 2.5%;
  width: 95%;
  background-color: #ffffff;
  z-index: 12;
}
@media (min-width: 576px) {
  .contact-us-dialog {
    left: 5%;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .contact-us-dialog {
    left: 10%;
    width: 80%;
  }
}
@media (min-width: 992px) {
  .contact-us-dialog {
    left: 25%;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .contact-us-dialog {
    left: 33.33%;
    width: 33.33%;
  }
}
.contact-us-dialog .contact-us-title {
  width: 100%;
  font-size: 2rem;
  line-height: 2rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.contact-us-dialog .contact-us-text {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  box-sizing: border-box;
}
.contact-us-dialog .contact-us-dropdown {
  display: flex;
  flex-direction: row;
  width: 70%;
  height: 50px;
  margin-left: 15%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  cursor: pointer;
  background-size: 20px;
  background-position: 95%;
  background-repeat: no-repeat;
}
.contact-us-dialog .contact-us-dropdown .contact-us-dropdown-label {
  display: flex;
  width: calc(100% - 50px);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 2rem;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-us-dialog .contact-us-dropdown-options {
  position: absolute;
  background-color: #ffffff;
  left: 15%;
  width: 70%;
  max-height: 225px;
  overflow: hiddem;
  overflow-y: scroll;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  z-index: 1;
}
.contact-us-dialog .contact-us-dropdown-options div {
  width: 100%;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
.contact-us-dialog .contact-us-dropdown-options div > ul {
  width: 100%;
  list-style: none;
  padding: 0px;
  margin: 0px;
  font-size: 19px;
  box-sizing: border-box;
}
.contact-us-dialog .contact-us-dropdown-options div > ul > li {
  width: 100%;
  list-style: none;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
.contact-us-dialog .contact-us-dropdown-options div > ul > li a {
  display: block;
  width: 100%;
  color: #444444;
  padding: 0.75rem 1rem;
  text-decoration: none !important;
  box-sizing: border-box;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
}
.contact-us-dialog .contact-us-dropdown-options div > ul > li a.nolink {
  pointer-events: none;
}
.contact-us-dialog .contact-us-dropdown-options div > ul > li a:hover, .contact-us-dialog .contact-us-dropdown-options div > ul > li a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
}
.contact-us-dialog .contact-us-dropdown-options div > ul > li > ul {
  width: 100%;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0px;
  font-size: 19px;
  box-sizing: border-box;
  font-size: 17px;
}
.contact-us-dialog .contact-us-dropdown-options div > ul > li > ul > li {
  width: 100%;
  list-style: none;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
.contact-us-dialog .contact-us-dropdown-options div > ul > li > ul > li a {
  padding: 0.5rem 1rem;
  font-weight: normal;
  text-transform: none;
}
.contact-us-dialog .contact-us-button {
  width: 70%;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 1rem;
  margin-left: 15%;
  margin-top: 1rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
  cursor: pointer;
}
.contact-us-dialog .contact-us-close-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Brown", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  cursor: pointer;
  transform: rotate(45deg);
}
