﻿
/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    height: 90%;
    background: #e4e4e4;
    color: black;
    font-family: system-ui;
}

body {
    overflow-x: hidden !important;
     background-color: #e7e7e7;
    
}

.container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

@media screen and (max-width: 667px) {
    body {
        overflow-x: hidden !important;
    }

    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    #msform .abc {
        width:90%;
    }
}

.scale {
    text-align: center;
    color: white;
    position: relative;
    background-color: white;
    height: 82px;
}


    .scale .logo {
         background-color : white;
        margin:4px;
            
    }


hr {
    display: block;
    width: 100%;
    height: 2px;
    clear: both;
    border: none;
}

#msform {
    margin: 14px auto;
    text-align: center;
    position: relative;
}

    #msform .wel {
        width: 100%;
        margin:  auto;
        font-size: 17px;
        padding: 20px 0;
        color: white;
        text-align: center;
        background-color: #5785b5;
        position: relative;
    }


    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 3px;
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
        padding: 10px 20px;
        box-sizing: border-box;
        width: 80%;
        margin: auto;
       
        position: relative;
    }
        
        /*#msform fieldset:not(:first-of-type) {
            display: none;
        }*/


    #msform .abc {
        padding: 9px;
        border-radius: 3px;
        margin-bottom: 10px;
        /*width: 177px;*/
        display: block;
        /*background-color: #eaeaea;*/
        
        color: #da6500;
        font-size: 13px;
        text-align: left;
        float: left;
    }



   #msform input, #msform textarea {
        padding: 9px;
        float: left;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin-bottom: 10px;
        display: block;
        box-sizing: border-box;
        
    
        color: #2C3E50;
        font-size: 13px;
        text-transform: uppercase;
    }

    #msform .action-button {
        width: 163px;
        background: #27AE60;
              color: white;
        border: 0 none;
        border-radius: 1px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 5px 5px;
        font-size: 12px;
    }

        #msform .action-button:hover, #msform .action-button:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
        }

.fs-title {
    font-size: 12px;
    text-transform: capitalize;
    color: #0051a3;
    padding: 10px;
    background-color: #fffde4;
    margin-bottom: 8px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

#progressbar {
   margin: 18px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        color: black;
        text-transform: uppercase;
        font-size: 10px;
        width: 33.33%;
        float: left;
        position: relative;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 20px;
            line-height: 20px;
            display: block;
            font-size: 10px;
            color: #333;
            background: white;
            border-radius: 3px;
            margin: 0 auto 5px auto;
        }
        /*progressbar connectors*/
        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: white;
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: -1; /*put it behind the numbers*/
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }
        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before, #progressbar li.active:after {
            background: #27AE60;
            color: white;
        }
.copyright-wrapper {
    background: #1c2744;
    height: 35px;
    width: 100%;
    float: left;
}
.copyright-box {
    margin: 0 auto;
    width: 1207px;
}
.copy-info {
    margin: 7px 0 0;
}
.foot-nav {
    float: right;
    width: 446px;
}

    .foot-nav li {
        margin-right: 7px;
    }

    .foot-nav li {
        float: left;
        color: #fff;
        font-size: 12px;
    }

.copy-info a {
    color: #fff;
    font-size: 12px;
}
.table-issue-detail tr th, .table-issue-detail tr td {
    width: 25%;
    border-top: 2px solid #e0e0e0;
}

.table-issue-detail tr th {
    background: #f2f3f2;
}

.table-issue-detail h4 {
    background: #f45932;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #06adc2 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%,#f45932 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#f45932 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#06adc2',GradientType=0 );
}

.table-issue-detail {
    max-width: 100%;
    border: 1px solid #bdbdbd;
}


.table-issue-detail table.table {
    margin: 0;
}

/* table */

table {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
    border-spacing: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

    
/* table-hover */

body.table-hover:not(.woocommerce-page) table tr:hover td {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

@media only screen and (max-width: 600px) {
    body {
        background-color: lightblue;
    }

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 3px;
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
        padding: 10px 20px;
        box-sizing: border-box;
        width: 100%;
        margin: auto;
        position: relative;
    }
}
