body {
    margin: 0;
}

.backgoround-image-full {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    /*justify-content: center;*/
    min-height: 100vh;
    position: relative;
}

.backgoround-image-full:after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}
.content-page-form{
    z-index: 1;
    max-width: 550px;
    width: calc(100% - 30px);
    margin: 50px auto;

}
.content-page-form .input-content {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}
.icon-required-inside{
    color: red;
    position: absolute;
    right: 15px;
    top: 0;
    line-height: 40px;
    display: block;
    font-size:15px;
}
.input-content button{
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #16A085;
    background-color: #16A085;
    color: #fff;
    font-size: 20px;
    display: inherit;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.2s ease;
}
.input-content button:hover{
    border: 1px solid rgba(27, 194, 162, 0.8);
    background-color: rgba(27, 194, 162, 0.8);
}
.content-page-form .input-content input ,
.content-page-form .input-content textarea{
    width: calc(100% - 32px);
    padding: 0 15px;
    border: 1px solid rgba(0, 0, 0 , 0.2);
    background-color: rgb(249, 249, 249);
    font-size: 15px;
    line-height: 40px;
    color: #455A64;
    font-family: Arial;
}
.content-page-form .input-content input::placeholder ,
.content-page-form .input-content textarea::placeholder{
    color: #455A64;
    font-family: Arial;
}
.content-page-form .input-content textarea{
    resize: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.content-page-form form{
    width: calc(100% - 60px);
    padding: 30px;
    background-color: #fff;
}
#file {  display: none}

.file_label {
    display: block;
    /*margin: 50px auto;*/
    font-size: 15px;
    /*width: 250px;*/
    /*height: 40px;*/
    /*line-height: 40px;*/
    /*background-color: #e67e22;*/
    /*color: #FFF;*/
    /*text-align: center;*/
    font-size: 15px;
    color: #455A64;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    border: 1px dashed rgba(0, 0, 0 , 0.2);
    background-color: rgb(249, 249, 249);

}
.file_label span svg{
    width: 15px;
    height: 15px;
}

.file_label:hover {
    cursor: pointer;
    /*background-color: #f39c12;*/
    /*color: #ffffff;*/
}
label.checkbox::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 2px;
    border: 2px solid #cacaca;
}
label.checkbox span.check-icon{
    position: absolute;
    top: 0;
    left: 2px;
    width: 12px;
    height: 5px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 500ms ease;


}
label.checkbox span.check-icon::before{
     position: absolute;
     content: '';
     left: 11px;
     width: 3px;
     height: 11px;
     background-color: #16A085;
 }
label.checkbox span.check-icon::after{
    position: absolute;
    content: '';
    top: 8px;
    left: 7px;
    width: 4px;
    height: 3px;
    background-color: #16A085;
}
label.checkbox{
    position: relative;
    padding: 0 0 0 25px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
}
label.checkbox span.text{
    width: calc(100% - 10px);
    margin-left: 10px;
    font-size: 14px;
    color: #333338;

}
label.checkbox input[type="checkbox"]{
    display: none;
}
label.checkbox input[type="checkbox"]:checked + span.check-icon{
    opacity: 1;
}

.content-page-form .select2{
    min-width: 100%;
}
.content-page-form .select2-container--default .select2-selection--single{
    border: 1px solid  rgba(0, 0, 0 , 0.2);
}
.content-page-form .select2-container .select2-selection--single{
    height: 40px;
}
.content-page-form .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 38px;
}
.content-page-form .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 38px;
}
.content-page-form .select2-container .select2-selection--single .select2-selection__rendered{
    background-color: rgb(249, 249, 249)
}
.content-page-form .select2-container--default .select2-selection--single{
    border-radius: 0;
}
.content-page-form  .select2-container--default .select2-selection--single .select2-selection__rendered{
    font-family: Arial;
    font-size: 15px;
    color: #455A64;
}
