#phone {
    /* width: 375px; */
    /* height: 640px; */
    background: #e7e7e7;
    padding: 4px;
    /* position: absolute; */
    /* top: calc(50% - 320px); */
    /* left: calc(50% - 187px); */
}

#phone ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: solid 1px #e7e7e7;
}

#phone ul li {
    margin: 0;
    background: #fff;
    padding: 12px;
    border-top: solid 1px #e7e7e7;
    overflow: hidden;
}

#phone ul li:hover {
    background: #f8f8f8;
}

#phone ul li.closed .editableContent {
    height: 0rem;
    position: relative;
}

#phone ul li label {
    margin: 6px 0 0 0;
    color: #959595;
}

#phone ul li .editableContent {
    display: block;
    /* height: 275px; */
    margin: 4px 0 0 0;
    transition: all 0.2s ease-out;
}

#phone ul li .editableContent .content {
    background: #e7e7e7;
    margin: 0 0 12px 0;
    height: 200px;
}

#phone ul li .btn-small {
    width: calc(50% - 6px);
    float: left;
}

#phone ul li .btn-small.btn-clear {
    margin-left: 12px;
}


/* form css edits */

.form-join {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.form-join label {
    margin: 5px 10px 5px 0;
}

.form-join input {
    vertical-align: middle;
    margin: 5px 10px 5px 0;
    padding: 10px;
    background-color: #fff;
    border: 2px solid rgb(255, 171, 15);
    border-radius: .5rem;
    width: 100%;
}

.form-join button {
    padding: 10px 20px;
    background-color: dodgerblue;
    border: 1px solid #ddd;
    color: white;
    cursor: pointer;
}

.form-join button:hover {
    background-color: royalblue;
}

@media (max-width: 800px) {
    .form-join input {
        margin: 10px 0;
    }
    .form-join {
        flex-direction: column;
        align-items: stretch;
    }
}

input,
input[type="radio"]+label,
input[type="checkbox"]+label:before,
select option,
select {
    width: 100%;
    padding: 1em;
    line-height: 1.4;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    border: solid 1px #bd8200;
}

input:focus {
    outline: 0;
    border-color: #bd8200;
}

input:focus+.input-icon i {
    color: #f0a500;
}

input:focus+.input-icon:after {
    border-right-color: #f0a500;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]+label,
select {
    display: inline-block;
    width: 50%;
    text-align: center;
    float: left;
    border-radius: 0;
}

input[type="radio"]+label:first-of-type {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

input[type="radio"]+label:last-of-type {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

input[type="radio"]+label i {
    padding-right: 0.4em;
}

input[type="radio"]:checked+label,
input:checked+label:before,
select:focus,
select:active {
    background-color: #f0a500;
    color: #fff;
    border-color: #bd8200;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    position: relative;
    display: block;
    padding-left: 1.6em;
}

input[type="checkbox"]+label:before {
    position: absolute;
    top: 0.2em;
    left: 0;
    display: block;
    width: 1em;
    height: 1em;
    padding: 0;
    content: "";
}

input[type="checkbox"]+label:after {
    position: absolute;
    top: 0.45em;
    left: 0.2em;
    font-size: 0.8em;
    color: #fff;
    opacity: 0;
    font-family: FontAwesome;
    content: "\f00c";
}

input:checked+label:after {
    opacity: 1;
}

select {
    height: 3.4em;
    line-height: 2;
}

select:first-of-type {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

select:last-of-type {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

select:focus,
select:active {
    outline: 0;
}

select option {
    background-color: #f0a500;
    color: #fff;
}

.input-group {
    margin-bottom: 1em;
    zoom: 1;
    flex-wrap: initial !important;
}

.input-group:before,
.input-group:after {
    content: "";
    display: table;
}

.input-group:after {
    clear: both;
}

.input-group-icon {
    position: relative;
}

.input-group-icon input {
    padding-left: 4.4em;
}

.input-group-icon .input-icon {
    position: absolute;
    top: 0;
    /* left: 0; */
    right: 0;
    width: 3.4em;
    height: 3.4em;
    /* line-height: 3.4em; */
    text-align: center;
    pointer-events: none;
    /* margin-right: 4px; */
    border: 1rem #bd8200;
}

.input-group-icon .input-icon:after {
    position: absolute;
    top: 0.6em;
    bottom: 0.6em;
    left: 3.4em;
    display: block;
    border-right: 1px solid #e5e5e5;
    content: "";
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.input-group-icon .input-icon i {
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}


/* .container {
    max-width: 38em;
    padding: 1em 3em 2em 3em;
    margin: 0em auto;
    background-color: #fff;
    border-radius: 4.2px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
} */


/* .row {
    zoom: 1;
} */

.row:before,
.row:after {
    content: "";
    display: table;
}

.row:after {
    clear: both;
}

.col-half {
    padding-right: 10px;
    float: left;
    width: 50%;
}

.col-half:last-of-type {
    padding-right: 0;
}

.col-third {
    padding-right: 10px;
    float: left;
    width: 33.33333333%;
}

.col-third:last-of-type {
    padding-right: 0;
}

.input-icon-select {
    position: absolute;
    top: 0;
    /* left: 0; */
    right: 0;
    width: 3.4em;
    height: 3.4em;
    /* line-height: 3.4em; */
    text-align: center;
    pointer-events: none;
}

@media only screen and (max-width: 540px) {
    .col-half {
        width: 100%;
        padding-right: 0;
    }
}


/* upload style */

input[type=file] {
    display: none;
}

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    max-width: 100%;
    width: 100%;
    font-size: 20px;
    /* 20px */
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 10px 20px;
    position: relative;
}

.no-js .inputfile+label {
    display: none;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label {
    border: 1px solid #e7edf0;
    background-color: #f7f9fa;
    padding: 0;
}

.inputfile+label .archive-name,
.inputfile+label .btn-inputfile {
    padding: 10px 20px 0;
    height: 50px;
    font-style: normal;
}

.inputfile+label .archive-name {
    width: 60%;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    color: #919298;
}

.inputfile+label .btn-inputfile {
    color: #fff;
    background-color: #df9943;
    display: inline-block;
    position: absolute;
    right: 0;
}

.inputfile:focus+label .btn-inputfile,
.inputfile.has-focus+label .btn-inputfile,
.inputfile+label:hover .btn-inputfile {
    background-color: #e62b3a;
}

@media screen and (max-width: 50em) {
    .inputfile+label .btn-inputfile {
        display: block;
    }
}

.modal-dialog-join-1 {
    max-width: 1300px !important;
}

.modal-dialog-join-2 {
    max-width: 1300px !important;
}

.v2below-titlepro-join {
    font-weight: 300;
    text-align: left
}

.v2below-titlepro-join {
    font-size: 10vw;
    line-height: .8;
    z-index: 2
}

.v2block-call-to-actionpro-join {
    background-color: #fff;
    padding-left: 50px;
    color: #fff;
    align-items: flex-start;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    height: 100vh;
}

.v2titlepro-join {
    font-size: 10vw;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
    z-index: 2
}

.v2below-titlepro-contact {
    font-weight: 300;
    text-align: left
}

.v2below-titlepro-contact {
    font-size: 5vw;
    line-height: .8;
    z-index: 2
}

.v2block-call-to-actionpro-contact {
    background-color: #fff;
    padding-left: 50px;
    color: #fff;
    align-items: flex-start;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    height: 100vh;
}

.v2titlepro-contact {
    font-size: 5vw;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
    z-index: 2
}