.switch {
    position: relative;
    display: inline-block;
    width:80px;
    height:44px;
    line-height:44px;
    /*width: 60px;
    height: 34px;
    line-height:60px;*/
    margin:10px 0px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    font-size:16px;
    font-weight:bold;
}

.slider:before {
    position: absolute;
    content: "";
    height: 36px;
    width: 36px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    font-size:16px;
    font-weight:bold;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(36px);
    -ms-transform: translateX(36px);
    transform: translateX(36px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

#left {
    text-align:left;
}

.slider.round:before {
    border-radius: 50%;
}

.cont_label {
    position:relative;
    display:inline-block;
    height:34px;
    width:180px;
    line-height:34px;
    margin:0px;
    padding:0px;
}

.cont_label .textbox {
    line-height:0px;
}

.cont_input input[type='text'] {
    position:relative;
    display:inline-block;
    height:34px;
    width:400px;
    line-height:34px;
    font-size:22px;
    margin:10px 0px;
}

.cont_input textarea {
    position:relative;
    display:inline-block;
    height:180px;
    width:400px;
    margin:10px 0px;
    font-size:22px;
}

.cont_input input[type='submit'] {
    -webkit-appearance: none;
    position:relative;
    display:inline-block;
    height:50px;
    width:250px;
    font-size:30px;
    font-weight:bold;
    cursor:pointer;
}

.contact_wrapper {
    position:relative;
    width:640px;
    margin:0px auto 30px auto;
    padding:0px;
}

.contact_wrapper table {
    position:relative;
    width:100%;
    text-align:center;
}

.contact_wrapper table .left {
    text-align:left;
    font-size:24px;
}

.text-gg-primary {
    color:#f26722;
}