/*!
 * Milligram v1.3.0
 * https://milligram.github.io
 *
 * Copyright (c) 2017 CJ Patoilo
 * Licensed under the MIT license
 */

 /**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  color: #606c76;
  font-family:'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.6;
}

form {
  max-width: 600px;
  margin: 10px auto;
}

blockquote {
  border-left: 0.3rem solid #d1d1d1;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}

blockquote *:last-child {
  margin-bottom: 0;
}

.button,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  background-color: #bda164;
  border: 0;
  border-radius: .4rem;
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  height: 4.8rem;
  letter-spacing: .1rem;
  line-height: 3.8rem !important;
  padding: 0 3.0rem;
  text-align: center;
  text-decoration: none;
  text-transform: none !important;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif !important;
  position: relative;
}

.button:before,
button:before,
input[type='button']:before,
input[type='reset']:before,
input[type='submit']:before {
    content: "";
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.button:hover:before,
button:hover:before,
input[type='button']:hover:before,
input[type='reset']:hover:before,
input[type='submit']:hover:before,
.button:focus:before,
button:focus:before,
input[type='button']:focus:before,
input[type='reset']:focus:before,
input[type='submit']:focus:before{width: 100%;}

.button[disabled],
button[disabled],
input[type='button'][disabled],
input[type='reset'][disabled],
input[type='submit'][disabled] {
  cursor: default;
  opacity: .5;
}

.button[disabled]:focus, .button[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type='button'][disabled]:focus,
input[type='button'][disabled]:hover,
input[type='reset'][disabled]:focus,
input[type='reset'][disabled]:hover,
input[type='submit'][disabled]:focus,
input[type='submit'][disabled]:hover {
  background-color: #495666;
  border-color: #495666;
}

.button.button-outline,
button.button-outline,
input[type='button'].button-outline,
input[type='reset'].button-outline,
input[type='submit'].button-outline {
  background-color: transparent;
  color: #495666;
}

.button.button-outline:focus, .button.button-outline:hover,
button.button-outline:focus,
button.button-outline:hover,
input[type='button'].button-outline:focus,
input[type='button'].button-outline:hover,
input[type='reset'].button-outline:focus,
input[type='reset'].button-outline:hover,
input[type='submit'].button-outline:focus,
input[type='submit'].button-outline:hover {
  background-color: transparent;
  border-color: #495666;
  color: #495666;
}

.button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover,
button.button-outline[disabled]:focus,
button.button-outline[disabled]:hover,
input[type='button'].button-outline[disabled]:focus,
input[type='button'].button-outline[disabled]:hover,
input[type='reset'].button-outline[disabled]:focus,
input[type='reset'].button-outline[disabled]:hover,
input[type='submit'].button-outline[disabled]:focus,
input[type='submit'].button-outline[disabled]:hover {
  border-color: inherit;
  color: #9b4dca;
}

.button.button-clear,
button.button-clear,
input[type='button'].button-clear,
input[type='reset'].button-clear,
input[type='submit'].button-clear {
  background-color: transparent;
  border-color: transparent;
  color: #495666;
}

.button.button-clear:focus, .button.button-clear:hover,
button.button-clear:focus,
button.button-clear:hover,
input[type='button'].button-clear:focus,
input[type='button'].button-clear:hover,
input[type='reset'].button-clear:focus,
input[type='reset'].button-clear:hover,
input[type='submit'].button-clear:focus,
input[type='submit'].button-clear:hover {
  background-color: transparent;
  border-color: transparent;
  color: #495666;
}

.button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
button.button-clear[disabled]:focus,
button.button-clear[disabled]:hover,
input[type='button'].button-clear[disabled]:focus,
input[type='button'].button-clear[disabled]:hover,
input[type='reset'].button-clear[disabled]:focus,
input[type='reset'].button-clear[disabled]:hover,
input[type='submit'].button-clear[disabled]:focus,
input[type='submit'].button-clear[disabled]:hover {
  color: #495666;
}

code {
  background: #f4f5f6;
  border-radius: .4rem;
  font-size: 86%;
  margin: 0 .2rem;
  padding: .2rem .5rem;
  white-space: nowrap;
}

pre {
  background: #f4f5f6;
  border-left: 0.3rem solid #9b4dca;
  overflow-y: hidden;
}

pre > code {
  border-radius: 0;
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

hr {
  border: 0;
  border-top: 0.1rem solid #f4f5f6;
  margin: 3.0rem 0;
}

input[type='email'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0.1rem solid #aaaaaa;
  border-radius: 0;
  box-shadow: none;
  box-sizing: inherit;
  height: 44px;
  padding: 10px;
  width: 100%;
  color: #333;
  line-height: 24px;
}

input[type='email']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
textarea:focus,
select:focus {
  border-color: #bda164;
  background-color: #ffffff;
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#ccc" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 3.0rem;
  -moz-background: url('arrow.png');
}

select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#bda064" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0 !important;
  margin-top: .7rem;
  line-height: 1.2rem !important;
  color: #666;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type='checkbox'],
input[type='radio'] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: .5rem;
}

.container {
  margin: 0 auto;
  max-width: 112.0rem;
  padding: 0 2.0rem;
  position: relative;
  width: 100%;
}

.row {
  display: flex;
  flex-direction: column;
  padding: 10px 0 0 15px;
  width: 100%;
}

.row.row-no-padding {
  padding: 0;
}

.row.row-no-padding > .column {
  padding: 0;
}

.row.row-wrap {
  flex-wrap: wrap;
}

.row.row-top {
  align-items: flex-start;
}

.row.row-bottom {
  align-items: flex-end;
}

.row.row-center {
  align-items: center;
}

.row.row-stretch {
  align-items: stretch;
}

.row.row-baseline {
  align-items: baseline;
}

.row .column {
  display: block;
  flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}

.row .column.column-offset-10 {
  margin-left: 10%;
}

.row .column.column-offset-20 {
  margin-left: 20%;
}

.row .column.column-offset-25 {
  margin-left: 25%;
}

.row .column.column-offset-33, .row .column.column-offset-34 {
  margin-left: 33.3333%;
}

.row .column.column-offset-50 {
  margin-left: 50%;
}

.row .column.column-offset-66, .row .column.column-offset-67 {
  margin-left: 66.6666%;
}

.row .column.column-offset-75 {
  margin-left: 75%;
}

.row .column.column-offset-80 {
  margin-left: 80%;
}

.row .column.column-offset-90 {
  margin-left: 90%;
}

.row .column.column-10 {
  flex: 0 0 10%;
  max-width: 10%;
}

.row .column.column-20 {
  flex: 0 0 20%;
  max-width: 20%;
}

.row .column.column-25 {
  flex: 0 0 25%;
  max-width: 25%;
}

.row .column.column-33, .row .column.column-34 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.row .column.column-40 {
  flex: 0 0 40%;
  max-width: 40%;
}

.row .column.column-50 {
  flex: 0 0 50%;
  max-width: 50%;
}

.row .column.column-60 {
  flex: 0 0 60%;
  max-width: 60%;
}

.row .column.column-66, .row .column.column-67 {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}

.row .column.column-75 {
  flex: 0 0 75%;
  max-width: 75%;
}

.row .column.column-80 {
  flex: 0 0 80%;
  max-width: 80%;
}

.row .column.column-90 {
  flex: 0 0 90%;
  max-width: 90%;
}

.row .column .column-top {
  align-self: flex-start;
}

.row .column .column-bottom {
  align-self: flex-end;
}

.row .column .column-center {
  -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 40rem) {
  .row {
    flex-direction: row;
    margin-left: -1.0rem;
    width: calc(100% + 2.0rem);
  }
  .row .column {
    margin-bottom: inherit;
    padding: 0 1.0rem;
  }
}

a {
  color: #9b4dca;
  text-decoration: none;
}

a:focus, a:hover {
  color: #606c76;
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3.0rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: circle inside;
}

.button,
button,
dd,
dt,
li {
  margin-bottom: 1.0rem;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

table {
  border-spacing: 0;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid #e1e1e1;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

td:first-child,
th:first-child {
  padding-left: 0;
}

td:last-child,
th:last-child {
  padding-right: 0;
}

b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: -.1rem;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}

h1 {
  font-size: 1.75em;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-size: 2.4rem !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  padding: 10px 0;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.clearfix:after {
  clear: both;
  content: ' ';
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/*# sourceMappingURL=milligram.css.map */


/*========== RYAN EDITS ==========*/
.questions-container {
  /*padding:10px 30px 30px;*/
}
.col-1 {
  width:33%;
  margin:0 2% 0 0;
}

.col-2 {
  width:50%;
  margin:0 2% 0 0;
}

.col-3 {
  width:100%;
}
@media (max-width: 40rem) {
    .col-1, .col-2, .col-3 {margin: 0 auto;}
}
@media (max-width: 30rem) {
    .col-1, .col-2 {width:75%;}
}

button.close-2 {
  padding: 0 6px;
  border: solid 2px #fff !important;
  color: #fff;
  font-size: 18px !important;
  font-weight: 600;
  text-decoration: none;
  margin: 15px;
  height: 30px;
  border-radius: 25px;
  line-height: 1.3em !important;
}
button.close-2:before {
    background: transparent;
}

.col-3::before {
    content: "";
    clear: both;
    display: table;
}

select, input{
display: block;
float: left;
height: 38px;
margin: 10px 10px 25px 0;
}

.section {
width: 100%;
display: block;
/*margin: 60px 0 30px;*/
}

.section.addition {
  border: 1px solid #495666 !important;
}

.section-head.addition {
  background-color: #495666 !important;
}

.section::after {
    content: "";
    clear: both;
    display: table;
}

.section-head {
  background: #bda064;
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif !important;
  padding: 0 0 0 15px;
}

label{
display: block;
}

#People_2,
#People_3,
#People_4,
#People_5,
#show-person-3,
#show-person-4,
#show-person-5,
#remove-person-2,
#remove-person-3,
#remove-person-4,
#remove-person-5,
#Home_2,
#Home_3,
#Home_4,
#Home_5,
#show-home-3,
#show-home-4,
#show-home-5,
#remove-home-2,
#remove-home-3,
#remove-home-4,
#remove-home-5,
#Valuables_2,
#Valuables_3,
#Valuables_4,
#Valuables_5,
#show-valuable-3,
#show-valuable-4,
#show-valuable-5,
#remove-valuable-2,
#remove-valuable-3,
#remove-valuable-4,
#remove-valuable-5,
#Vehicles_2,
#Vehicles_3,
#Vehicles_4,
#Vehicles_5,
#Vehicles_6,
#Vehicles_7,
#Vehicles_8,
#Vehicles_9,
#Vehicles_10,
#show-vehicle-3,
#show-vehicle-4,
#show-vehicle-5,
#show-vehicle-6,
#show-vehicle-7,
#show-vehicle-8,
#show-vehicle-9,
#show-vehicle-10,
#remove-vehicle-2,
#remove-vehicle-3,
#remove-vehicle-4,
#remove-vehicle-5,
#remove-vehicle-6,
#remove-vehicle-7,
#remove-vehicle-8,
#remove-vehicle-9,
#remove-vehicle-10,
.local-meta,
.web-meta,
#cd,
#md,
#cd-2,
#md-2,
#cd-3,
#md-3,
#cd-4,
#md-5,
#cd-5,
#md-5


{
display: none;
}


/* Customize the label (the cbox) */
.cbox {
  display: block;
  position: relative;
  padding: 0px 20px 10px 35px;
  margin: 0 0 12px 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 33%;
  float: left;
  height: 40px;
  font-weight: normal !important;
}

/* Hide the browser's default checkbox */
.cbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -7px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.cbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cbox input:checked ~ .checkmark {
  background-color: #495666;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ============ Radio Buttons =============== */

.section ul{
  list-style: none;
  margin: 0;
  padding: 0;
  height: 160px;
}

ul li{
  color: #666;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 30px;
}

ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

ul li label{
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 1.5rem;
  padding: 25px 25px 25px 80px;
  margin: 12px auto;
  height: 20px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

ul li:hover label{
  color: #111;
}

ul li .check{
  display: block;
  position: absolute;
  border: 4px solid #CCC;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 30px;
  left: 20px;
  z-index: 5;
}

ul li:hover .check {
  border: 4px solid #999;
}

ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 11px;
    width: 11px;
    top: 3px;
    left: 3px;
    margin: auto;
}

input[type=radio]:checked ~ .check {
  border: 4px solid #495666;
}

input[type=radio]:checked ~ .check::before{
  background: #495666;
}

input[type=radio]:checked ~ label{
  color: #495666;
}

.dollar-sign{
	float: left;
    font-size: 15px;
    margin: 10px -5px 0 0;
    background-color: #ccc;
    padding: 6px;
    border: 1px solid #ccc;
    border-top-left-radius: 0.4rem;
    border-bottom-left-radius: 0.4rem;
	position: relative;
	z-index: 3;

}

.dollar-dec{
	float: left;
    font-size: 15px;
    margin: 10px -5px 0 0;
    background-color: #ccc;
    padding: 6px;
    border: 1px solid #ccc;
    border-top-right-radius: 0.4rem;
    border-bottom-right-radius: 0.4rem;
	position: relative;
	z-index: 3;

}

.money-input{
	    width: 94% !important;
        margin-right: -31px;
}

/* ============ NEW STYLES =============== */


/*.tab-pane.active {display: block;}*/

header {
    padding: 10px;
    margin-bottom: 40px;
    height: 90px;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgb(170, 170, 170);

    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    justify-content: space-between;
    -webkit-justify-content: space-between !important;
}

    header img {
        display: inline-block;
    }
    header img.center {margin-left: -75px;}

    header .phone {
        color: rgb(170, 170, 170);
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

@media (max-width: 40rem) {
    header img.center {margin-left: 0;}
}

.zoey-pic {
    height: 150px;
    width: 150px;
    display: inline-block;
}

.insurence-list {
    margin-top: 10px !important;
}

    .insurence-list li {
        width: 33%;
        display: inline-block;
    }

        .insurence-list li a {
            display: block;
            color: #475566;
            text-decoration: none;
        }

            .insurence-list li a img {
                width: 70%;
                display: inline-block;
            }

            .insurence-list li a p {
                font-size: 0.75em;
                padding: 0.2em 0;
            }

@media (max-width: 30rem) {
    .insurence-list li {
        width: 50%;
        float: none;
    }
}

#People input {
    margin-bottom: 10px;
}
#People input::-webkit-input-placeholder {color: #aaaaaa;}
#People input::-moz-placeholder {color: #aaaaaa;}
#People input:-moz-placeholder {color: #aaaaaa;}
#People input:-ms-input-placeholder {color: #aaaaaa;}

/* iCheck plugin Square skin, blue */

.icheckbox_square-grey,
.iradio_square-grey {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0 15px 0 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(grey.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_square-grey {
    background-position: -24px 0;
}
    .icheckbox_square-grey.hover {
        background-position: -24px 0;
    }
    .icheckbox_square-grey.checked {
        background-position: -48px 0;
    }
    .icheckbox_square-grey.disabled {
        background-position: -72px 0;
        cursor: default;
    }
    .icheckbox_square-grey.checked.disabled {
        background-position: -96px 0;
    }

.iradio_square-grey {
    background-position: -120px 0;
}
    .iradio_square-grey.hover {
        background-position: -144px 0;
    }
    .iradio_square-grey.checked {
        background-position: -168px 0;
    }
    .iradio_square-grey.disabled {
        background-position: -192px 0;
        cursor: default;
    }
    .iradio_square-grey.checked.disabled {
        background-position: -216px 0;
    }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_square-grey,
    .iradio_square-grey {
        background-image: url(grey@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}

/* --- SELECT --- */

.select2-container {
    margin-bottom: 10px;
    width: 100% !important;
}

    .select2-container .select2-selection--single {
        height: 46px;
        outline: 0;
        background-color: transparent;
        border-radius: 0px;
        color: #444444;
        font-size: 16px;
        font-weight: 500;
    }
    .select2-container .select2-selection--single[aria-expanded="true"] {
        border-color: #bda164;
    }

        .select2-container--default .select2-selection--single .select2-selection__placeholder {color: #aaaaaa;}

        .select2-container--default .select2-selection--single .select2-selection__rendered {line-height: 44px;}

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            border: 0;
            margin-top: 9px;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow b:before,
        .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
            content: "";
            position: absolute;
            left: 50%;
            border-style: solid;
            margin-left: -6px;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
            margin-bottom: 1px;
            bottom: 50%;
            border-width: 0 6px 6px 6px;
            border-color: transparent transparent #e0e0e0 transparent;
        }
        .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
            margin-top: 1px;
            top: 50%;
            border-width: 6px 6px 0 6px;
            border-color: #e0e0e0 transparent transparent transparent;
        }
        .select2-container--default .select2-selection--single:hover .select2-selection__arrow b:before {border-color: transparent transparent #bda164 transparent}
        .select2-container--default .select2-selection--single:hover .select2-selection__arrow b:after {border-color: #bda164 transparent transparent transparent}

        .select2-search--dropdown {display: none;}

.select2-dropdown {
    border-color: #e0e0e0;
    border-radius: 0px;
    font-size: 16px;
}

    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        background-color: #bda164;
        color: #ffffff;
    }
    .select2-results__option {
        margin: 0;
        padding: 10px 5px;
        height: 44px;
    }

    .select2-container--classic .select2-selection--single:focus, .select2-container--classic.select2-container--open .select2-selection--single,
    .select2-container--classic.select2-container--open .select2-selection--multiple, .select2-container--classic .select2-selection--multiple:focus,
    .select2-container--classic.select2-container--open .select2-dropdown {border-color: #047bf8; }

/* --- OTHER CLASSES --- */

.no-margin {margin: 0;}
.margin-sm {margin-bottom: 20px;}

.align-items-center {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
}

.justify-content-between {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between !important;
}