﻿.Business-logo-file-input {
    height: 230px;
    /* border: 1px solid #cacfe7; */
    /* background: white; */
    padding: 10px;
    /* width: 100%; */
    cursor: pointer;
    /* border-radius: 5px; */
    text-align: center;
}

.Business-sign-file-input {
    height: 115px;
    /* border: 1px solid #cacfe7; */
    /* background: white; */
    padding: 10px;
    /* width: 100%; */
    cursor: pointer;
    /* border-radius: 5px; */
    text-align: center;
}

.center {
    display: inline;
    margin: 3px;
}

.form-input {
    width: 100%;
    max-height: 100px;
    background: #fff;
}

    .form-input input {
        display: none;
    }

    .form-input label {
        width: 100%;
        height: 100px;
        cursor: pointer;
    }

.Business-logo-file-input .img-logo {
    max-width: 95% !important;
}

.Business-sign-file-input .img-sign {
    max-width: 45% !important;
}

.short-text{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* Basic Rules */
.switch input {
    display: none;
}

.switch {
    display: inline-block;
    width: 50px;
    height: 20px;
    margin: 8px;
    transform: translateY(50%);
    position: relative;
}
/* Style Wired */
.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 2px #777, 0 0 4px #777;
    cursor: pointer;
    border: 4px solid transparent;
    overflow: hidden;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background: #777;
        border-radius: 30px;
        transform: translateX(-30px);
        transition: .4s;
    }

input:checked + .slider:before {
    transform: translateX(30px);
    background: limeGreen;
}

input:checked + .slider {
    box-shadow: 0 0 0 2px limeGreen,0 0 2px limeGreen;
}

/* Style Flat */
.switch.flat .slider {
    box-shadow: none;
}

    .switch.flat .slider:before {
        background: #FFF;
    }

.switch.flat input:checked + .slider:before {
    background: white;
}

.switch.flat input:checked + .slider {
    background: limeGreen;
}