﻿.row {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.width5Percent {
    width: 5%;
}

.width90Percent {
    width: 95%;
}

.noPaddingLeftRight{
    padding-left: 0px;
    padding-right: 0px;
}

.noPaddingBottom {
    padding-bottom: 0px;
}

.pading5px {
    padding: 5px 5px 5px 5px;
}

.marginRigh5px {
    margin-right: 5px;
}

.marginLeft10px {
    margin-left: 10px;
}

.marginBottom2px {
    margin-bottom: 2px;
}

.marginBottom0px {
    margin-bottom: 0px;
}

.marginTopBottom0px {
    margin-bottom: 0px;
    margin-top: 0px;
}
.error {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

#saving{
    margin-bottom: 3px;
}

@media (min-width: 576px) {
    .widthFromTo {
        width: 100px;
    }

    .modal-icons-dialog {
        margin-left:20px;
        margin-top: 20px;
    }
}

@media (min-width: 768px) {
    .widthFromTo {
        width: 145px;
    }

    .modal-icons-dialog {
        margin-left: 20px;
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .widthFromTo {
        width: 240px;
    }

    .modal-icons-dialog {
        margin-left: 20px;
        margin-top: 20px;
    }
}

.TrialDays {
    color: red;
    text-align: right;
}

.noPaddingRight{
    padding-right:0px;
}

.labelIfAndReturn {
    font-weight: bold;
    text-align: right;
}

.displayNone{
    display: none;
}

.bt-glyphicons {
    margin: 0;
    overflow: hidden;
    width: 660px;
    margin: 5px 5px 5px 5px;
    padding: 10px 10px 10px 10px;
}

.bt-glyphicons-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bt-glyphicons li {
    float: left;
    width: 32px;
    height: 32px;
    padding-top: 1px;
    padding-left: 0px;
    text-align: center;
    border: 1px solid #ced4da;
    background-color: transparent;
}
    .bt-glyphicons li:hover {
        background-color: cornflowerblue;
    }

    .bt-glyphicons li img[src$='.svg'] {
        width: 24px;
        height: 24px;
    }

    #ulIcon img[src$='.svg'] {
        width: 24px;
        height: 24px;
    }

    #ulIcon img[src$='.gif'] {
        width: 24px;
        height: 24px;
    }

    #ulIcon img[src$='.png'] {
        width: 24px;
        height: 24px;
    }

    .text-center img[src$='.svg'] {
        width: 24px;
        height: 24px;
    }

    .text-center img[src$='.png'] {
        width: 24px;
        height: 24px;
    }

    .text-center img[src$='.gif'] {
        width: 24px;
        height: 24px;
    }

.icon-active {
    background-color: forestgreen !important;
}

.DialogIconsWidth {
    max-width: 700px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

    /* Hide default HTML checkbox */
    .switch input {
        display: none;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

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

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

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

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

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

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    76% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.If, .Else {
    border: 1px;
    border-style: dotted;
    margin-top: 3px;
    margin-bottom: 3px;
    border-width: thin;
    padding-bottom: 3px;
    padding-top: 3px;
}