﻿
.form_textbox {
    height: 38px;
}

.submit_form {
    text-align: left;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: inline-block;
    padding: 15px;
    border: 1px solid gainsboro;
}

.popup_outer {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: inline-block;
    padding: 0px;
    border: 1px solid gainsboro;
    background-color: white;
}

    .popup_outer .submit_form {
        box-shadow: none;
        display: inline-block;
        padding: 0;
        border: none;
    }

.popup_server_error {
    padding: 0 !important;
    overflow: hidden !important;
}


.input_grid {
    font-size: 1em; /*used to set this 0 to implement zero space behavior between inline-block, now using letter-spacing*/
    letter-spacing: -1em;
}

.td_remove {
    color: darkred;
    text-align: center;
    padding: 0 4px;
    cursor: pointer;
    vertical-align: middle;
    font-size: 1.2em;
    width: 1px;
}

    .td_remove:hover {
        color: red;
    }

.td_add {
    background-color: gainsboro;
    padding: 5px;
    text-align: center;
    margin: 2px;
    cursor: pointer;
    border: 1px solid #b7b7b7;
    user-select: none;
}

    .td_add:hover {
        background-color: gray;
        color: white;
    }


td > .input_cont {
    padding: 2px;
}

    td > .input_cont > div > label {
        display: none;
    }

    td > .input_cont .selectboxit-text {
        text-align: center;
    }

.add_foreignlist > .input_cont .selectboxit-text {
    text-align: left;
}

.many2many_td {
    padding: 7px 5px;
}


.input_cont {
    font-size: 1em;
    display: inline-block;
    padding: 5px;
    box-sizing: border-box;
    vertical-align: middle;
    letter-spacing: normal
}

    .input_cont label {
        display: block;
        font-size: 0.75em;
        padding-bottom: 0.25em;
        color: dimgray;
    }

    .input_cont input, .input_cont textarea {
        display: block;
        display: block;
        box-sizing: border-box;
        width: 100%;
        border: none;
        border: 1px solid gainsboro;
        box-shadow: 0 1px 3px 0 #e6ebf1;
        transition: box-shadow 150ms ease;
    }

        .input_cont input[type="text"], .input_cont input[type="password"], .input_cont input[type="number"], .input_cont input[type="time"], .input_cont input[type="search"] {
            line-height: 2em;
            padding: 0 5px;
        }

    .input_cont textarea {
        white-space: pre-wrap;
    }

    .input_cont .intl-tel-input {
        display: block;
    }

.StripeElement {
    background-color: white;
    padding: 10px 12px;
    border: 1px solid gainsboro;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.calentim_date, .calentim_time {
    text-align: center;
}

.input_cont .calentim-inline .calentim-input {
    width: 100% !important;
    margin: 0;
}

.input_cont .calentim-inline {
    float: none !important;
    font-size: 0.9em;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        background: #4CAF50;
        cursor: pointer;
    }

    .slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        background: #4CAF50;
        cursor: pointer;
    }









.ck-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .ck-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: calc(50% - 17px);
    height: 33px;
    width: 34px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.ck-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ck-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ck-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ck-container .checkmark:after {
    left: 11px;
    top: 5px;
    width: 12px;
    height: 19px;
    border: solid white;
    border-width: 0px 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
