﻿@import url('https://fonts.googleapis.com/css?family=Lato');

body {
    background: #ECF0F1;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #34495E;
    letter-spacing: 0.8px;
    line-height: 18px;
}

a.custom_link,
a.custom_link:active,
a.custom_link:visited,
a.custom_link:hover {
    font-size: 14px;
    color: #161F00;
    letter-spacing: 0.6px;
    line-height: 18px;
    text-decoration: underline;
}

label.title {
    font-weight: 600;
    font-size: 13px;
    color: #BDC3C7;
    letter-spacing: 3px;
    text-transform: uppercase;
}

label.number {
    font-weight: 600;
    font-size: 18px;
    color: #34495E;
    letter-spacing: 2px;
}

.panel-default,
.panel-default .panel-heading,
.panel-default .panel-footer {
    background: #FFFFFF;
    border-color: #FFFFFF;
    border-radius: 4px;
    box-shadow: none;
}

    .panel-default .panel-heading,
    .panel-default .panel-footer {
        font-family: 'Lato', sans-serif;
        font-size: 24px;
        color: #16384F;
        letter-spacing: 1.64px;
    }

.panel-info {
    background: #16384F;
    border: 0 solid rgba(22,56,79,0.25);
    box-shadow: 0 5px 10px 0 rgba(200,200,200,0.10);
    border-radius: 8px;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 20px;
}

.panel-primary {
    border: 1px solid #ccc;
}

.panel-danger {
    background-color: #c32727;
    color: #fff;
    border: 0;
}

.clickable {
    cursor: pointer;
}

.btn-default,
.btn-default:focus,
.btn-default:hover {
    background: #FFFFFF;
    border: 1px solid rgba(22,56,79,0.25);
    border-radius: 4px;
    /*font-size: 14px; /* in design it is 12px */
    color: #788B98;
    letter-spacing: 1.89px;
    text-transform: uppercase;
    /*line-height: 18px;*/
}

.btn-info,
.btn-info:focus,
.btn-info:hover {
    background: #193C53;
    border: 1px solid rgba(22,56,79,0.25);
    border-radius: 4px;
    /*font-size: 14px; /* in design it is 12px */
    color: #ffffff;
    letter-spacing: 1.89px;
    text-transform: uppercase;
    /*line-height: 18px;*/
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
    background: #B81B1B !important;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    color: #FFFFFF !important;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    text-decoration: none !important;
    line-height: 20px;
}

.btn-link,
.btn-link:focus,
.btn-link:active,
.btn-link:hover {
    font-weight: 600;
    font-size: 14px;
    color: #C32727;
    letter-spacing: 0.93px;
    text-decoration: underline;
    padding: 0;
    line-height: 18px;
}

.btn-completed,
.btn-completed:focus,
.btn-completed:active,
.btn-completed:hover {
    color: #fff !important;
    background-color: #7ED321;
    text-decoration: none;
}

/* Upload */

.upload .name {
    font-size: 16px;
    font-weight: 600;
    color: #16384F;
    letter-spacing: 1.09px;
    line-height: 40px;
}

.upload .action {
    line-height: 40px;
}

.upload .status {
    padding-top: 12px;
}

/* /Upload */

/*
// Removes all focus dotted border from all elements.
*:focus {
    outline: none;
    border-color: red;
}
*/

/* Radio button style */

.radio-inline:first-child,
.checkbox-inline:first-child {
    padding-left: 0;
}

/*label.number {
    height: 50px;
}*/

label > input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

    label > input[type="radio"] + span {
        cursor: pointer;
        background-size: 20px;
        background-image: url("images/Unselected.png");
        background-repeat: no-repeat;
        background-position-y: 7px;
        height: 35px;
        line-height: 30px;
        padding-left: 30px;
        padding-top: 3px;
        display: block;
        margin-right: 20px;
    }

    label > input[type="radio"]:focus + span {
        background-image: url("images/Selection_Active.png");
    }

    label > input[type="radio"]:checked + span {
        background-image: url("images/Selected.png");
    }

label + .panel {
    margin-top: 30px;
}

label {
    padding: 0;
}

.note {
    font-size: 14px;
    color: #C32727;
    letter-spacing: 0.93px;
    line-height: 14px;
    padding-left: 30px;
}

/* number selection container special */

#numberList:focus {
    outline: none;
}

    #numberList:focus > li > label > input[type="radio"] + span {
        background-image: url("images/Selection_Active.png");
    }

    #numberList:focus > li > label > input[type="radio"]:checked + span {
        background-image: url("images/Selected.png");
    }

/* /number selection container special */

/* /Radio button style */

/* Checkbox style */

label > input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
}

    label > input[type="checkbox"] + span,
    label > input[type="checkbox"] + input + span {
        cursor: pointer;
        background-image: url("images/Check_Empty.png");
        background-repeat: no-repeat;
        min-height: 33px;
        padding-left: 30px;
        display: block;
        margin-top: 7px;
    }

    label > input[type="checkbox"].highlight + span,
    label > input[type="checkbox"].highlight + input + span {
        background-image: url("images/Check_Active.png");
    }

    label > input[type="checkbox"]:required + span,
    label > input[type="checkbox"]:required + input + span {
        background-image: url("images/Check_Active.png");
    }

    label > input[type="checkbox"]:focus + span,
    label > input[type="checkbox"]:focus + input + span {
        background-image: url("images/Check_Active.png");
    }

    label > input[type="checkbox"]:checked + span,
    label > input[type="checkbox"]:checked + input + span {
        background-image: url("images/Check_Fill.png");
    }

    label > input[type="checkbox"]:disabled + span,
    label > input[type="checkbox"]:disabled + input + span {
        pointer-events: none;
        background-image: url("images/Check_Disabled.png");
    }

    label > input[type="checkbox"]:disabled:checked + span,
    label > input[type="checkbox"]:disabled:checked + input + span {
        pointer-events: none;
        background-image: url("images/Check_Checked_Disabled.png");
    }

/* set focus on label because invisible input can't get focus. */
label:focus {
    outline: none;
}

/* /Checkbox style */

/* Number selection drop downs */

.ui-selectmenu-optgroup,
.ui-selectmenu-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #34495E;
    letter-spacing: 0.89px;
}

.ui-selectmenu-optgroup {
    background-color: #ddd;
}

    .ui-selectmenu-optgroup .description {
        font-size: 12px !important;
        color: #34495E;
        letter-spacing: 0.89px;
    }

.ui-state-focus,
.ui-menu-item,
.ui-selectmenu-text,
.ui-selectmenu-menu,
.ui-state-default {
    font-family: 'Open Sans', sans-serif;
    /*border-color: #34495E;*/
    font-size: 16px !important;
    color: #34495E;
    letter-spacing: 0.89px;
    line-height: 22px;
}

.ui-state-focus {
    outline: none;
    border: 2px solid #B81B1B;
}

span.column {
    display: inline-block;
}

    span.column:first-child {
        width: 100px;
    }

.removeThisCountry {
    margin-top: 10px;
    cursor: pointer;
}

/* /Number selection drop downs */

/* Number overview */

#numberList {
    padding-left: 0;
    list-style-type: none;
}

/* /Number overview */

/* Order overview - Selected number */

.selectedCountry {
    vertical-align: sub;
}

.selectedNumber {
    font-weight: 600;
    font-size: 13px;
    color: #34495E;
    letter-spacing: 0.78px;
    line-height: 22px;
    margin-top: 5px;
}

    .selectedNumber .fixedTariffName {
        font-weight: normal;
        margin-left: 5px;
    }

/* /Order overview - Selected number */

/* Order overview - Why MCXess */

.whyTitle,
.whyItems {
    margin-left: 15px;
}

.whyTitle {
    font-size: 18px;
    color: #16384F;
    letter-spacing: 2px;
}

.whyItems {
    /*list-style: square inside url("images/Check.png");*/
    padding-left: 0;
}

    .whyItems li {
        font-size: 12px;
        color: #16384F;
        letter-spacing: 0.92px;
        line-height: 30px;
    }

/* /Order overview - Why MCXess */

/* Packages overview */

.features {
    text-align: center;
}

    .features td:first-child {
        text-align: left;
    }

    .features tr:first-child th {
        border: 0;
    }

    .features .featureCategory > th,
    .features .featureCategory > td {
        border-top: 0;
    }

        .features .featureCategory > td:first-child {
            font-weight: 600;
        }

    .features .moreInfoContainer {
        padding: 8px;
    }

    .features .moreInfo,
    .features .moreInfo:hover {
        font-size: 13px;
        font-weight: 600;
        color: rgba(189,195,199,0.63);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-decoration: none;
    }

    .features .package {
        text-align: center;
        line-height: 60px;
        width: 190px;
        margin-right: auto;
        margin-left: auto;
    }

        .features .package .price {
            font-family: 'Lato', sans-serif;
            font-size: 40px;
            letter-spacing: 1.1px;
        }

            .features .package .price span {
                font-size: 20px;
            }

        .features .package .name {
            font-size: 16px;
        }

    .features .selected {
        color: #C32727;
    }

    .features .information {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 8px;
    }

    .features .customDescription {
        font-family: 'Lato', sans-serif;
        font-size: 24px;
        color: #16384F;
        letter-spacing: 1.64px;
        line-height: 250px;
        text-align: center;
    }

    .features .packageBorderTop {
        border-radius: 4px 4px 0 0;
        border: 1px solid #ddd !important;
        border-bottom: 0 !important;
        width: 190px;
    }

    .features thead th:nth-child(2),
    .features tbody td:nth-child(2),
    .features thead th:nth-child(4),
    .features tbody td:nth-child(4),
    .features thead th:nth-child(6),
    .features tbody td:nth-child(6) {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

    .features td:nth-child(2) > .moreInfo {
        /*background-color: green;*/
    }

/* /Packages overview */

/*.affix {
    top: 10px;
    border: 2px solid red;
}*/

.blue {
    color: #16384F;
}

.white {
    background-color: white !important;
}

.table-notBordered > thead > tr > th,
.table-notBordered > tbody > tr > th,
.table-notBordered > tfoot > tr > th,
.table-notBordered > thead > tr > td,
.table-notBordered > tbody > tr > td,
.table-notBordered > tfoot > tr > td {
    border: 0px solid !important;
}

.panel-bordered {
    border: 1px solid #ccc !important;
}

.cols-bottom {
    vertical-align: bottom;
}

.report-dropdown {
    height: 34px !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    line-height: 1.42857143 !important;
    color: #555;
    background-color: #fff !important;
    background-image: none;
    border: 1px solid #ccc !important;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

table th {
    font-weight: 600;
    font-size: 13px;
    color: #BDC3C7;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* *********  checkbox  **************/
/*[type="checkbox"] {
	-webkit-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
    width: 1.60em; height: 1.60em;
}
[type="checkbox"]:checked {
	background-color: #C32727;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #ffffff;
}
[type="checkbox"]:checked:focus,
[type="checkbox"]:not(:checked):focus{
  border: 2px dotted #C32727;
}
[type="checkbox"]:checked:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	color: #ffffff;

    top: .2em; left: .2em;
    font-size: 1.3em;
    line-height: 0.8;
}*/
/* ********* End checkbox  **************/

.label-button {
    font-weight: normal !important;
}

.text-bottom {
    position: fixed;
    bottom: 10px;
    /*left: 50px;*/
}

.left-50 {
    left: 50px;
}

/* Company details invoice language select */
#registerForm .ui-selectmenu-menu,
#registerForm .ui-state-default,
#EditUser .ui-selectmenu-menu,
#EditUser .ui-state-default,
#companyDetails .ui-selectmenu-menu,
#companyDetails .ui-state-default {
    border: 1px solid #ccc;
}

#registerForm .ui-selectmenu-text,
#EditUser .ui-selectmenu-text,
#companyDetails .ui-selectmenu-text {
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: normal;
    font-family: "Open Sans", sans-serif;
    color: #555;
}

/* /Company details invoice language select */

/* Affiliate steps */
.AffiliateGettingStarted li::before {
    background-color: #c32727;
    color: white;
}
/* /Affiliate steps */


/* fileUpload */
.fileUpload {
    position: relative;
    overflow: hidden;
    margin: 10px;
}

    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }
/* fileUpload */

.panel-checkbox {
    background-color: #fff;
    /*border: 1px solid #34495E;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);*/
    font-family: 'Open Sans', sans-serif;
    font-size: 14px !important;
    color: #34495E;
    vertical-align: middle;
    padding: 10px 5px 0px 15px;
}
    .panel-checkbox .panel-body span {
        display: block;
    }

.panel-checkbox-disabled {
    background-color: #eee;
    border: 1px solid #34495E;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px !important;
    color: #34495E;
    vertical-align: middle;
    padding: 10px 5px 0px 15px;
}

    .panel-checkbox-disabled .panel-body span {
        display: block;
    }

.warning {
    color: red;
    font-weight: bold;
}

.numbertextbox {
    color: #34495E;
    border: 1px solid #34495E;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
}

input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.package {
   /*color: #999;*/
}

    .package button {
        color: white;
        background: #C32727;
    }

    .selected button,
    .selected button:hover,
    .package .btn:hover, 
    .package .btn:focus, 
    .package .focus.btn {
        color: #C32727 !important;
        background: white !important;
    }

    .package .invalid {
        outline: none;
        border: 2px solid #B81B1B;
    }

    .package .description {
        color: #34495E;
    }

.includes > .panel-heading {
    color: #bdc3c7;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn-prev,
.btn-prev:hover{
    background: #ffffff;
    border: 1px solid rgba(22,56,79,0.25);
    border-radius: 4px;
    color: #193C53;
    letter-spacing: 1.20px;
    text-transform: uppercase;
}

.btn-next,
.btn-next:hover,
.btn-next:focus {
    background: #193C53;
    border: 1px solid rgba(22,56,79,0.25);
    border-radius: 4px;
    color: #ffffff;
    letter-spacing: 1.20px;
    text-transform: uppercase;
}

.slick-disabled {
    background-color: #cccccc !important;
    cursor: not-allowed;
}

.disabled {
    pointer-events: none;
    /* for "disabled" effect */
    opacity: 0.5;
    background: #CCC;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 1px solid #111;
    background-color: #337ab7;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #337ab7), color-stop(100%, #111));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #337ab7 0%, #111 100%);
    /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(top, #337ab7 0%, #111 100%);
    /* FF3.6+ */
    background: -ms-linear-gradient(top, #337ab7 0%, #111 100%);
    /* IE10+ */
    background: -o-linear-gradient(top, #337ab7 0%, #111 100%);
    /* Opera 11.10+ */
    background: linear-gradient(to bottom, #337ab7 0%, #111 100%);
    /* W3C */
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #333 !important;
    border: 1px solid #337ab7;
    background-color: white;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
    /* Chrome10+,Safari5.1+ */
    background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
    /* FF3.6+ */
    background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
    /* IE10+ */
    background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
    /* Opera 11.10+ */
    background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
    /* W3C */
}

/* added by RB, can and will be overwritten. */
#checkOut{
    width: 70%;
}
