﻿body {
}

.form-group.required .control-label:after {
    margin-left: 2px;
    content: "*";
    color: #b94a48;
}

#red {
    color: red;
}

.btn {
    background-color: lightgreen;
    font-weight: bold;
}

.required .control-label:after {
    margin-left: 2px;
    content: "*";
    color: #b94a48;
}


/*START - Same addres Toggle switch style*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 26px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 26px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + input + .slider {
    background-color: #3270B8;
}

input:focus + input + .slider {
    box-shadow: 0 0 1px #3270B8;
}

input:checked + input + .slider:before {
    -webkit-transform: translateX(34px);
    -ms-transform: translateX(34px);
    transform: translateX(34px);
}

.switch-text {
    display: inline-block;
    position: relative;
    margin: 2px 0 0 70px;
    font-size: 18px;
    font-weight: 500;
}
/*END - Toggle switch style*/


/*START - Styling Partner Company table*/
.partnercompany-name {
    font-size: 18px;
    width: 300px;
    vertical-align: middle;
    cursor: pointer;
    background: -webkit-linear-gradient(left, rgba(217,237,247,1) 0%,rgba(125,185,232,0) 100%);
    background: linear-gradient(to right, rgba(217,237,247,1) 0%,rgba(125,185,232,0) 100%);
}

.partnercompany-table th, partnercompany-table td {
    vertical-align: middle;
}

.detail-table tr:first-of-type th:not(:first-child) {
    background-color: #EEEEEE;
}

.detail-table tr:not(:first-of-type) td:last-child {
    text-align: right;
}

.detail-table tr:not(:first-of-type) td:not(:first-child) {
    border-style: dashed !important;
    border-color: #EfEfEF !important;
    border-width: 0 0 1px 0 !important;
    vertical-align: middle;
}

.detail-table tr td:first-child, .detail-table tr th:first-child {
    border-style: solid !important;
    border-width: 0 3px 0 0 !important;
    border-color: transparent #cccccc transparent transparent !important;
    width: 50px;
    overflow: hidden;
}

.contact-detail-table, .position-detail-table {
    display: none;
    /*-webkit-transition: all .1s linear;
    transition: all .1s linear;*/
    /*margin-top:15px;*/
}

.partnercompany-container {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    border-style: solid;
    border-color: #eeeeee transparent #eeeeee #cccccc;
    border-width: 1px 0 1px 3px;
    margin-bottom: 15px;
    box-shadow: 0px 1px 3px #dddddd;
}

    .partnercompany-container:hover {
        border-color: #eeeeee transparent #eeeeee #337ab7;
        box-shadow: 3px 2px 5px #cccccc;
    }

    .partnercompany-container > table.table {
        margin-bottom: 0;
    }

    .partnercompany-container .badge {
        background-color: #aaaaaa;
    }

.partnercompany-ico {
    position: relative;
    background-color: #eeeeee;
    left: 12px;
    border-radius: 20px 0 0 20px;
    width: 30px;
    text-align: right;
    padding: 4px 8px 2px 0;
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
}

    .partnercompany-ico span {
        color: #aaaaaa;
    }

.detail-button {
    background-image: url('/Images/bg.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 92% 92%;
    width: 140px;
    height: 36px;
    padding: 7px 17px 0 0;
    font-weight: 400;
    display: inline-block;
    text-align: right;
    cursor: pointer;
    opacity: .7;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}

    .detail-button:hover {
        opacity: 1;
        background-size: 100% 100%;
    }

/*END - Styling Partner Company table*/

/*START - Styling detail tabs in Partner Company detail*/
.detail-tabs {
}

    .detail-tabs.ui-widget.ui-widget-content {
        border: none;
    }

    .detail-tabs .ui-widget-header {
        background: none;
        border-width: 0 0 1px 0;
    }

    .detail-tabs .ui-tabs-active {
        background-color: #ffffff !important;
    }

    .detail-tabs .ui-state-active a, .detail-tabs .ui-state-active a:link, .detail-tabs .ui-state-active a:visited {
        color: #000000;
    }

    .detail-tabs .ui-state-active, .detail-tabs .ui-widget-content .ui-state-active, .detail-tabs .ui-widget-header .ui-state-active {
        border-width: 1px 1px 0 1px;
        border-color: #dddddd;
        outline: none !important;
        outline-color: transparent;
    }

        .detail-tabs .ui-state-active a:focus, .detail-tabs .ui-state-active a:active, .detail-tabs .ui-state-active a:visited {
            outline: none !important;
            outline-color: transparent;
        }
/*END - Styling detail tabs in Partner Company detail*/

/*START - Styling disabled inputs*/
.disabled, .disabled input, .disabled .form-group.required .control-label:after {
    color: #CCCCCC;
    cursor: not-allowed;
}
/*END - Styling disabled inputs*/

/*START - Styling textarea inputs*/
.txt-area {
    width: 100%;
    min-height: 160px;
}
/*END - Styling textarea inputs*/


