﻿/*MAIN - ОСНОВНОЙ*/
/*MAIN CLASSES - ОСНОВНЫЕ КЛАССЫ*/
/*MAIN ELEMENTS - ОСНОВНЫЕ ЕЛЕМЕНТЫ*/
/*FORMS - ФОРМЫ*/
/*BUTTONS - КНОПКИ*/
/*MODALS - МОДАЛКИ*/
/*HEADER - ШАПКА*/
/*CONTENT - КОНТЕНТ*/
/*FOOTER - ПОДВАЛ*/
/*PLUGINS - ПЛАГИНЫ*/

/*## ... ## MAIN - ОСНОВНОЙ  ## ... ##*/
*, *:focus {
    outline: none !important;
}

body {
    font-family: 'Roboto',sans-serif;
    font-size: 14px;
    background: white;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0px;
    margin: 0px;
    line-height: 1.3;
    font-weight: 400;
}

p {
    margin: 0px;
    padding: 0px;
}

a {
    color: #50b848;
    transition: 0.2s;
}

a {
    text-decoration: none;
}

    a.dark-link:hover {
        color: #50b848;
    }

    a.dark-link {
        color: inherit;
        text-decoration: none;
    }


p.lend-20 {
    font-size: 20px !important;
}

p.lend-18 {
    font-size: 18px !important;
}

p.lend-16 {
    font-size: 16px;
}

#main h1 {
    font-size: 57px;
}

#main h2 {
    font-size: 42px;
}

#main h3 {
    font-size: 30px;
}

#main h4 {
    font-size: 25px;
}

#main h6 {
    font-size: 20px;
}

/*## ... ## MAIN CLASSES - ОСНОВНЫЕ КЛАССЫ ## ... ##*/
.no-pdg {
    padding: 0px;
}
/*center-right-left*/
.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-left {
    text-align: left;
}

/*img*/
.img-responsive {
    max-width: 100%;
    display: inline-block;
}

/*colors*/
.color-green {
    color: #48d257;
}

/*light txt*/
.light {
    font-weight: 300;
}

/**/
.mb-25px {
    margin-bottom: 25px;
}

/*## ... ## MAIN ELEMENTS - ОСНОВНЫЕ ЕЛЕМЕНТЫ ## ... ##*/

/*LISTS-СПИСКИ*/
ul, ol {
    padding-left: 20px;
}

    ul.list-inline,
    ul.list-unstyled {
        margin: 0px;
        padding: 0px;
    }

    ul.list-inline {
        font-size: 0px;
    }

        ul.list-inline > li {
            display: inline-block;
            font-size: 16px;
        }

    ul.list-unstyled li {
        list-style: none;
    }

/*BOOTSTRAP CONTROL - РЕГУЛИРОВКА БУТСТРАПА*/
/*15*/
.row-mrn-15 {
    margin-left: -15px;
    margin-right: -10px;
}

.col-pdg-15 {
    padding-left: 15px;
    padding-right: 15px;
}
/*10*/
.row-mrn-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.col-pdg-10 {
    padding-left: 10px;
    padding-right: 10px;
}
/*5*/
.row-mrn-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.col-pdg-5 {
    padding-left: 5px;
    padding-right: 5px;
}


/*Телефон*/
#main .phone small {
    font-size: 9px;
    display: block;
}

#main .phone h5 {
    font-size: 26px;
    margin-bottom: -4px;
}

#main .phone a:hover {
    color: #50b848;
    text-decoration: none;
}

/*Секции*/
section {
    padding: 60px 0 90px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title-sm {
    margin-bottom: 30px;
}

.section-title h2 {
    color: #555555;
}

section.section-dark {
    background: #f6f6f6;
}

#main .section-title-txt {
    margin-top: 10px;
}

/*Меню*/
#main-menu li {
    flex-grow: 1;
    text-align: center;
}

    #main-menu li a {
        font-size: 14px;
        display: block;
        border-bottom: 1px solid transparent;
        padding: 5px 0;
        display: inline-block;
        color: #333;
    }

        #main-menu li a:hover,
        #main-menu li a.active {
            border-bottom: 1px solid;
            color: #50b848;
            text-decoration: none;
        }


/*## ... ## FORMS - ФОРМЫ ## ... ##*/
label {
    margin: 0px;
    font-size: 14px;
    cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
    display: none;
}
/*INPUTS*/
.form-control {
    border: 1px solid #50b849;
    height: 45px;
    border-radius: 200px;
    padding-left: 25px;
    font-size: 16px;
    transition: 0.3s;
    width: 100%;
    color: #222222;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white;
}

.form-control__center {
    text-align: center;
    padding-left: 0px;
}

.form-control__white {
    border: none;
}

.form-control__big {
    height: 55px;
    font-size: 22px;
}

.form-control__dark {
    box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.52) !important;
    border: none;
    color: #333;
}

.form-control:focus {
    box-shadow: 3px 4px 5px 0px rgba(80, 184, 73, 0.31);
}

.form-control::placeholder {
    color: #aaaaaa;
}

.form-control__center {
    text-align: center;
    padding-left: 0px;
}

.form-group {
    margin-bottom: 15px;
}

/*checkbox*/
.checkbox-group,
.radio-group {
    position: relative;
}

.checkbox-label, .radio-label {
    padding-left: 25px;
}

    .checkbox-label:before {
        content: '';
        height: 18px;
        width: 18px;
        position: absolute;
        display: block;
        left: 0;
        top: 50%;
        margin-top: -9px;
        border: 1px solid #cccccc;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }

.checkbox-control:checked + .checkbox-label:after {
    content: '\2714';
    position: absolute;
    left: 0;
    color: #1c5ccc;
    width: 18px;
    text-align: center;
}

/*radio*/
.radio-label:before {
    content: '';
    height: 18px;
    width: 18px;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    margin-top: -9px;
    border: 1px solid #cccccc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.radio-control:checked + .radio-label:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #1c5ccc;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    top: 7px;
    left: 4px;
}

/*select*/
.select-control {
}

/*## ... ## BUTTONS - КНОПКИ ## ... ##*/
.btn {
    font-size: 20px;
    background: green;
    display: inline-block;
    border: none;
    height: 55px;
    line-height: 55px;
    padding: 0 50px;
    width: inherit;
    border-radius: 200px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    width: auto;
}

    .btn:hover {
        color: #fff;
        text-decoration: none;
    }

    .btn,
    .btn:hover {
        transition: 0.3s;
        display: inline-block;
    }

.btn-back img {
    margin-right: 7px;
    vertical-align: middle;
}

.btn-next img {
    margin-left: 7px;
    vertical-align: middle;
}

.btn-lg {
    height: 65px;
    line-height: 65px;
    font-size: 24px;
    font-weight: 400;
}

.btn-sm {
    height: 45px;
    line-height: 43px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0px;
}

.btn-group {
    margin-top: 15px;
}

.btn-icon img {
    margin-right: 5px;
}

/*green*/
.btn.btn-green {
    background: #50b849;
}

.btn-green.btn-shadow, .btn-shadow-hover:hover {
    box-shadow: 1px 2px 17px 0px rgba(80, 184, 72, 1);
}

.btn.btn-green:hover {
    background: #47ad32;
    box-shadow: none;
}

/**/
.btn-light {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgb(255,255,255) 0%, rgb(242,249,244) 96%);
    background: -webkit-linear-gradient(top, rgb(255,255,255) 0%,rgb(242,249,244) 96%);
    background: linear-gradient(to bottom, rgb(255,255,255) 0%,rgb(242,249,244) 96%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f9f4',GradientType=0 );
    border: 1px solid #ddd;
    box-shadow: 0px 0px 10px 0px rgba(80, 184, 73, 0.2);
    color: #50b849
}

    .btn-light:hover {
        box-shadow: none;
        background: #50b849;
        color: white;
        border-color: #50b849
    }

/*btn green border*/
.btn-green-border {
    border: 2px solid #51d461;
    background: transparent;
    color: #51d461;
}

    .btn-green-border:hover {
        background: #51d461;
        color: white;
    }

/*## ... ## MODALS - МОДАЛКИ ## ... ##*/

/*## ... ## HEADER - ШАПКА ## ... ##*/
header#header {
    padding: 10px 0;
    box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.36);
    background: white;
    position: relative;
}


/*## ... ## CONTENT - КОНТЕНТ ## ... ##*/
main#main {
}

/*Талантливый вебмастер может заработать больше*/
.greeting {
    padding: 90px 0 160px;
    background: url("/Content/images-new/Partnership/images/case.png") no-repeat center right;
}

    .greeting h1 {
        font-weight: 900;
    }

.greeting-heading {
    margin-bottom: 75px;
}

/*Стоимость вознаграждения*/
.reward-calculate-table {
    max-width: 950px;
    margin: 0 auto;
    color: #2d2d2d;
    margin-bottom: 30px;
}

.reward-calculate-row {
    font-size: 30px !important;
    background: #e5f7e6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
    .reward-calculate-row p {
        font-size: 30px !important;
    }
    .reward-calculate-td {
        padding: 10px 0;
        border-right: 1px solid #ffffff
    }

.reward-calculate-col:last-child .reward-calculate-td {
    border: none
}

.reward-calculate-row:nth-child(2n) {
    background: white;
}

    .reward-calculate-row:nth-child(2n) .reward-calculate-td {
        border-right: 1px solid #e5f7e6;
    }

    .reward-calculate-row:nth-child(2n) .reward-calculate-col:last-child .reward-calculate-td {
        border: none;
    }

.reward-calculate-body {
    margin-bottom: 35px;
}

.reward-calculate {
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.5);
    padding: 50px 40px 40px;
}

.reward-calculate-area {
    margin: 45px 0;
    color: #555555;
}

.reward-calculate-input {
    width: 100px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    height: 40px;
    border-color: #427aa1;
    padding: 0px;
    text-align: center;
    color: #427aa1;
    font-size: 20px;
}

.reward-calculate-heading {
    color: #427aa1;
}

/*Что мы  предлагаем*/
.offers .section-content {
    background: url("/Content/images-new/Partnership/images/section-bg/offers.png") no-repeat right;
    background-size: contain;
}

.offers-content {
    padding: 50px 100px 30px 40px;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.24);
    background: white;
    margin: 40px 0;
}

.offers-list li {
    font-size: 20px;
    margin-bottom: 40px;
    padding-left: 35px;
    position: relative;
}

    .offers-list li:last-child {
        margin-bottom: 0px;
    }

    .offers-list li:before {
        content: '';
        height: 12px;
        width: 12px;
        background: #31b44c;
        position: absolute;
        left: 0;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        top: 10px;
    }


/*advantages*/
.advantage {
    max-width: 420px;
    padding: 30px 25px;
    color: #555555;
    transition: 0.2s linear;
    cursor: pointer;
    margin: 0 auto;
    margin-bottom: 30px;
}

    .advantage:hover {
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.5);
    }

.advantage-icon {
    margin-bottom: 25px;
}

.advantages-txt p {
    line-height: 30px;
}

/*materials*/
.materials-list {
    margin-bottom: 90px;
}

    .materials-list .material {
        margin-bottom: 25px;
    }

.material {
    color: #555555;
}

.material-txt {
    padding: 20px 0;
    height: 90px;
}

.material-thumb {
    -webkit-box-shadow: 0px 9px 27px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 9px 27px -10px rgba(0,0,0,0.75);
    box-shadow: 0px 9px 27px -10px rgba(0,0,0,0.75);
    display: inline-block;
}

.materials-warning {
    padding: 20px 40px 30px;
    color: #909090;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.24);
}

.materials-title {
    margin-bottom: 10px;
    color: #555555;
}


/**/
.earn-list li {
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
    padding-left: 15px;
    cursor: pointer;
}

    .earn-list li:hover {
        color: #40cc50;
    }

    .earn-list li:before {
        content: '';
        width: 5px;
        height: 5px;
        background: #000000;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        position: absolute;
        top: 8px;
        left: 0;
    }

/*contacts*/
.contacts-title {
    margin-bottom: 25px;
}

.contacts-list li {
    color: #555555;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
}

    .contacts-list li:before {
        content: '';
        display: inline-block;
        position: absolute;
        left: 0;
    }

    .contacts-list li.contact-mail:before {
        content: url("/Content/images-new/Partnership/images/icons/mail.png");
    }

    .contacts-list li.contact-user:before {
        content: url("/Content/images-new/Partnership/images/icons/user.png");
    }

/*## ... ## FOOTER - ПОДВАЛ ## ... ##*/
footer#footer {
    background: #1e1e1e;
    padding: 40px 0 25px;
    color: white
}

    footer#footer .heading {
        margin-bottom: 25px;
    }

    footer#footer .footer-menu li {
        margin-bottom: 10px;
    }

    footer#footer .phone {
        margin-bottom: 15px;
    }

    footer#footer .footer-main {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    footer#footer .google-market {
        margin-top: 25px;
    }

    footer#footer .languages li a,
    footer#footer .languages li span {
        margin: 5px 0;
        text-align: center;
        height: 30px;
        display: block;
        line-height: 30px;
        border-radius: 5px;
        text-decoration: none;
    }

    footer#footer .languages li span {
        border: 1px solid #50b848;
        text-decoration: none;
        text-align: center;
        color: #50b848
    }

        footer#footer .languages li a:hover,
        footer#footer .languages li span:hover {
            background: #50b848;
            color: white
        }

/*## ... ## PLUGINS - ПЛАГИНЫ ## ... ##*/
