/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.sg-container p[for="latlong"] {
    display: flex;
    margin-top: 10px;
    overflow: hidden;
    width: 100%;
}

.sg-container label {
    width: 48%;
    margin: auto;
}

.sg-container label:nth-child(odd) {
    margin-left: 0px;
}

.sg-container label:nth-child(even) {
    margin-right: 0px;
}

.sg-container p[for="latlong"] label>input {
    width: 100%;
}

.sg-toggle-button-conainer {
    position: relative;
    margin-bottom: 25px;
}

input[type="checkbox"].sg-toggle-button {
    display: none;
}

.sg-toggle-btn {
    outline: 0;
    display: block;
    width: 55px;
    height: 30px;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 32px;
}

.sg-toggle-btn:after {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    left: 0px;
}

.sg-toggle-btn {
    background: #26262661;
    border-radius: 32px;
    padding: 2px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border: 1px solid #e8eae9;
    margin: auto 0px auto auto;
    position: absolute;
    right: 0px;
    top: 0px;
}

.sg-toggle-btn:after {
    border-radius: 2em;
    background: #fbfbfb;
    -webkit-transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08);
}

.sg-toggle-btn:hover:after {
    will-change: padding;
}

.sg-toggle-btn:active {
    box-shadow: inset 0 0 0 2em #e8eae9;
}

.sg-toggle-button:checked+.sg-toggle-btn:after {
    left: 50%;
}

.sg-toggle-btn:active:after {
    padding-right: .8em;
}

.sg-toggle-ios:checked+.sg-toggle-btn {
    background: #86d993;
}

.sg-map {
    height: 350px;
}

.sg-map .gm-svpc div img {
    position: relative !important;
}

.sg-lat-long.sg-hide {
    height: 0 !important;
    overflow: hidden;
    padding: 0px !important;
    margin: 0px !important;
}

.sg-lat-long:not(.sg-hide) {
    height: auto !important;
}

