.form-group {
    width: 100%;
}


.form-control,
.form-control:focus {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;

    height: 60px;
    border-radius: 8px;

    box-shadow: none !important;
    outline: none !important;
}

.form-alternative {
    height: 40px !important;
    font-size: 10px !important;
}

.form-control::placeholder {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #4c4c4c;
}

label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: green;
}

.FormMaterial {
    position: relative;
}

.FormMaterial input {
    padding: 15px 0 0 15px;
}

.FormMaterial input:focus {
    border: 1px solid var(--corGeral) !important;
}

.FormMaterial label {
    position: absolute;
    cursor: text;
    margin: -40px 0 0 19px;

    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;

    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.LabelRequired:before {
    position: absolute;
    content: '*';
    color: var(--corGeral);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    margin: 4px 0 0 0;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.FormMaterial input.filled~label,
.FormMaterial input:focus~label {
    font-size: 12px;
    position: absolute;
    margin: -55px 0 0 14px;
}

.ForceFilled {
    font-size: 12px !important;
    color: #00a5c9 !important;
    position: absolute !important;
    margin: -55px 0 0 14px !important;
}

.LabelSelectMaterial {
    font-size: 12px;
    position: absolute;
    font-weight: 500;
    margin: 5px 0 0 14px;
    z-index: 11;
}

.TextareaObs {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 100%;
    height: 150px;
    border-radius: 8px !important;
    border: none;
    outline: none;
    padding: 20px;
}

.TextareaObs:focus {
    border: 1px solid var(--corGeral) !important;
    outline: none;
    box-shadow: none;
}























.quantity {
    position: relative;
}

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;
}

.quantity input {
    width: 100%;
    height: 60px;
    float: left;
    display: block;
    margin: 0;
    padding: 26px 0 8px 15px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    letter-spacing: .5px !important;
    margin-bottom: 10px;
}

.quantity input:focus {
    border: 1px solid var(--corGeral);
    outline: none;
    box-shadow: none;
}

.quantity label {
    position: absolute;
    left: 0;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 5px 0 0 14px;
}

.quantity-nav {
    float: right;
    position: relative;
    height: 58px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    width: 25px;
    text-align: center;
    font-size: 16px;
    font-family: "Trebuchet MS", Helvetica, sans-serif !important;
    line-height: 1.7;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    top: 0;
}

.quantity-button.quantity-down {
    position: absolute;
    bottom: -1px;
    height: 50%;
}









.switch__container {
    width: 70px;
}

.switch {
    visibility: hidden;
    position: absolute;
    margin-left: -9999px;
}

.switch+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.switch--shadow+label {
    padding: 2px;
    width: 60px;
    height: 30px;
    /*background-color: #dddddd;*/
    border-radius: 30px;
}

.switch--shadow+label:before,
.switch--shadow+label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
}

.switch--shadow+label:before {
    right: 1px;
    background-color: #f1f1f1;
    border-radius: 60px;
    transition: background 0.4s;
}

.switch--shadow+label:after {
    width: 32px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
}

.switch--shadow:checked+label:before {
    background-color: var(--corGeral);
}

.switch--shadow:checked+label:after {
    transform: translateX(27px);
}

/* Estilo Flat */
.switch--flat+label {
    padding: 2px;
    width: 120px;
    height: 60px;
    background-color: #dddddd;
    border-radius: 60px;
    transition: background 0.4s;
}

.switch--flat+label:before,
.switch--flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

.switch--flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #fff;
    border-radius: 60px;
    transition: background 0.4s;
}

.switch--flat+label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 56px;
    background-color: #dddddd;
    border-radius: 52px;
    transition: margin 0.4s, background 0.4s;
}

.switch--flat:checked+label {
    background-color: #00a5c9;
}

.switch--flat:checked+label:after {
    margin-left: 30px;
    background-color: #00a5c9;
}












.InputImagem {
    width: 100%;
    position: relative;
    height: 55px;
}


input[type='file'] {
    width: 100%;
    height: 25px;
    opacity: 0;
    background: none;
    background-image: none;
    border: none;
    outline: none;
}

#val {
    width: 85%;
    height: 55px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: black;
    text-indent: 10px;
    pointer-events: none;
    border: 0px solid rgba(0, 0, 0, 0.30);
    background-color: rgba(0, 0, 0, 0.05);
    margin-top: -25px;
    padding: 0 0 0 15px;
    border-radius: 0px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    opacity: 0;
}

.Show_Val1 {
    opacity: 1 !important;
}

#ButtonUpload {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 15%;
    height: 55px;
    background-color: #00a5c9;
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -webkit-transition: 500ms all;
    -moz-transition: 500ms all;
    transition: 500ms all;
}

#ButtonUpload img {
    width: 25px;
    height: auto;
}

.BtnEnviarArquivo {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 55px;
    padding: 0 25px;
    background-color: var(--corGeral);
    color: var(--corFonteBtn);
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 8px;
}

#ButtonUpload:hover {
    background-color: 006699;
}

.customform-control {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 90%;
    padding: 0 0 0 25px;
    height: 55px;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;

    border-radius: 0px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
}









.DataList {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: white;
    border-radius: 8px;
    margin-top: 50px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.Show_DataList {
    opacity: 1 !important;
    pointer-events: auto;
    margin-top: 62px !important;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.DataList ul {
    display: contents;
    margin: -10px 0 0 0 !important;
}

.DataList li {
    display: block;
    padding: 8px 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.DataList li a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: black;
}

.DataList li:last-child {
    border-bottom: 0px solid #e5e5e5;
}

.DataList li:hover {
    background: #f7f7f7;
}

.TriggerDataList {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    margin-top: 17px;
    cursor: pointer;
    z-index: 2;
}

.TriggerDataList:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 0;
    right: 0;
    margin: 10px 10px 0 0;
    border-bottom: 2px solid var(--corFonte);
    border-right: 2px solid var(--corFonte);
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}














/* The container must be positioned relative: */
.custom-select {
    position: relative;
    width: 100% !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    height: 60px;
    padding: 0;
    border: none;
}

.custom-select select {
    display: none !important;
    /*hide original SELECT element: */
}

.select-selected {
    background-color: #f7f7f7;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 28px;
    right: 15px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--corGeral);
    border-right: 2px solid var(--corGeral);
    transform: rotate(45deg) translateY(-50%);
    transition: all .4s ease-in-out;
    transform-origin: 50% 0;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    transform: rotate(-135deg) translateY(-50%);
}

.select-selected {
    height: 60px;
    color: black;
    padding: 26px 0 0 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    cursor: pointer;
}

/* style the items (options), including the selected item: */
.select-items div {
    height: auto;
    color: black;
    padding: 8px 0 8px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 0px;
    cursor: pointer;
}

.select-items div:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.select-items div:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #f7f7f7;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0px;
    max-height: 300px;
    overflow: hidden;
    overflow-y: auto;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}