.rb-input {
  position: relative;
  padding: 20px 0;
}
.rb-input__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.25;
}
.rb-input__input {
  border: 1px solid rgba(133, 134, 140, 0.2);
  border-radius: 0.25rem;
  font-size: 1.125rem;
  padding: 0.75rem;
  width: 100%;
}
.rb-input__input:-moz-placeholder,
.rb-input__input::-moz-placeholder,
.rb-input__input:-ms-input-placeholder,
.rb-input__input::-webkit-input-placeholder,
.rb-input__input::placeholder {
  color: #0bf;
}
.rb-input__input.invalid {
  border-color: #e7391e;
}
.rb-input__hint {
  display: block;
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  z-index: 1;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.rb-input__hint_error {
  color: #e7391e;
}
.rb-input__hint + .rb-input__hint {
  display: none;
}

.rb-input__select {
  position: relative;
  display: block;
  border: 1px solid rgba(133, 134, 140, 0.2);
  border-radius: 0.25rem;
  font-size: 1.125rem;
}
.rb-input__select:after {
  content: "";
  display: block;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  bottom: 50%;
  margin-top: -0.5rem;
  width: 0.625rem;
  height: 1rem;
  background-image: url(../../assets/media/angle-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0.625rem 1rem;
  opacity: 0.5;
  pointer-events: none;
}
.rb-input__select select {
  background: transparent;
  border: none;
  font-size: 1.125rem;
  line-height: 1.33;
  -webkit-appearance: none;
}
.rb-input__select select:focus {
  outline: none;
}
.rb-input__select select,
.rb-input__select .selectric {
  padding: 0.75rem 2rem 0.75rem 0.75rem;
  background: transparent;
  border: none;
  font-size: 1.125rem;
  line-height: 1.33;
  min-height: 49px;
  -webkit-appearance: none;
}
@media screen and (max-width: 768px) {
  .rb-input__select {
    display: block;
  }
  .rb-input__select select {
    width: 100%;
  }
}

.rb-error {
  padding: 0.6875rem 1.75rem 0.8125rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #e7391e;
}

.rb-radio,
.rb-check {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.rb-radio__input,
.rb-check__input {
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: 2;
  opacity: 0;
  width: 32px;
  height: 32px;
  -webkit-appearance: none;
}

.rb-radio__icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 1px solid #b6b6b6;
  border-radius: 100%;
  background: #fff;

  -webkit-transition: box-shadow 200ms;
}
.rb-radio__input:active:not(:disabled) + .rb-radio__icon {
  border-color: 0 0 0 2px rgba(79, 66, 199, 0.3);
}
.rb-radio__input:focus + .rb-radio__icon {
  -webkit-box-shadow: 0 0 0 8px rgba(182, 182, 182, 0.2);
  box-shadow: 0 0 0 8px rgba(182, 182, 182, 0.2);
}
.rb-radio__input:checked + .rb-radio__icon {
  border-color: #4f42c7;
}
.rb-radio__input:checked:focus + .rb-radio__icon {
  -webkit-box-shadow: 0 0 0 8px rgba(79, 66, 199, 0.1);
  box-shadow: 0 0 0 8px rgba(79, 66, 199, 0.1);
}
.rb-radio__input + .rb-radio__icon:before {
  content: "";
  display: block;
  position: relative;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: #4f42c7;
  -webkit-border-radius: 100%;
  border-radius: 100%;

  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);

  -webkit-transition: 240ms;
  -o-transition: 240ms;
  transition: 240ms;
}
.rb-radio__input:checked + .rb-radio__icon:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.rb-radio__input:disabled + .rb-radio__icon {
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.6;
}
.rb-radio__input:active:not(:disabled) + .rb-radio__icon {
  border-color: 0 0 0 2px rgba(79, 66, 199, 0.3);
}
.rb-radio__input:focus + .rb-radio__icon {
  -webkit-box-shadow: 0 0 0 8px rgba(182, 182, 182, 0.2);
  box-shadow: 0 0 0 8px rgba(182, 182, 182, 0.2);
}
.rb-radio__input:checked + .rb-radio__icon {
  border-color: #4f42c7;
}
.rb-radio__input:checked:focus + i {
  -webkit-box-shadow: 0 0 0 8px rgba(79, 66, 199, 0.1);
  box-shadow: 0 0 0 8px rgba(79, 66, 199, 0.1);
}
.rb-radio__input + .rb-radio__icon:before {
  background-color: #4f42c7;
}

.rb-check__icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 18px;
  border-radius: 18px;

  -webkit-transition: box-shadow 200ms;
}
.rb-check__input + .rb-check__icon:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 1px solid #b6b6b6;
  border-radius: 2px;

  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.rb-check__input:checked + .rb-check__icon:before {
  height: 9px;
  border: 2px solid #4f42c7;
  border-top: none;
  border-right: none;
  border-radius: 0;
  background: transparent;

  -webkit-transform: translateY(3px) rotate(-45deg);
  -moz-transform: translateY(3px) rotate(-45deg);
  -ms-transform: translateY(3px) rotate(-45deg);
  -o-transform: translateY(3px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
}
.rb-check__input:focus + .rb-check__icon {
  background-color: rgba(182, 182, 182, 0.2);
  -webkit-box-shadow: 0 0 0 8px rgba(182, 182, 182, 0.2);
  box-shadow: 0 0 0 8px rgba(182, 182, 182, 0.2);
}
.rb-check__input:checked:focus + .rb-check__icon {
  background-color: rgba(79, 66, 199, 0.1);
  -webkit-box-shadow: 0 0 0 8px rgba(79, 66, 199, 0.1);
  box-shadow: 0 0 0 8px rgba(79, 66, 199, 0.1);
}
.rb-check__input:disabled + .rb-check__icon {
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.2;
}
.rb-check__input:checked:disabled + .rb-check__icon {
  opacity: 1;
}
.rb-check__input:checked:disabled + .rb-check__icon:before {
  border-color: #acb2b8;
}

.rb-checkbox {
  display: block;
  margin-bottom: 16px;
  padding: 8px 0 0 40px;
  font-size: 14px;
  line-height: 18px;
}
.rb-checkbox__check {
  top: -1px;
  margin-left: -40px;
  margin-right: 8px;
}
.rb-checkbox__label {
  font-size: 1rem;
  line-height: 1.25;
}

.textcaption {
  font-size: 0.875rem;
  line-height: 1.29;
}
.text-block {
  background-color: #474187;
  color: #eceafd;
}
.mt-30 {
  margin-top: 30px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-5 {
  margin-top: 5px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-5 {
  margin-bottom: 5px;
}
strong {
  font-family: PTRootUIWebBold, Helvetica, Arial, sans-serif;
}
p + ul {
  padding-top: 20px;
}
ul + p {
  padding-top: 20px;
}

/* nb add for deposit tables */
.fees-card:hover {
  cursor: pointer;
  background-color: #e2e4f3;
}

.fees-card {
  padding: 1.5rem 4.5rem 1.5rem 2rem;
}

.rb-tbl {
  min-width: 100%;
  width: 100%;
}

/* add css for contact form */

.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group
  *::-webkit-input-placeholder {
  color: #11293c;
  opacity: 0.6;
  font-family: "Stem-Regular", sans-serif;
}

.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group
  *:-moz-placeholder {
  color: #11293c;
  opacity: 0.6;
  font-family: "Stem-Regular", sans-serif;
}

.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group
  *::-moz-placeholder {
  color: #11293c;
  opacity: 0.6;
  font-family: "Stem-Regular", sans-serif;
}

.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group
  *:-ms-input-placeholder {
  color: #11293c;
  opacity: 0.6;
  font-family: "Stem-Regular", sans-serif;
}

.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group.has-error.has-danger {
  margin-bottom: 20px;
}
.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group.has-error.has-danger
  input,
.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group.has-error.has-danger
  textarea {
  border-color: #f08c99;
}

.bank_contact_form .field_wrapper .field_box .field.form-group input,
.bank_contact_form .field_wrapper .field_box .field.form-group select {
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: solid 1px #b7bec4;
  padding: 11px 20px;
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bank_contact_form .field_wrapper .field_box .field.form-group .help-block {
  margin: 0;
}
.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group
  .help-block
  .list-unstyled {
  margin-top: 10px;
}
.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group
  .help-block
  .list-unstyled
  li {
  font-size: 12px;
  text-align: left;
  line-height: 1.5;
  color: #d66372;
}

input {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select.btn-group:not(.input-group-btn) {
  height: 50px;
}

.bank_contact_form
  .field_wrapper
  .field_box
  .field.form-group.has-error.has-danger
  .bootstrap-select
  > .dropdown-toggle,
.connect_service_popup
  .line_item
  .field.has-error.has-danger
  .bootstrap-select
  > .dropdown-toggle {
  border-color: #f08c99;
}

.bank_contact_box .bootstrap-select > .dropdown-toggle:hover,
.connect_service_popup .bootstrap-select > .dropdown-toggle:hover {
  color: #11293c;
}

/* end add for contact form */

/* stage 2 */

.about_feedback_section .bank_contact_box {
  margin-bottom: 80px;
}
.about_feedback_section .bank_contact_box .title {
  font-size: 21px;
  font-family: "Stem-Regular", sans-serif;
  margin: 0 0 40px;
}
.bank_contact_form .field_wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 40px;
}

.bank_contact_form .field_wrapper .field_box .field {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.bank_contact_form .field_wrapper .field_box .field .styled_select {
  height: 50px;
  border: solid 1px rgba(17, 41, 60, 0.25);
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  padding: 12px 20px;
  font-size: 16px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #11293c;
  position: relative;
}
.bank_contact_form .field_wrapper .field_box .field textarea {
  width: 100%;
  height: 330px;
  border: solid 1px rgba(17, 41, 60, 0.25);
  padding: 17px 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bank_contact_form .field_wrapper .field_box .field textarea:hover,
.bank_contact_form .field_wrapper .field_box .field textarea:focus {
  border-color: #51a7d1;
  color: #11293c;
}
.bank_contact_form .field_wrapper .field_box .field input {
  width: 100%;
  padding: 11px 20px;
  border: solid 1px rgba(17, 41, 60, 0.25);
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bank_contact_form .field_wrapper .field_box .field input:hover,
.bank_contact_form .field_wrapper .field_box .field input:focus {
  border-color: #51a7d1;
  color: #11293c;
}
.bank_contact_form .field_wrapper .field_box .field:last-child {
  margin-bottom: 0;
}
.bank_contact_form .checkbox_item {
  margin-bottom: 40px;
  display: inline-block;
}
.bank_contact_form .checkbox_item input[type="checkbox"] + label > span {
  margin-right: 20px;
}
.bank_contact_form .btn_box .btn-submit {
  /*
  display: inline-block;
  width: unset;
  min-width: 162px;
  background-color: #fff;
  border: solid 1px rgba(17, 41, 60, 0.25);
  color: rgba(17, 41, 60, 0.7);
  font-size: 16px;
  font-family: "Stem-Regular", sans-serif;
  padding: 18px 20px;
  */
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 0.875rem 1.75rem;
  border-radius: 1.625rem;
}

.bank_contact_form .btn_box .btn {
  background-color: #2b314a;
  color: #fff;
  transition: background-color 0.2s linear;
}

.bank_contact_form .btn_box .btn-submit:hover,
.bank_contact_form .btn_box .btn-submit:active {
  background-color: #0090d7;
}

/* end stage 2 */

/* stage 3 */

.bank_contact_form .checkbox_item {
  margin-bottom: 40px;
  display: inline-block;
}
.bank_contact_form .checkbox_item input[type="checkbox"] + label > span {
  margin-right: 20px;
}

input[type="checkbox"] {
  height: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  display: none;
}
.bank_contact_form .field_wrapper .field_box {
  margin-bottom: 0;
}
.bank_contact_form .field_wrapper .field_box {
  width: 100%;
  margin-bottom: 20px;
}

.btn-submit {
  margin-bottom: 20px;
}

/* media */

@media screen and (min-width: 768px) {
  .bank_contact_form .field_wrapper .field_box {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .btn-submit {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1024px) {
}
@media screen and (min-width: 1280px) {
}
@media screen and (min-width: 1668px) {
}

/* end stage 3 */

/* stage 4 start */

.bank_contact_box .field_wrapper .field_box .selectric-wrapper .selectric {
  height: 50px;
  padding: 13px 20px;
  font-size: 16px;
  color: #11293c;
  border: solid 1px #b7bec4;
}
.bank_contact_box .bootstrap-select > .dropdown-toggle:hover,
.bank_contact_box .bootstrap-select > .dropdown-toggle:focus {
  background-color: transparent;
  outline: none !important;
}
.bank_contact_box .bootstrap-select > .dropdown-toggle:hover,
.bank_contact_box .bootstrap-select > .dropdown-toggle:focus {
  border: 1px solid #51a7d1;
}
.bank_contact_box
  .bootstrap-select
  > .dropdown-toggle
  span.filter-option.pull-left {
  opacity: 0.6;
}
.bank_contact_box
  .bootstrap-select
  > .dropdown-toggle
  span.filter-option.pull-left.opa1 {
  opacity: 1;
}
.bank_contact_box .bootstrap-select > .dropdown-toggle .bs-caret .caret {
  border: none;
  background-image: url(../img/dropdown-toggle-icon.svg);
  width: 15px;
  height: 9px;
  background-size: cover;
  right: 20px;
}

/* stage 4 end */

/* stage 5 */

.selectric-selectpicker.selectric-wrapper {
  position: relative;
  display: inline-block;
  position: relative;
  display: inline-block;
  border: solid 1px rgba(17, 41, 60, 0.25);
  padding: 11px 20px;
  width: 100%;
}
.selectric-selectpicker.selectric-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  bottom: 50%;
  margin-top: -0.5rem;
  width: 0.625rem;
  height: 1rem;
  background-image: url(../../assets/media/angle-down.svg);
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0.625rem 1rem;
  pointer-events: none;
}

.selectric-selectpicker.selectric-wrapper > .selectric-items {
  padding: 10px;
}

.selectric .label {
  /* 
  color: #11293c;
  */
}

/* end stage 5 */
/* form error text */
.with-errors {
  color: Red;
}

/* stage 4 end */

.management-display {
  padding: 0px;
}
.management-item {
  width: 50% !important;
}
.management-item__img-box:after {
  background-image: linear-gradient(
    to bottom,
    rgba(21, 22, 25, 0),
    rgba(25, 25, 38, 0.2)
  ) !important;
}

/* TEST */

/*  popup */

.hover_bkgr_fricc {
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: none;
  height: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10000;
  left: 0;
}
.hover_bkgr_fricc > div {
  background-color: #fff;
  box-shadow: 10px 10px 60px #555;
  display: inline-block;
  height: auto;
  max-width: 551px;
  min-height: 100px;
  vertical-align: middle;
  width: 60%;
  position: relative;
  border-radius: 4px;
  padding: 3% 4%;
  top: 25%;
  text-align: left;
}

.hover_bkgr_fricc div h3 {
  margin-bottom: 20px;
}

.popupCloseButton {
  display: inline-block;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 25px;
  right: 25px;
  background: url("../files/generic/ram-sprite-old.png") no-repeat -62px 0;
  cursor: pointer;
  opacity: 0.8;
}
.popupCloseButton:hover {
  opacity: 1;
}
.trigger_popup_fricc {
  cursor: pointer;
  /*  font-size: 20px;
    margin: 20px;
    display: inline-block;
    font-weight: bold;
	*/
}

/* end popup */

/* fees toggler */

.btn-switch__toggler:hover {
  cursor: pointer;
}
.btn-switch__toggler:hover:after {
  background-color: #f3f3f3;
}
.btn-switch__toggler.green {
  background-color: #46a2d0;
}
.btn-switch__toggler.red {
   background-color: #1f6c96
}

/* footer block */
.footer-infoBlock {
  display: none;
  min-height: 60px;
  bottom: 0px;
  background-color: #fff;
  width: 100%;
  position: fixed;
  z-index: 999;
  padding: 20px 30px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.3, 0.73, 0.3, 0.74);
}
.footer-infoBlock .textBlock {
  color: #5d5d5d;
  font-size: 14px;
}
.footer-infoBlock .infoBlock-CloseButton {
  display: inline-block;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 18px;
  right: 25px;
  background: url(../files/generic/ram-sprite-old.png) no-repeat -62px 0;
  cursor: pointer;
  opacity: 0.8;
}

.main-blockbg1{
	background: #ecf9ff;
    background: -moz-linear-gradient(top, #ecf9ff 0%, #ebf1f5 100%);
    background: -webkit-linear-gradient(top, #ecf9ff 0%,#ebf1f5 100%);
    background: linear-gradient(to bottom, #ecf9ff 0%,#ebf1f5 100%);
}


/* ----- fees ------ */
.rbfeestitle.sidenav__links-item {
	text-transform: lowercase;
}
.rbfeestitle.sidenav__links-item { display: inline-block; }
.rbfeestitle.sidenav__links-item:first-letter {
  text-transform: uppercase 
}

rbfees .fees-card:hover {
    cursor: pointer;
    background-color: #F7F7FF;
}

.fees-card__price{
	font-family: PTRootUIWebLight, Helvetica, Arial, sans-serif;
    /*font-size: 1.1rem;*/
}
 .fees-card__title {
    margin-bottom: 0.25rem;
    font-family: PTRootUIWebBold, Helvetica, Arial, sans-serif;
}
.fees-card__main p {
    font-family: PTRootUIWebLight, Helvetica, Arial, sans-serif;
    font-size: 0.835rem;
}
/* ----- /fees ----- */

/*.news-cover {
	padding: 10.25rem 0 14.75rem 0 !important;
}*/

.fees-card-info{
	padding: 1rem;
    border: 1px solid #dadbe2;
	font-family: PTRootUIWebLight, Helvetica, Arial, sans-serif;
    font-size: 0.835rem;
	color: rgba(43, 49, 74, 0.7);
	line-height: 22px;
}
.fees-card__main{
	padding-right: 2.5rem;
}
.rg-bg{
	background-color: #20102c;
	background-image:url('/files/main-slider/rg-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.rg-ipad{
	background-image: url(/files/main-slider/rg-ipad.png);
    background-position: top center;
    background-size: contain;
    top: 10%;
}
.pg404{
	background-color: #ebf1f5;
	color: #2b314a;
	height: 100%;
	margin-bottom: 1.5rem;
}
.pg404-title{
	font-size: 14rem;
}
@media screen and (max-width: 468px) {
  .pg404-title{
	font-size: 8rem;
}
}

@media screen and (min-width: 1280px){
.block-text-cover__title {
 /*   font-size: 6rem; */
    line-height: 1;
    padding: 0 4.6vw;
}
}

@media screen and (min-width: 1024px){
.block-text-cover {
    width: calc(100% - 2.75rem);
    margin: 0 auto -10rem auto;
    padding: 7.5rem 0 13.5rem 0;
}
}
@media screen and (min-width: 1668px){
	.block-text-cover {
		padding: 11.5rem 0 14.5rem 0;
	}
	.block-cover {
    height: 35.5rem;
	}
}
.footer-soc{
	display: block;
}
.footer-soc a{
	margin: 2px;
}
.footer-soc a img{
	width: 1.5rem;
	height: 1.5rem;
}

/*@media screen and (min-width: 1668px)
.block-text-cover {
    padding: 17.5rem 0 12.5rem 0;
}*/

.card-section.fin {
	border-top: 1px solid #e4e4e4;
	background-color: #f9f9f9;
	padding-top: 0;
	padding-bottom: 0;
}
.card-section__col.fin{
	width: 45%;
	margin-top: 0;
}
