/* core.ui */

html,body
{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
    overflow-x: hidden !important;
     overflow-y: hidden !important;
}

body
{
	font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

a
{
    text-decoration: none;
    color: inherit;
}
.container
{
    width: 1200px;
}

.col_2
{
    width: 50% !important;
      margin: 20px;
}

.t_color
{
    color: #00bdf2 !important;
}


.left
{
    float: left;
}

.right
{
    float: right;
}


/*---------Style New Start---------------*/
header
{
	width: 100%;
	height: 80px !important;
	background: #fff;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	position: fixed;
	z-index: 999;
}

.header_col
{
	margin: 0;
	height: 100%;
}

.header_section, .body_section, .floating_section
{

}

.logo
{
	width: 275px; height:50px;
}

.logo img
{
	height:40px;
    margin-top:5px;
    width:74%;
}

nav
{
	 width: auto;
    /* height: 100%; */
    font-size: 1em;
}

nav ul
{
	    list-style-type: none;
    padding: 0;
    margin: 0;
    float: left;
    width: auto;
    line-height: 50px;
}


nav ul li
{
	float: left;
	width: 33.3%;
	text-align: center;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.1s;
}

nav ul li:hover
{
	color: #2c3d51;
	color: #2c3d51;
}

nav ul li ul
{
	background: #fff;
	width: 210px;
	display: none;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	overflow: hidden;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

nav ul li:hover ul
{
	display: block;
}

nav ul li ul li
{
	width: 100%;
	line-height: 0;
    text-align: left;
    padding: 20px 36px;
    color: #333;
    font-weight: 400;
    font-size: 0.9em;

}

.user_block
{
	width: auto;
	margin-right: 28px;
    position: absolute;
    right: 0;
    top: 0px;
}

.user_block_thumb
{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: #f6f6f6 solid 2px;
	padding: 1px;
	/*margin-right: 15px;*/
}

.user_block_thumb img
{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	-webkit-object-fit: cover;
}

.thumb_content
{
        height:50px; 
        width:auto; 
        padding:5px 28px 0 0px;
         box-sizing:border-box;
}

.user_block h3
{
	    font-size: 12px;
    font-style:italic;
    font-weight:normal;
    color:#555;
}

.user_block h3::first-letter
{
    text-transform:uppercase;
}
.user_block p
{
	color: #aaa;
	font-size: 0.9em;
	margin: 0;
}

.user_setting
{
	width: 50px;
	position: absolute;
    top: 4px;
    right: 0;
    z-index: 5;
}

.user_setting_icon
{
	width: 40px;
	height: 40px !important;
	border-radius: 5px;
	background-color: #f6f6f6;
	background-image:  url('../Images/cog.svg');
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: center;
	cursor: pointer;
	position: relative;
	transition: all 0.3s;
}
.switch_icon
{
	width: 30px;
	height: 30px !important;
	border-radius: 5px;
	background-color: #f6f6f6;
	background-image:  url('../Images/switch.png');
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: center;
	cursor: pointer;
	position: relative;
	transition: all 0.3s;
}
.user_setting_icon:hover
{
	background-color: #f1f1f1;
}

.user_setting_icon ul
{
	background: #fff;
    list-style-type: none;
    width: 100px;
    margin-top: 45px;
    float: right;
    padding: 12px 20px;
    text-align: left;
    position:absolute;
    right:0;
    z-index:10;
    display: none;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}

.user_setting_icon ul li
{
	padding: 10px 40px 10px 0px;
	font-size: 0.9em;
	transition: all 0.3s;
}

.user_setting_icon ul li:hover
{
	color: #00bdf2;
}



.title-bar {
    height: 42px;
    width: 100%;
    background-color: #f2f0f0;
    border-bottom: 1px solid #8d8d8d;
    border-top: 1px solid #f5f5f3;
    background-position: center;
    background-repeat: no-repeat;
}

.title-bar h1 {
    font-size: 11pt;
    color: #555555;
    margin: 0px;
    padding: 0px;
    height: 42px;
    line-height: 42px;
    margin-left: 10px;
    float: left;
    text-shadow: 1px 1px 1px #fff;
    -moz-text-shadow: 1px 1px 1px #fff;
    -webkit-text-shadow: 1px 1px 1px #fff;
}

.title-bar .search {
    height: 28px;
    line-height: 28px;
    margin-top: 4px;
    margin-right: 0px;
    border-right: 0px;
    border-radius: 5px 0px 0px 5px;
    -moz-border-radius: 5px 0px 0px 5px;
    -webkit-border-radius: 5px 0px 0px 5px;
    }

.title-bar .search-btn {
    height: 30px;
    line-height: 30px;
    margin-top: 4px;
    margin-left: 0px;
    border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
    background-image: url(../Images/search-icon.png);
    background-position: center;
    background-repeat: no-repeat;
}

    .title-bar a, .tool-bar a {
        margin: 4px;
    }

    .title-bar .seperator, .tool-bar .seperator {
        background-image: url(../Images/vertical-seperator.png);
        width: 2px;
        height: 20px;
        margin: 12px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .title-bar .count {
        margin-top: 8px;
    }

    .title-bar .custom-select {
        margin-top: 5px;
    }

.tool-bar {
    height: 40px;
    width: 100%;
    background-color: #fff;
    -moz-box-shadow: 0 0 10px 1px #eee;
    -webkit-box-shadow: 0 0 10px 1px #eee;
    box-shadow: 0 0 10px 1px #eee;
}

    .tool-bar .round-icon-button, .tool-bar .link-button {
        margin-top: 4px;
    }

.round-icon-button {
    height: 26px;
    width: 26px;
    border: 1px solid #fff;
    margin: 4px;
    cursor: pointer;
    border-radius: 13px;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    background-position: center;
    background-repeat: no-repeat;
}

.square-icon-button {
    height: 32px;
    width: 32px;
    border: 1px solid #a2a2a2;
    margin: 4px;
    cursor: pointer;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-position: center;
    background-repeat: no-repeat;
}

.button {
    width: 50px;
    height: 20px;
    line-height: 20px;
    font-weight: bold;
    background-color: #aaa;
    text-align: center;
    text-indent: 0px;
    margin: 3px;
    padding: 0px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    cursor: pointer;
    color: #efefef;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
}

.button-text-icon {
    height: 32px;
    line-height: 32px;
    margin: 3px;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 36px;
    font-size: 9pt;
    font-weight: bold;
    color: #2c2c2c;
    border: 1px solid #b6b6b6;
    text-shadow: 1px 1px 1px #fff;
    -moz-text-shadow: 1px 1px 1px #fff;
    -webkit-text-shadow: 1px 1px 1px #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-position: right;
    background-repeat: no-repeat;
}

.button-text {
    height: 32px;
    line-height: 32px;
    margin: 3px;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 9pt;
    font-weight: bold;
    color: #2c2c2c;
    border: 1px solid #b6b6b6;
    text-align: center;
    text-shadow: 1px 1px 1px #fff;
    -moz-text-shadow: 1px 1px 1px #fff;
    -webkit-text-shadow: 1px 1px 1px #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.details-container {
    width: 100%;
    background-color: #fff;
}
.x-icon {
    background-image: url(../Images/x-icon.png);
}

.add-icon {
    background-image: url(../Images/add-icon.png);
}

.update-icon {
    background-image: url(../Images/update-icon.png);
}

.refresh-icon {
    background-image: url(../Images/refresh-icon.png);
}

.search-icon {
    background-image: url(../Images/search-icon.png);
}


/* forms */
.form-group {
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid #dddddd;
    margin: 10px;
    float: left;
    margin-top: 20px;
}

.cols-1 {
    width: 98%;
}

@media (min-width:0px) {
    .cols-2 {
        width: 96%;
        min-width: 560px;
    }
}

@media (min-width:900px) {
    .cols-2 {
        width: 48%;
    }
}

.form-group h1 {
    height: 20px;
    font-size: 10pt;
    padding: 0px;
    margin: 0px;
    margin-top: -10px;
    margin-left: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #fff;
    max-width: 150px;
    color: #3e3e3e;
}

.form-group .row {
    height: 36px;
    width: 50%;
    min-width: 280px;
    float: left;
    font-size: 9pt;
}

.form-group .row-1 {
    height: 36px;
    width: 100%;
    min-width: 280px;
    float: left;
    font-size: 9pt;
}

.form-group .row-2 {
    height: 36px;
    width: 30%;
    min-width: 280px;
    float: left;
}

.form-group .row .label {
    min-width: 110px;
    font-size: 8pt;
    font-weight: normal;
    max-width: 150px;
    color: #636363;
    text-indent: 15px;
    height: 36px;
    line-height: 36px;
}

.form-group .row-1 .label {
    min-width: 110px;
    font-size: 8pt;
    font-weight: normal;
    max-width: 150px;
    color: #636363;
    text-indent: 15px;
}

.form-group .row input {
    margin-top: 5px;
}

.form-group .row-1 .label {
    min-width: 110px;
    font-size: 8pt;
    font-weight: normal;
    max-width: 150px;
    color: #636363;
    text-indent: 15px;
    height: 36px;
    line-height: 36px;
}

.form-group .row-1 input {
    margin-top: 5px;
}

input, select {
    height: 20px;
    line-height: 20px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid #83a3cc;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #666;
    font-size: 9pt;
}

textarea {
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid #83a3cc;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #666;
    font-size: 9pt;
}

select {
   height: 24px;
    line-height: 24px;
    margin-top: 10px;
    font-weight: normal !important;
    padding-right: 0px;
    /*margin: 0;*/
}

.custom-select {
    display:none !important;
    height: 30px;
    line-height: 30px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid #999;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #222;
    font-size: 9pt;
    background-color: #fff;
    background-image: url(../Images/custom-select.png);
    cursor: pointer;
    padding-right: 0px;
}

    .custom-select:hover {
        background-image: none;
        background-color: #efefef;
    }

    .custom-select option {
        background-color: #fff;
        padding-top: 5px 0 !important;
    }

.mandate {
    border: 1px solid #cb0100;
    background-color: #fff5f4;
    color: #666;
    font-size: 9pt;
}

.mandate-icon {
    background-image: url(../Images/madate-icon.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 36px;
}

.error-message-summary {
    font-size: 8pt;
    color: #cc0001;
    border: 1px solid #cc0001;
    background-color: #fff5f4;
    margin: 10px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    padding: 15px;
    padding-left: 35px;
    list-style: circle;
}


/* button bgs */

.grey-bg {
    background-color: #f6f6f6;
}

    .grey-bg:hover {
        background-color: #fff;
    }

.green-bg {
    background-color: #ecff94;
}

    .green-bg:hover {
        background-color: #f4ffcc;
    }


.close {
    width: 18px;
    height: 18px;
    background-image: url(../Images/close-icon.png) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent !important;
    cursor: pointer;
    border: 1px solid transparent !important;
}

.role-permission {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #bababa;
    width: auto !important;
    height: 18px;
    background-color: #bababa;
    color: #333;
    text-align: center;
    float: left;
    line-height: 18px;
    font-size: 8pt;
    cursor: pointer;
    color: #b6b6b6;
    margin-top: 0px;
    margin-right: 3px;
}

    .role-permission:hover {
        /*background-color:#fff;
	color:#555;*/
    }

.off {
    background-repeat: no-repeat;
    background-position: top right;
}

.on {
    background-repeat: no-repeat;
    background-position: top right;
    background-color: #e9ffb3;
}

div.role-permission.edit_permission.off:after {
    content: url(../Images/icon-add.png);
    float: right;
}

div.role-permission.edit_permission.on:after {
    content: url(../Images/icon-Cross.png);
    float: right;
    margin-right: 3px;
}


.push-buttons {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

    .push-buttons li {
        float: left;
        height: 32px;
        line-height: 32px;
        padding-left: 10px;
        padding-right: 10px;
        border: 1px solid #09667d;
        font-size: 9pt;
        cursor: pointer;
        border-right: 0px;
        color: #555;
        text-shadow: 1px 1px 1px #fff;
        -moz-text-shadow: 1px 1px 1px #fff;
        -webkit-text-shadow: 1px 1px 1px #fff;
        background: #f2f5f6; /* Old browsers */
        background: -moz-linear-gradient(top, #f2f5f6 0%, #e3eaed 37%, #c8d7dc 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f5f6), color-stop(37%,#e3eaed), color-stop(100%,#c8d7dc)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* IE10+ */
        background: linear-gradient(to bottom, #f2f5f6 0%,#e3eaed 37%,#c8d7dc 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f5f6', endColorstr='#c8d7dc',GradientType=0 ); /* IE6-9 */
    }

    .push-buttons .active {
        color: #333;
        -webkit-box-shadow: inset 0 0px 3px 0 #303030;
        -moz-box-shadow: inset 0 1px 2px 0 #303030;
        box-shadow: inset 0 1px 2px 0 #303030;
        background: none;
        background: #f9f9f9;
    }

    .push-buttons li:first-child {
        -webkit-border-radius: 10px 0px 0px 10px;
        -moz-border-radius: 10px 0px 0px 10px;
        border-radius: 10px 0px 0px 10px;
    }

    .push-buttons li:last-child {
        -webkit-border-radius: 0px 10px 10px 0px;
        -moz-border-radius: 0px 10px 10px 0px;
        border-radius: 0px 10px 10px 0px;
        border-right: 1px solid #09667d;
    }

    .push-buttons li:hover {
    }

.dimmedDiv {
    background-image: URL(../images/dimmedDivBg.png);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.icon-button {
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border: 1px solid transparent;
}

    .icon-button:hover {
        background-color: rgba(255, 255, 255, 0.70);
        border: 1px solid rgba(0, 0, 0, 0.25);
    }


.footer {
    /*background-color:rgba(0, 0, 0, 0.50) !important;*/
    color: #aaaaaa;
    height: 24px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    line-height: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    font-family: Tahoma;
    font-size: 8pt;
    text-indent: 10px;
}

.footer {
    height: 24px;
    line-height: 24px;
    width: 100%;
    background-color: #333;
}


.username {
    background-image: url(../images/username.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    background-position: left top;
}

.password {
    background-image: url(../images/password.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    background-position: left top;
}

.email {
    background-image: url(../images/email.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    background-position: left top;
}

.login-box .login-button {
    height: 36px;
    line-height: 36px;
    width: auto;
    float: left;
    background-color: #f6d66e;
    font-size: 9pt !important;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #909293;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    margin-left: 110px;
    cursor: pointer;
    font-family: Verdana !important;
}

    .login-box .login-button:hover {
        background-color: rgba(246, 214, 110, 0.38);
    }

.login-box .login-alert {
    font-size: 9pt;
    color: #ff0000;
    width: 280px;
    height: 25px;
    text-indent: 0;
    clear: both;
    line-height: 25px;
    margin-left: 110px;
    font-family: 'Trebuchet MS';
}

.title {
    font-size: 10pt !important;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.79);
    font-family: Verdana !important;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid #fff;
    border-bottom: 0px;
    float: left;
    margin-left: 225px;
    background-color: #0bb8ed;
    margin-top: -17px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom-left-radius: 0px;
    -webkit-border-left-radius: 0px;
    -moz-border-left-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-border-right-radius: 0px;
    -moz-border-right-radius: 0px;
}


.hide {
    display: none;
}


.dialog-pop-up {
    border: 1px solid #444;
    background-color: #fff;
    z-index: 10;
    font-family: Trebuchet MS;
    box-shadow: rgba(0,0,0,0.4) 5px 5px;
    -moz-box-shadow: rgba(0,0,0,0.3) 4px 4px 4px;
    -webkit-box-shadow: rgba(0,0,0,0.3) 4px 4px 4px;
}

    .dialog-pop-up .dialog-header {
        background-color: #efefef;
        background-image: url(images/chat-pop-up-header-bg.png);
        height: 42px;
        width: auto;
        clear: both;
        cursor: move;
    }

    .dialog-pop-up .content {
        overflow: auto;
        width: inherit;
    }

    .dialog-pop-up .dialog-header .closepopup {
        height: 30px;
        width: 30px;
        margin-top: 1px;
        margin-right: 4px;
        background-color: #efefef;
        background-image: url('../Images/close-message-pop-up.png');
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
        float: right;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        border: 1px solid #ccc;
    }

        .dialog-pop-up .dialog-header .closepopup:hover {
            background-image: url('../Images/close-message-pop-up-hover.png');
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
        }

.nice-text {
    font-family: Tahoma;
    color: #444;
    float: left;
    font-size: 10pt;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    text-align: justify;
    text-justify: inter-word;
}

.center-text {
    text-align: center !important;
}

.icon-fb {
    /*background: url(../images/icon_fb_small.png) no-repeat;*/
    height: 31px;
    width: 32px;
    float: left;
    margin-left: 5px;
    margin-top: 3px;
    cursor: pointer;
}

.icon-google {
    /*background: url(../images/icon_google_small.png) no-repeat;*/
    height: 31px;
    width: 32px;
    float: left;
    margin-left: 3px;
    margin-top: 3px;
    cursor: pointer;
}



/*New login Page CSS Starts*/
.popup {
    width: 600px;
    /*height: 500px;*/
    background: #fff;
    position: relative;
    top: 50%;
    /*transform: translateY(-50%);*/
    margin: 0 auto;
    z-index: 11;
    padding: 10px;
    border-radius: 5px;
    overflow-y: auto;
    left: 386px !important;
}

.overlay {
    width: 100%;
    height: 100%;
    background-image: url(../Images/back-pattern.png);
    background-repeat: repeat;
    background-color: rgba(0,0,0,0.5);
}

.login_container {
    width: 30%;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 40%;
    transform: translateY(-40%);
}


.login_logo {
    width: 60%;
    margin: 0 5% 0 0%;
    float: left;
}

    .login_logo img {
        width: 100%;
        height: auto;
    }

.login_logo_heading {
    width: 24%;
    padding-left: 6%;
    border-left: #ccc solid 1px;
    font-size: 20px !important;
    color: #fff;
    float: left;
    margin: 15% 0% 0% 4%;
    text-transform: uppercase;
    font-weight: 600;
    text-align: right;
}

.user_field {
    background: transparent url('../Images/user.svg') no-repeat;
    background-size: 30px auto;
    background-position: 0% center;
    margin-top: 5%;
}

.password_field {
    background: transparent url('../Images/password.svg') no-repeat;
    background-size: 30px auto;
    background-position: 0% center;
    margin: 4% 0% 5% 0%;
}

.submit_btn {
    width: 60%;
    float: left;
    font-size: 1.1em !important;
    background: transparent;
    border: #ccc solid 1px;
    color: #fff;
    margin-top: 2%;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    height: 52px;
    line-height: 52px;
}

    .submit_btn:hover, .back:hover {
        background: #069ecf;
        border: #069ecf solid 1px;
    }

.back {
    width: 35%;
    float: right;
    font-size: 1.1em;
    background: transparent;
    border: #ccc solid 1px;
    color: #fff;
    margin-top: 2%;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
    height: 52px;
    line-height: 52px;
}

.login_btn_right {
    width: 37%;
    float: right;
    text-align: right;
}

.or {
    font-size: 1em;
    color: #fff;
    float: left;
    padding-top: 25px;
    margin-right: 9%;
}

.social_btn {
    width: 34%;
    height: 52px;
    border: #fff solid 1px;
    margin-top: 6%;
    float: left;
    margin-right: 4%;
    transition: all 0.3s;
}

    .social_btn:hover {
        background-color: #069ecf;
        border: #069ecf solid 1px;
        cursor: pointer;
    }

.facebook {
    background: url(../Images/facebook.svg) no-repeat;
    background-size: 25px auto;
    background-position: center;
}

.google {
    background: url(../Images/google_plus.svg) no-repeat;
    background-size: 25px auto;
    background-position: center;
    margin-right: 0;
}

.forget, .tc {
    width: 50%;
    float: left;
    margin-top: 5%;
    color: #fff;
    font-size: 1em;
    transition: all 0.3s;
}

.tc {
    float: right;
    text-align: right;
    width: 25%;
}

.msg-alert {
    font-size: medium !important;
    font-family: Verdana !important;
    color: red !important;
    width: 100% !important;
}
/*New login Page CSS Ends*/

.userProfileDiv, .userAboutDiv {
    display: none;
}
/*User Profile CSS Starts*/
.scroller-container {
    width: 530px;
    height: 600px;
    overflow: auto;
    border: 1px solid #efefef;
    padding: 5px;
}

.xj-add-new-jobs-container {
    height: auto;
    width: 500px;
    border: 1px solid #ccc;
    border-bottom: 1px solid #999;
    padding: 5px;
    background-color: #fff;
    margin-top: 2px;
    overflow: auto;
    margin-left: 1px;
}

    .xj-add-new-jobs-container h1 {
        font-size: 10pt !important;
        margin: 2px;
        width: 100%;
        letter-spacing: 1px;
        color: #555;
    }

.xj-form {
    padding: 2px;
    min-height: 22px;
    border: 1px solid #efefef;
    margin-top: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
}

    .xj-form .elements {
        min-width: 300px;
        margin-top: 1px;
    }

        .xj-form .elements .label {
            min-width: 60px;
            float: left;
            height: 24px;
            line-height: 24px;
            padding-left: 5px;
            padding-right: 5px;
            color: #777;
        }

            .xj-form .elements .label h2 {
                width: 24px;
                height: 18px;
                line-height: 18px;
                padding: 0px;
                margin: 0px;
                -webkit-border-radius: 9px;
                -moz-border-radius: 9px;
                border-radius: 9px;
                color: #fff;
                text-align: center;
                background-color: #777;
                font-size: 8pt;
                margin-top: 4px;
            }

        .xj-form .elements input {
            padding: 0px;
            padding-left: 4px;
            width: 120px;
            float: left;
            font-size: 9pt;
        }

        .xj-form .elements .largeinput {
            width: 260px;
        }

        .xj-form .elements select {
            padding: 0px;
            width: 165px;
            vertical-align: middle;
            float: left;
        }

        .xj-form .elements textarea {
            padding: 0px;
            width: 370px;
            vertical-align: middle;
            float: left;
        }

        .xj-form .elements input[type='checkbox'] {
            margin: 0 0 0 5px;
            vertical-align: top;
            width: 16px;
            float: left;
        }

        .xj-form .elements .steps {
            width: 320px;
        }

        .xj-form .elements .basic {
            width: 415px;
        }

    .xj-form .dragger {
        /*background-image:url(../images/dragger.png); */
        background-position: left;
        background-repeat: repeat-y;
        background-color: #ccc;
        width: 2px;
        height: 26px;
        float: left;
        margin-right: 5px;
        margin-left: -2px;
        margin-top: -2px;
        border-right: 1px solid #ccc;
    }

    .xj-form .arrowpoint {
        background-image: url(../images/arrow.jpg);
        background-repeat: no-repeat;
        width: 32px;
        height: 28px;
        background-position: center;
    }

    .xj-form .start {
        background-color: #ccff51;
        width: 8px;
        height: 26px;
        float: left;
        cursor: default;
        margin-right: 5px;
        margin-left: -2px;
        margin-top: -2px;
        border-right: 1px solid #ccc;
    }

    .xj-form .end {
        background-color: #ff0000;
        width: 8px;
        height: 26px;
        float: left;
        cursor: default;
        margin-right: 5px;
        margin-left: -2px;
        margin-top: -2px;
        border-right: 1px solid #ccc;
    }

.xj-form-group-dark {
    padding: 2px;
    min-height: 22px;
    border: 1px solid #bbb;
    margin-top: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.xj-form-group {
    background-color: #ccc;
}

.multiline {
    min-height: 50px;
}

.label {
    min-width: 72px;
    height: 24px;
    line-height: 24px;
    padding-left: 5px;
    padding-right: 5px;
    color: #777;
}

.xj-form .label {
    min-width: 72px;
    float: left;
    height: 24px;
    line-height: 24px;
    padding-left: 5px;
    padding-right: 5px;
    color: #777;
}

.xj-form .elements {
    min-width: 300px;
    margin-top: 1px;
}

    .xj-form .elements .label {
        min-width: 60px;
        float: left;
        height: 24px;
        line-height: 24px;
        padding-left: 5px;
        padding-right: 5px;
        color: #777;
    }

        .xj-form .elements .label h2 {
            width: 24px;
            height: 18px;
            line-height: 18px;
            padding: 0px;
            margin: 0px;
            -webkit-border-radius: 9px;
            -moz-border-radius: 9px;
            border-radius: 9px;
            color: #fff;
            text-align: center;
            background-color: #777;
            font-size: 8pt;
            margin-top: 4px;
        }

.xj-form .label_large {
    width: 140px;
}

.xj-form .label_medium {
    width: 100px;
}

.xj-form .label_small {
    width: 80px;
}

.xj-form .label_w70 {
    width: 70px;
}

.inputaction, .field_id {
    max-width: 100px;
}

.xj-form .elements input {
    padding: 0px;
    padding-left: 4px;
    width: 160px;
    float: left;
}

.xj-form .elements .largeinput {
    width: 260px;
}

.xj-form .elements select {
    padding: 0px;
    width: 165px;
    vertical-align: middle;
    float: left;
}

.xj-form .elements textarea {
    padding: 0px;
    width: 370px;
    vertical-align: middle;
    float: left;
}

.xj-form .elements input[type='checkbox'] {
    margin: 0 0 0 5px;
    vertical-align: top;
    width: 16px;
    float: left;
}

.xj-form .elements .steps {
    width: 320px;
}

.xj-form .elements .basic {
    width: 415px;
}

.xj-form .dragger {
    /*background-image:url(../images/dragger.png); */
    background-position: left;
    background-repeat: repeat-y;
    background-color: #ccc;
    width: 2px;
    height: 26px;
    float: left;
    margin-right: 5px;
    margin-left: -2px;
    margin-top: -2px;
    border-right: 1px solid #ccc;
}

.xj-form .arrowpoint {
    background-image: url(../images/arrow.jpg);
    background-repeat: no-repeat;
    width: 32px;
    height: 28px;
    background-position: center;
}

.xj-form .start {
    background-color: #ccff51;
    width: 8px;
    height: 26px;
    float: left;
    cursor: default;
    margin-right: 5px;
    margin-left: -2px;
    margin-top: -2px;
    border-right: 1px solid #ccc;
}

.xj-form .end {
    background-color: #ff0000;
    width: 8px;
    height: 26px;
    float: left;
    cursor: default;
    margin-right: 5px;
    margin-left: -2px;
    margin-top: -2px;
    border-right: 1px solid #ccc;
}

.button_profile {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding-right: 10px;
    padding-left: 10px;
    text-decoration: none !important;
    cursor: pointer;
    text-indent: 0px;
    text-align: center;
    font-size: 8pt;
    margin: 2px;
    background-repeat: no-repeat;
    background-position: right;
    float: left;
    font-weight: bold;
}

    .button_profile .count {
        margin-top: 0px;
        margin-right: -8px;
    }

.default {
    height: 26px;
    line-height: 26px !important;
}

.grey_profile {
    color: #333 !important;
    border: 1px solid #777;
    background-color: #ccc;
}

    .grey_profile:hover {
        background-color: #efefef;
    }

.dimmedDivPassword {
    background-image: URL(/assets/images/loginV2/dimmedDivBg.png);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 900001;
}

.changePasswordDiv {
    position: absolute;
    border: 5px solid white;
    -moz-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -webkit-border-radius: 5px;
    z-index: 900001;
    display: none;
    background-color: #e1e1e1;
    padding: 5px;
}

#main {
    height: 100%;
}


/*User Profile CSS Ends*/
.float-left {
    float: left !important;
}
.ml-10 {
    margin-left: 10px !important;
}

.w150 {
    width: 150px !important;
}
.float-right {
    float: right !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.mt-3 {
    margin-top: 3px !important;
}
.ml-20 {
    margin-left: 20px !important;
}
.divselect
{
    border: 1px solid #1bbaed;
    width:125px;
}
.breadcrum-txt{
    cursor: pointer;
}
.refreshicon-div{
    width:auto; 
    margin-left:5px; 
    margin-right:5px;
}
.selectdrpdown-width{
    width: 320px;
}

.myDate {
    color: #069ecf;
}
.td-row {
    position: relative;
}
.td-row .popuptext {
    position: absolute;
    right: 30px;
    top: 100%;
    width: 220px;
    background: #fff;
    padding: 8px;
    border: 1px solid #ddd;
    box-shadow: -1px 1px 3px 0 rgba(0,0,0,0.1);
    margin-top: -5px;
    z-index: 9;
}

.td-row .popuptext:after, .td-row .popuptext:before {
	bottom: 100%;
	left: 86%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.td-row .popuptext:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 8px;
    margin-left: -8px;
}
.td-row .popuptext:before {
	border-color: rgba(221, 221, 221, 0);
	border-bottom-color: #ddd;
	border-width: 10px;
    margin-left: -10px;
}
.popFooter {
    text-align: right;
    margin-top: 8px;
}
.popFooter span {
    display: inline-block; vertical-align: middle;
    padding: 1px 6px 2px;
    border-radius: 3px;
    color: #fff;
}
.popFooter span + span {margin-left: 5px;}
.popFooter .submit_refund {
    background: #069ecf;
}
.popFooter .cancel_popup {
    background: #777;
}
.popFooter .cancel_popup:hover {
    background: #a5a2a2;
}
.popFooter .submit_refund:hover {
    background: rgba(7, 158, 207, 0.7);
}
.td-row .popuptext textarea {
    width: 100%;
    margin: 0;
}
.sub-block-add-panel{width:auto !important; margin-right:10px;}
.sub-block-add-panel button{width:300px !important;}
.min-order-add-panel .select2{width: 80% !important;}





/*theme selector css start*/
@media screen and (min-width:600px) and (max-width:800px) {}



.hundredpercentage {
    height: 100%;
}

.godr-theme-section a, .godr-theme-section p {
    font-family: 'Tahoma', Geneva, sans-serif;
    color: #666;
    font-size: 13px;
    background: #ffffff;
    line-height: normal;
}


.container {
    width: 100%;
}

.headnav {}

.height30 {
    height: 30px;
    line-height: 30px;
}

.bold400 {
    font-weight: 400;
}

.bold {
    font-weight: bold;
}

.padd20 {
    padding: 20px;
}



.padd10 {
    padding: 10px;
}

.padd5 {
    padding: 5px;
}

.bottshadow {
    -webkit-box-shadow: 0px 0px 6px 0px #ccc;
    /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 0px 0px 6px 0px #ccc;
    /* Firefox 3.5 - 3.6 */
    box-shadow: 0px 0px 6px 0px #ccc;
    /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.theme-section-col {
    height: calc(100% - 92px);
}

.theme-section-col-mob {
    height: calc(100% - 185px);
}

.row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.col-1 {
    -webkit-flex-basis: 8.33333333%;
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
}

.col-2 {
    -webkit-flex-basis: 16.66666667%;
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.col-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-flex-basis: 33.33333333%;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.col-5 {
    -webkit-flex-basis: 41.66666667%;
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
}

.col-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-flex-basis: 58.33333333%;
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
}

.col-8 {
    -webkit-flex-basis: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
}

.col-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-flex-basis: 83.33333333%;
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
}

.col-11 {
    -webkit-flex-basis: 91.66666667%;
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
}

.col-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.mobile-main {
    border: solid 2px #3a3a3a;
    height: 100%;
    margin: 5px 30px;
    border-radius: 25px;
    background-color: #3a3a3a;
    position: relative;
}

.mobile-inner {
    background-color: #ffffff;
    height: calc(100% - 110px);
    margin: 30px 6px;
    position: relative;
}

.speaker {
    background: #4c4c4c;
    padding: 3px 40px;
    border-radius: 6px;
    width: 2px;
    margin: 15px auto;
}

.mobilebutton {
    background: #4c4c4c;
    padding: 10px 30px;
    border-radius: 10px;
    border: solid 1px #8e8e8e;
    margin: -13px auto;
    width: 2px;
}


.godr-theme-section hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 4px 0;
    padding: 0;
}


::-webkit-scrollbar {
    width: 5px;
    /* for vertical scrollbars */
}

i ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
}

-moz-scrollbar {
    width: 5px;
    /* for vertical scrollbars */
}

i -moz-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

-moz-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
}

.header-title {
    text-transform: uppercase;
    font-size: 14px;
}

.insert-field-main-panel {
    background-color: #fafafa;
    padding: 10px;
    border-bottom: solid 1px #e6e6e6;
    display: flex;
}


.insert-field-main-panel .insert-text-field {
    border: solid 1px #e6e6e6;
    padding: 10px;
    margin-right: 10px;
}

.insert-field-main-panel .insert-button {
    background-color: #7fd236;
    padding: 10px;
    border: none;
    color: #ffffff;
    margin-top: 0 !important;
}

::placeholder {
    color: #7f7f7f;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #7f7f7f;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #7f7f7f;
}

.godr-theme-section .left-main-panel {
    margin: 10px;
    border: solid 1px #e6e6e6;
}

.godr-theme-section .left-list-menu li {
    padding: 15px 20px;
    border-bottom: solid 1px #e6e6e6;
}

.godr-theme-section .left-list-menu li i {
    float: right;
    color: #8c8c8c;
    font-size: 15px;
}

.godr-theme-section .left-list-menu {
    height: calc(100vh - 247px);
    border-right: solid 1px #e6e6e6;
}

.godr-theme-section .cstmd-header-panel .cntr-theme-title {
    float: left;
}

.godr-theme-section .cstmd-header-panel .action-icon {
    float: right;
    color: #8c8c8c;
    font-size: 15px;
}

.godr-theme-section .cstmd-header-panel .action-icon i {
    margin: 0 0px 0 15px;
    color: #000000;
}

.godr-theme-section .cstmd-header-panel {
    background-color: #e5e5e5;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    border-bottom: solid 1px #cacaca;
}

.godr-theme-section .cstmd-header-desc-panel {
    background-color: #e5e5e5;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    border-bottom: solid 1px #cacaca;
    font-size: 14px;
}

.godr-theme-section .tag-box {
    float: left;
    padding: 15px;
    margin: 15px 0 0 15px;
}

.godr-theme-section .tag-box i {
    margin-left: 15px;
}

.godr-theme-section .action-buttons .save {
    background-color: #7fd236;
    color: #ffffff;
}

.godr-theme-section .action-buttons a {
    padding: 12px 20px;
    border-left: solid 1px #e5e5e5;
    margin: 0 !important;
    float: right;
    color: #00aeff;
}

.godr-theme-section .action-buttons {
    background-color: #f2f2f2;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    border-top: solid 1px #e5e5e5;
    height: 39px;
}

.godr-theme-section .posion-relative-center-panle {
    position: relative;
}

.godr-theme-section .mobile-menu {
    font-size: 20px;
    color: #fff;
    vertical-align: middle;
    float: left;
    margin: 10px 0;
}

.godr-theme-section .mobile-title {
    color: #ffffff;
    margin: 0 15px;
    vertical-align: middle;
    float: left;
}

.godr-theme-section .mobile-menu-cart {
    color: #fff;
    vertical-align: middle;
    float: right;
    margin: 13px 0;
}

.godr-theme-section .mobileheader {
    background-color: #7b1fa2;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
}

.godr-theme-section .mobilesearchbar .searchbar {
    padding: 5px;
    border-radius: 50px;
    border: none;
    width: 85%;
}

.godr-theme-section .mobilesearchbar {
    background-color: #e1bee7;
    height: 30px;
    line-height: 30px;
    padding: 10px;
    display: flex;
}

.godr-theme-section .mobile-menu-barcode {
    color: #fff;
    vertical-align: middle;
    float: right;
    margin: 10px 0 0px 13px;
}

.godr-theme-section .mobile-action-btn a {
    text-align: center;
    padding: 15px 0;
    margin: 4px;
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;

}

.gray-bg {
    background-color: #c7c7c7 !important;
    color: #000000 !important;
}

.green-bg {
    background-color: #7fd236 !important;
    color: #fff !important;
}

.godr-theme-section .keypad-panel {
    display: flex;
}

.godr-theme-section .mobile-keypad {
    height: 50px;
    background-color: #3a3a3a;
    border-bottom: solid #ffffff 1px;
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
}

.godr-theme-section .center-key {
    border-right: solid #ffffff 1px;
    border-left: solid #ffffff 1px;
}

.cb {
    clear: both;
}

.godr-theme-section .btn-keypad {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.godr-theme-section .mobile-action-btn {
    margin-bottom: 4px;
    display: flex;
}

.mobile-footer-icon {
    background-color: #e5e5e5;
    display: flex;
    height: 40px;
    width: 100%;
    line-height: 40px;
}

.mobile-footer-icon i {
    font-size: 20px;
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
    line-height: 40px;
}

/*theme selector css end*/