@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/*======================= CSS Reset ===========================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, section, main, footer, header, figure, aside, input, textarea, i, mark, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: top;
  background: transparent;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-y: auto;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

:focus {
  outline: 0;
}

body {
  overflow: hidden;
}

/*======================= Clearfix ===========================*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

table, table td tr {
  border: none;
  border-collapse: collapse;
}

button, a, input, textarea, select {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
}

button, input, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media only screen and (max-width: 1023px) {
  .st_hidden {
    display: none !important;
  }
}

.st_show {
  display: none !important;
}
@media only screen and (max-width: 1023px) {
  .st_show {
    display: block !important;
  }
}

@media only screen and (max-width: 1279px) {
  .lt_hidden {
    display: none !important;
  }
}

.lt_show {
  display: none;
}
@media only screen and (max-width: 1279px) {
  .lt_show {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .m_hidden {
    display: none !important;
  }
}

.m_show {
  display: none;
}
@media only screen and (max-width: 767px) {
  .m_show {
    display: block !important;
  }
}

/*======================= Grid ===========================*/
.row {
  width: auto;
  display: block;
  margin: 0 -5px;
  position: relative;
  clear: both;
}
.row:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
@media only screen and (max-width: 767px) {
  .row {
    margin: 0;
  }
}
.row > .column {
  padding: 0 5px;
  float: left;
}
.row > .column.negative-margin-top {
  margin: -10px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .row > .column.negative-margin-top {
    margin: 0;
    padding: 0;
  }
}
.row > .column.pull-right {
  float: right;
}
@media only screen and (max-width: 1279px) {
  .row > .column.tablet-hide {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .row > .column.sm-tablet-hide {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .row > .column {
    padding: 5px;
  }
}
.row > .column.__12 {
  width: 100%;
}
.row > .column.__11 {
  width: 91.666666%;
}
.row > .column.__10 {
  width: 83.333333%;
}
.row > .column.__9 {
  width: 75%;
}
.row > .column.__8 {
  width: 66.666666%;
}
.row > .column.__7 {
  width: 58.333333%;
}
.row > .column.__6 {
  width: 50%;
}
.row > .column.__5 {
  width: 41.666666%;
}
.row > .column.__4 {
  width: 33.333333%;
}
.row > .column.__3 {
  width: 25%;
}
.row > .column.__2 {
  width: 16.666666%;
}
.row > .column.__1 {
  width: 8.333333%;
}
@media only screen and (max-width: 1366px) {
  .row > .column.llt__12 {
    width: 100%;
  }
  .row > .column.llt__8 {
    width: 66.666666%;
  }
  .row > .column.llt__4 {
    width: 33.333333%;
  }
}
@media only screen and (max-width: 1279px) {
  .row > .column.lt__6 {
    width: 100%;
  }
  .row > .column.lt__5 {
    width: 83.333333%;
  }
  .row > .column.lt__4 {
    width: 66.666666%;
  }
  .row > .column.lt__3 {
    width: 50%;
  }
  .row > .column.lt__2 {
    width: 33.333333%;
  }
  .row > .column.lt__1 {
    width: 16.666666%;
  }
}
@media only screen and (max-width: 1023px) {
  .row > .column.st__6 {
    width: 100%;
  }
  .row > .column.st__5 {
    width: 83.333333%;
  }
  .row > .column.st__4 {
    width: 66.666666%;
  }
  .row > .column.st__3 {
    width: 50%;
  }
  .row > .column.st__2 {
    width: 33.333333%;
  }
  .row > .column.st__1 {
    width: 16.666666%;
  }
  .row > .column.st__hide {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .row > .column.m__1 {
    width: 50% !important;
  }
  .row > .column.m__11 {
    width: 30% !important;
  }
  .row > .column.m__22 {
    width: 70% !important;
  }
  .row > .column.m__2, .row > .column.__12, .row > .column.__11, .row > .column.__10, .row > .column.__9, .row > .column.__8, .row > .column.__7, .row > .column.__6, .row > .column.__5, .row > .column.__4, .row > .column.__3, .row > .column.__2, .row > .column.__1, .row > .column.lt__6, .row > .column.lt__5, .row > .column.lt__4, .row > .column.lt__3, .row > .column.lt__2, .row > .column.lt__1, .row > .column.st__6, .row > .column.st__5, .row > .column.st__4, .row > .column.st__3, .row > .column.st__2, .row > .column.st__1 {
    width: 100%;
  }
}
.row.block-row.__1-block > .column {
  width: 100%;
}
.row.block-row.__2-block > .column {
  width: 50%;
}
.row.block-row.__3-block > .column {
  width: 33.3333333%;
}
.row.block-row.__4-block > .column {
  width: 25%;
}
.row.block-row.__5-block > .column {
  width: 20%;
}
.row.block-row.__6-block > .column {
  width: 16.666666666%;
}
.row.block-row.__7-block > .column {
  width: 14.285714%;
}
.row.block-row.__8-block > .column {
  width: 12.5%;
}
@media only screen and (max-width: 1279px) {
  .row.block-row.lt__2-block > .column {
    width: 50%;
  }
  .row.block-row.lt__3-block > .column {
    width: 33.3333333%;
  }
  .row.block-row.lt__4-block > .column {
    width: 25%;
  }
  .row.block-row.lt__5-block > .column {
    width: 20%;
  }
  .row.block-row.lt__6-block > .column {
    width: 16.666666666%;
  }
}
@media only screen and (max-width: 1023px) {
  .row.block-row.st__1-block > .column {
    width: 100%;
  }
  .row.block-row.st__2-block > .column {
    width: 50%;
  }
  .row.block-row.st__3-block > .column {
    width: 33.3333333%;
  }
  .row.block-row.st__4-block > .column {
    width: 25%;
  }
  .row.block-row.st__5-block > .column {
    width: 20%;
  }
  .row.block-row.st__6-block > .column {
    width: 16.666666666%;
  }
  .row.block-row > .column.st__6 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .row.block-row.__1-block > .column, .row.block-row.__2-block > .column, .row.block-row.__3-block > .column, .row.block-row.__4-block > .column, .row.block-row.__5-block > .column, .row.block-row.__6-block > .column, .row.block-row.__7-block > .column, .row.block-row.__8-block > .column {
    width: 100%;
  }
  .row.block-row.m__1-block > .column {
    width: 100%;
  }
  .row.block-row.m__2-block > .column {
    width: 50%;
  }
  .row.block-row.m__3-block > .column {
    width: 33.3333333%;
  }
  .row.block-row.m__4-block > .column {
    width: 25%;
  }
}
.row.__0 {
  margin: 0;
}
.row.__0 > .column {
  padding: 0;
}
.row.__5 {
  margin: 0 -5px;
}
.row.__5 > .column {
  padding: 0 5px;
}
.row.__60 {
  margin: 0 -30px;
}
.row.__60 > .column {
  padding: 0 30px;
}
@media only screen and (max-width: 1279px) {
  .row.__60 {
    margin: 0 -10px;
  }
  .row.__60 > .column {
    padding: 0 10px;
  }
}
.row.__30 {
  margin: 0 -15px;
}
.row.__30 > .column {
  padding: 0 15px;
}
@media only screen and (max-width: 1023px) {
  .row.__30 {
    margin: 0 -5px;
  }
  .row.__30 > .column {
    padding: 0 5px;
  }
}
.row.__20 {
  margin: 0 -10px;
}
.row.__20 > .column {
  padding: 0 10px;
}
.row.__inline-row {
  text-align: center;
}
.row.__inline-row > .column {
  display: inline-block;
  float: none;
  margin: 0 -2px 10px -2px;
}
.row.__centered-row {
  text-align: center;
}
.row.__centered-row > .column {
  display: inline-block;
  float: none;
  margin: 0;
}
.row.show-last-st > .column:last-child {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .row.show-last-st > .column:last-child {
    display: block;
  }
}

/* ========== Typography styles ========== */
@font-face {
  font-family: "exo_2bold";
  src: url("/font/exo2-bold-webfont.eot");
  src: url("/font/exo2-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/font/exo2-bold-webfont.woff2") format("woff2"), url("/font/exo2-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "exo_2medium";
  src: url("/font/exo2-medium-webfont.eot");
  src: url("/font/exo2-medium-webfont.eot?#iefix") format("embedded-opentype"), url("/font/exo2-medium-webfont.woff2") format("woff2"), url("/font/exo2-medium-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "robotolight";
  src: url("/font/roboto-light-webfont.eot");
  src: url("/font/roboto-light-webfont.eot?#iefix") format("embedded-opentype"), url("/font/roboto-light-webfont.woff2") format("woff2"), url("/font/roboto-light-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
a, button {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.button {
  display: inline-block;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  padding: 19px 20px;
  height: 50px;
  min-width: 200px;
  max-width: 100%;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  font-family: "exo_2bold";
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 9px 15px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .button {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.button.small {
  padding: 10px 20px;
  font-size: 14px;
  height: auto;
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .button.small {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.button.submit {
  position: absolute;
  width: 50px;
  min-width: 10px;
  padding: 5px 10px;
  top: 0;
  right: 0;
  height: 100%;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
}
.button.submit img {
  width: 100%;
}
.button.primary {
  background: #5b328c;
  color: #fff;
  text-shadow: 0px 2px 1px rgba(161, 56, 33, 0.5);
}
.button.primary:hover {
  background: #3f1f65;
}
.button.ghost {
  background: none;
  border: 1px solid;
  text-shadow: 0px 0px 0px rgba(255, 255, 255, 0);
}
.button.ghost.white {
  border-color: #fff;
  color: #fff;
}
.button.ghost.primary {
  border-color: #5b328c;
  color: #5b328c;
}
.button.ghost.primary:hover {
  background: none;
}
.button.ghost.secondary {
  border-color: rgba(255, 255, 255, 0.5);
}
.button.ghost.secondary:hover {
  background: none;
  border-color: white;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.button:disabled:hover {
  opacity: 0.7;
  background: #5b328c;
}

h1 {
  font-family: "exo_2bold";
}

h2 {
  font-family: "exo_2bold";
}

h3 {
  font-family: "exo_2bold";
}

p {
  line-height: 1.6;
}
p * {
  line-height: inherit;
}

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

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

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

blockquote {
  margin: 20px 0 20px;
  padding: 20px;
  border-top: 3px solid #383838;
  border-bottom: 3px solid #383838;
  font-size: 22px;
  font-family: "exo_2bold";
  text-transform: uppercase;
}
blockquote p {
  padding: 0 !important;
}

.rich-text, body[contenteditable=true] {
  color: #394046;
  text-align: left;
  font-family: Arial, serif;
  font-size: 17px;
  line-height: 1.6 !important;
}
.rich-text *, body[contenteditable=true] * {
  line-height: inherit !important;
}
.rich-text:last-child, body[contenteditable=true]:last-child {
  padding: 0;
}
.rich-text h2, body[contenteditable=true] h2 {
  padding: 20px 0 10px 0;
  font-size: 24px;
  line-height: 1.4;
  text-transform: uppercase;
}
.rich-text h2:first-child, body[contenteditable=true] h2:first-child {
  padding-top: 0;
}
.rich-text h3, body[contenteditable=true] h3 {
  padding: 15px 0 10px 0;
  font-size: 22px;
}
.rich-text h4, body[contenteditable=true] h4 {
  padding: 10px 0 10px 0;
  font-size: 18px;
  font-family: "exo_2bold";
}
.rich-text img, body[contenteditable=true] img {
  max-width: 100% !important;
  min-width: 30%;
  margin: 0 0 20px 0;
  padding: 5px;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 2px solid #dcd4e7 !important;
}
.rich-text img.wide, body[contenteditable=true] img.wide {
  width: 100% !important;
}
.rich-text p, body[contenteditable=true] p {
  padding: 0 0 20px 0 !important;
}
.rich-text p:last-child, body[contenteditable=true] p:last-child {
  padding: 0;
}
.rich-text p i, .rich-text p em, body[contenteditable=true] p i, body[contenteditable=true] p em {
  font-style: italic;
}
.rich-text p:empty, body[contenteditable=true] p:empty {
  display: none;
}
.rich-text p.small, body[contenteditable=true] p.small {
  font-size: 12px;
}
.rich-text table, body[contenteditable=true] table {
  width: 100%;
  background: #ffffff;
  margin: 15px 0 0 0;
  border: 1px solid #d7dae6;
  -webkit-box-shadow: 0px 0px 0px 5px #f4f4f4;
  -moz-box-shadow: 0px 0px 0px 5px #f4f4f4;
  box-shadow: 0px 0px 0px 5px #f4f4f4;
}
.rich-text table thead tr th, body[contenteditable=true] table thead tr th {
  background: #f4f4f4;
  border-bottom: 1px solid #d7dae4;
  color: #5f626d;
  text-transform: uppercase;
  text-align: left;
  padding: 15px 20px 12px 20px;
}
.rich-text table thead tr th:last-child, body[contenteditable=true] table thead tr th:last-child {
  padding: 15px 20px 12px 20px !important;
}
.rich-text table tbody tr td, body[contenteditable=true] table tbody tr td {
  background: #f7f8f8;
  color: #515357;
  padding: 15px 20px 12px 20px;
}
.rich-text table tbody tr td:last-child, body[contenteditable=true] table tbody tr td:last-child {
  padding: 15px 20px 12px 20px !important;
}
@media only screen and (max-width: 767px) {
  .rich-text table tbody tr td, body[contenteditable=true] table tbody tr td {
    font-size: 12px;
  }
}
.rich-text table tbody tr:nth-child(2n+1) td, body[contenteditable=true] table tbody tr:nth-child(2n+1) td {
  background: #ffffff;
}
.rich-text blockquote, body[contenteditable=true] blockquote {
  margin: 20px 0 20px;
  padding: 20px;
  border-top: 3px solid #383838;
  border-bottom: 3px solid #383838;
  font-size: 22px;
  font-family: "exo_2bold";
  text-transform: uppercase;
}
.rich-text blockquote p, body[contenteditable=true] blockquote p {
  padding: 0 !important;
}
.rich-text strong, body[contenteditable=true] strong {
  font-weight: bold;
}
.rich-text a, body[contenteditable=true] a {
  color: #5b328c;
  word-break: break-all;
  position: relative;
  display: inline;
  line-height: 1.6;
  text-decoration: underline;
}
.rich-text ul, body[contenteditable=true] ul {
  padding: 0 0 20px 14px;
}
.rich-text ul li, body[contenteditable=true] ul li {
  line-height: 1.6;
  position: relative;
  padding: 0 0 10px 5px;
}
.rich-text ul li:last-child, body[contenteditable=true] ul li:last-child {
  padding-bottom: 0;
}
.rich-text ul li:before, body[contenteditable=true] ul li:before {
  width: 8px;
  height: 8px;
  border: 2px solid #5b328c;
  position: absolute;
  top: 9px;
  left: -13px;
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.rich-text ul li strong, .rich-text ul li a, body[contenteditable=true] ul li strong, body[contenteditable=true] ul li a {
  line-height: 25px;
}
.rich-text ol, body[contenteditable=true] ol {
  padding: 0 0 20px 0;
}
.rich-text ol li, body[contenteditable=true] ol li {
  counter-increment: item;
  position: relative;
  padding: 30px 0;
  line-height: 1.6;
}
.rich-text ol li:last-child, body[contenteditable=true] ol li:last-child {
  padding-bottom: 0;
}
.rich-text ol li:after, body[contenteditable=true] ol li:after {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 2px;
  background: #dbd3e6;
  background: -moz-linear-gradient(left, #dbd3e6 0%, #dbd3e6 45%, rgba(219, 211, 230, 0) 45%, rgba(219, 211, 230, 0) 55%, #dbd3e6 55%, #dbd3e6 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #dbd3e6), color-stop(45%, #dbd3e6), color-stop(45%, rgba(219, 211, 230, 0)), color-stop(55%, rgba(219, 211, 230, 0)), color-stop(55%, #dbd3e6), color-stop(100%, #dbd3e6));
  background: -webkit-linear-gradient(left, #dbd3e6 0%, #dbd3e6 45%, rgba(219, 211, 230, 0) 45%, rgba(219, 211, 230, 0) 55%, #dbd3e6 55%, #dbd3e6 100%);
  background: -o-linear-gradient(left, #dbd3e6 0%, #dbd3e6 45%, rgba(219, 211, 230, 0) 45%, rgba(219, 211, 230, 0) 55%, #dbd3e6 55%, #dbd3e6 100%);
  background: -ms-linear-gradient(left, #dbd3e6 0%, #dbd3e6 45%, rgba(219, 211, 230, 0) 45%, rgba(219, 211, 230, 0) 55%, #dbd3e6 55%, #dbd3e6 100%);
  background: linear-gradient(to right, #dbd3e6 0%, #dbd3e6 45%, rgba(219, 211, 230, 0) 45%, rgba(219, 211, 230, 0) 55%, #dbd3e6 55%, #dbd3e6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dbd3e6", endColorstr="#dbd3e6", GradientType=1);
  content: "";
  left: 0;
}
.rich-text ol li:before, body[contenteditable=true] ol li:before {
  content: counter(item);
  font-family: "exo_2bold";
  color: #5b328c;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding: 0 20px;
  top: -11px;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}
.rich-text ol li:last-child, body[contenteditable=true] ol li:last-child {
  margin: 0;
}
.rich-text address, body[contenteditable=true] address {
  padding: 20px;
  background: rgba(91, 50, 140, 0.2);
}
.rich-text address *, body[contenteditable=true] address * {
  font-weight: bold !important;
  text-transform: uppercase;
}
.rich-text.text-center, body[contenteditable=true].text-center {
  text-align: center;
}

.fluid {
  position: relative;
  padding-top: 56.25% !important;
  padding-bottom: 0 !important;
  height: 0;
}
.fluid iframe, .fluid video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}

body {
  font-family: "robotolight";
  position: relative;
  color: #383838;
}
body.intesapayment {
  background: #5b328c;
  height: 100%;
  width: 100%;
}

.nvknmj-wdgt .rsn1info .inner, .nvknmj-wdgt .danas .inner {
  width: 300px;
  display: block;
  max-width: 100%;
  position: relative;
}
@media all and (max-width: 1023px) {
  .nvknmj-wdgt .rsn1info .inner, .nvknmj-wdgt .danas .inner {
    width: 100%;
  }
}
.nvknmj-wdgt .rsn1info .inner:after, .nvknmj-wdgt .danas .inner:after {
  content: "";
  display: table;
  clear: both;
}
.nvknmj-wdgt .rsn1info .heading, .nvknmj-wdgt .danas .heading {
  font-size: 18px;
  margin: 0 0 10px 0;
}
.nvknmj-wdgt .rsn1info .heading a, .nvknmj-wdgt .danas .heading a {
  display: block;
  padding: 10px 17px;
  background: #fff;
  text-transform: uppercase;
  font-family: "exo_2bold";
  color: #000;
}
.nvknmj-wdgt .rsn1info .heading a em, .nvknmj-wdgt .danas .heading a em {
  display: inline-block;
  padding: 10px 0;
}
.nvknmj-wdgt .rsn1info .heading a img, .nvknmj-wdgt .danas .heading a img {
  float: right;
  height: 38px;
}
.nvknmj-wdgt .rsn1info .widget-wrapper, .nvknmj-wdgt .danas .widget-wrapper {
  padding: 0 30px;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article, .nvknmj-wdgt .danas .widget-wrapper .column article {
  display: block;
  position: relative;
  padding: 3px 0 0 0;
  border-bottom: 1px solid #e3e3e3;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article:after, .nvknmj-wdgt .danas .widget-wrapper .column article:after {
  content: "";
  display: table;
  clear: both;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid, .nvknmj-wdgt .danas .widget-wrapper .column article.grid {
  display: block;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a {
  display: block;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a .image-wrapper, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a .image-wrapper {
  background: #383838;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a .image-wrapper img, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a .image-wrapper img {
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media all and (max-width: 767px) {
  .nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a .image-wrapper, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a .image-wrapper {
    width: 90px;
    margin: 0 10px 10px 0;
    float: left;
  }
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a .text-wrapper, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a .text-wrapper {
  padding: 15px 0 0 0;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a .text-wrapper h3, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a .text-wrapper h3 {
  line-height: 1.4;
  min-height: 60px;
  font-size: 14px;
}
@media all and (max-width: 767px) {
  .nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a .text-wrapper, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a .text-wrapper {
    padding: 0 !important;
  }
  .nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a .text-wrapper h3, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a .text-wrapper h3 {
    height: auto !important;
  }
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a:hover .image-wrapper img, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a:hover .image-wrapper img {
  opacity: 0.8;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a:hover .text-wrapper, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a:hover .text-wrapper {
  padding: 15px 0 0 0;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column article.grid a:hover .text-wrapper h3, .nvknmj-wdgt .danas .widget-wrapper .column article.grid a:hover .text-wrapper h3 {
  color: #5b328c;
}
.nvknmj-wdgt .rsn1info .widget-wrapper .column:last-child article, .nvknmj-wdgt .danas .widget-wrapper .column:last-child article {
  border-bottom: none;
}
.nvknmj-wdgt .danas .widget-wrapper {
  padding: 0;
}

/*# sourceMappingURL=2-widget.css.map */
