html, body, div, span, applet, object, iframe,

h1, h2, h3, h4, h5, h6, /*p dima, */ blockquote, pre,

a, abbr, acronym, address, big, cite, code,

del, dfn, em, img, ins, kbd, q, s, samp,

small, strike, strong, sub, sup, tt, var,

b, u, i, center,

dl, dt, dd, ol, ul, li,

fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,

article, aside, canvas, details, embed,

figure, figcaption, footer, header,

menu, nav, output, ruby, section, summary,

time, mark, audio, video {
    margin: 0;

    padding: 0;

    border: 0;

    vertical-align: baseline;
}

*{

    box-sizing: border-box;

}

*:before, *:after {

    margin: 0;

    padding: 0;

    -webkit-box-sizing: content-box;

    -moz-box-sizing: content-box;

    box-sizing: content-box;

}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,

footer, header, menu, nav, section {

    display: block;

}



ol, ul {

    list-style: none;

}



sup{

    vertical-align: super;

/*    line-height: 0.5; dima
problem with footnotes
 */

}

blockquote, q {

    quotes: none;

}

blockquote:before, blockquote:after,

q:before, q:after {

    content: '';

    content: none;

}



table {
    /*
        border-collapse: collapse; dima
too close to each other*/
        border-spacing: 0;

}

/* End Mayer's reset */


em {

    font-style: italic;

}

strong {

    font-weight: bold;

}

i.thin-text {

    font-weight: 300;

}

a {

    text-decoration: none;

    color: #631212;

}

a:visited {

    color: #300808;

}



a:hover {

    text-decoration: underline;

    color: #0072ff;

}



html, body, .container {

    min-height: 100%;

}



html, input {

    font: normal 10px/1 'Open Sans', Helvetica, Arial, sans-serif;

}

body {

    width: 100%;


/*    background-color: rgba(229, 229, 229, 1);*/
    background-color: rgba(229, 229, 229, 0.1);

    line-height: 1;

}



.header-layout {

    width: 100%;

    overflow: hidden;

}



.header-container {

    max-width: 120rem;

    margin: 0 auto;

}

.header-wrapper {

    padding: 1rem;

}

.nav-wrapper {

    padding: 1rem;

    text-align: center;

}

ul.navigation li {
    display: inline-block;

    padding: 0 2rem 2rem;

    color: rgba(80, 80, 80, 0.6);

}

.sidebar-wrapper {

    padding: 1rem;

    overflow: hidden;

    font: 600 14px/1.4 'Open Sans', Helvetica, Arial, sans-serif;

}

.version-choose-wrapper, .option-wrapper, .register-wrapper {

    max-width: 60rem;

    height: auto;

    margin: 0 auto;

}

.version-choose-body, .option-body, .register-body {

    padding: 4rem 2rem 2rem;

    background-color: rgba(255, 255, 255, 1);

    color: rgba(80, 80, 80, 0.6);

    overflow: hidden;

}



.version-choose-body h1, .option-body h1, .register-body h1 {

    color: rgba(120, 120, 120, 0.5);

    font: 300 2.4rem/1.5 'Open Sans', Helvetica, Arial, sans-serif;

    text-align: center;

}

.works-wrapper {

    overflow: hidden;

}

.works-list {

    padding: 2rem;

}


@media (max-width: 800px) {
	.works-list {
		padding: 0rem;
	}
}


.works-item-cell {

    padding: 0.5rem 0;

}

.works-name {

    max-width:80%;

    padding: 0 1.2rem;

    overflow: hidden;

    display: inline-block;

    vertical-align: middle;

}

.works-name span {

    vertical-align: middle;

}



input[type="checkbox"] {

    max-width: 20%;

    width: 4.3rem;

    height: 2.4rem;

    -webkit-appearance: none;

    -moz-appearance: none;

    background: #c6c6c6;

    outline: none;

    border-radius: 50px;

    box-shadow: inset 0 0 0.5rem rgba(0,0,0, 0.2);

    transition: 0.5s;

    position: relative;

    display: inline-block;

    vertical-align: middle;



}

input:checked[type="checkbox"] {

    background: #02a9f4;

}

input[type="checkbox"]::before {

    content: '';

    position: absolute;

    width: 2rem;

    height: 2rem;

    border-radius: 50%;

    top: 0.2rem;

    left: 0.2rem;

    background: #fff;

    box-shadow: 0 1px 0.3rem rgba(0,0,0, .2);

    transition: 0.5s;

}

input:checked[type="checkbox"]::before {

    left: 2.1rem;

}



.buttons-panel-wrapper {

    overflow: hidden;

}

.buttons-panel {

    padding: 1rem;

    position: relative;

    text-align: center;

}



button {

    position: relative;

    display: inline-block;

    background: none;

    outline: none;

    border: none;

    margin: 0 1.5rem;

    padding: 0;

    font: 700 1.5rem/1 'Open Sans', Helvetica, Arial, sans-serif;

    cursor: pointer;

    color: rgba(80, 80, 80, 0.6);

}

button span {

    position: relative;

    z-index: 1;

    display: block;

    min-width: 1em;

    padding: 1rem 2rem;

    border-radius: 1rem;

    background-color: #fff;

    border: 1px solid #c6c6c6;

    -webkit-box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);

    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.2);

    -webkit-transition: background-color .2s, -webkit-transform .1s, -webkit-box-shadow .2s;

    transition: background-color .2s, -webkit-transform .1s, -webkit-box-shadow .2s;

    transition: transform .1s, box-shadow .2s, background-color .2s;

    transition: transform .1s, box-shadow .2s, background-color .2s, -webkit-transform .1s, -webkit-box-shadow .2s;

}

button::after {

    content: '';

    position: absolute;

    top: -0.2rem;

    bottom: -0.2rem;

    left: -0.2rem;

    right: -0.2rem;

    border-radius: 1rem;

    -webkit-box-shadow: 0 0 0px rgba(0, 0, 0, 0.2), inset 0 0 0px rgba(0, 0, 0, 0.2);

    box-shadow: 0 0 0px rgba(0, 0, 0, 0.2), inset 0 0 0px rgba(0, 0, 0, 0.2);

    -webkit-transition: -webkit-box-shadow .1s;

    transition: -webkit-box-shadow .1s;

    transition: box-shadow .1s;

    transition: box-shadow .1s, -webkit-box-shadow .1s;

}

button:hover span, button:focus span {

    background-color: #f4f4f4;

}

button:active span {

    background-color: #efefef;

    -webkit-transform: scale(0.97);

    transform: scale(0.97);

    -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);

    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);

    color: rgba(2, 168, 244, 0.6);

}

button:active::after {



    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), inset -3px 3px 1em rgba(0, 0, 0, 0.2);

    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2), inset -3px 3px 1em rgba(0, 0, 0, 0.2);

    background-color: rgba(2, 168, 244, 1);

}



.fa-file-pdf{

    padding: 0 0.3rem;

    font-size: 2rem;

    color: rgba(0, 0, 0, 0.4);

}

.fa-asterisk {

    padding: 0 0.3rem;

    font-size: 1rem;

    vertical-align: super;

}


.nice-button {
  display: inline-block;
  border-radius: 14px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.nice-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.nice-button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.nice-button:hover span {
  padding-right: 25px;
}

.nice-button:hover span:after {
  opacity: 1;
  right: 0;
}




.account-wrapper {
  padding-top: 68px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; }

.account-inner {
  min-width: 450px;
  margin: auto;
  padding-bottom: 48px;
    background: none;
/*  background: url("../images/registration-form-2.jpg"); */}
  .account-inner h3 {
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    margin-bottom: 32px;
    color: #333;
    }

.account-form {
  width: 100%;
  /*padding-left: 45px; */}


.account-form-wrapper {
  margin-bottom: 17px; }
  .account-form-wrapper label {
    margin-bottom: 9px;
    display: block; }



@media (max-width: 991px) {
  .account-inner {
    min-width: 768px; } }
@media (max-width: 767px) {
  .account-inner {
    min-width: auto;
    background: none;
    padding-top: 0;
    padding-bottom: 0; }

  .account-form {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px; } }



.account-form-control {
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  background: none; }
  .account-form-control:focus {
    border: 1px solid #ae3c33; 
	outline: none;
	}
	
	
.account-button{
  border: none;
  width: 152px;
  height: 40px;
  margin: auto;
  margin-top: 29px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ae3c33;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s; }
  .account-button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f11a09;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .account-button:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66); 
	}
