/*
Theme Name: ipd
Text Domain: ipd
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
---------------------------------------------------------------- */

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/*------------------------------------*  Generic > Box Sizing
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
 html {
    box-sizing: border-box;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  
  /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
  /**
   * 1. Change the default font family in all browsers (opinionated).
   * 2. Correct the line height in all browsers.
   * 3. Prevent adjustments of font size after orientation changes in
   *    IE on Windows Phone and in iOS.
   */
  /* Document
     ========================================================================== */
  html {
  
    /* 1 */
    line-height: 1.15;
    /* 2 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
  }
  
  /* Sections
     ========================================================================== */
  /**
   * Remove the margin in all browsers (opinionated).
   */

  
  /**
   * Add the correct display in IE 9-.
   */
  article,
  aside,
  footer,
  header,
  nav,
  section {
    display: block;
  }
  
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

  
  /* Grouping content
     ========================================================================== */
  /**
   * Add the correct display in IE 9-.
   * 1. Add the correct display in IE.
   */
  figcaption,
  figure,
  main {
    /* 1 */
    display: block;
  }
  
  /**
   * Add the correct margin in IE 8.
   */
  figure {
    margin: 1em 40px;
  }
  
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  hr {
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }
  
  /* Text-level semantics
     ========================================================================== */
  /**
   * 1. Remove the gray background on active links in IE 10.
   * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
   */
  a {color:#2ecc71;
    background-color: transparent;
    /* 1 */
    -webkit-text-decoration-skip: objects;
    /* 2 */
  }
  
  /**
   * Remove the outline on focused links when they are also active or hovered
   * in all browsers (opinionated).
   */
  a:active, a:focus,
  a:hover {
	  color:#000;
    outline-width: 0;
  }

  
  /**
   * 1. Remove the bottom border in Firefox 39-.
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
  }
  
  /**
   * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
   */
  b,
  strong {
    font-weight: inherit;
  }
  
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  b,
  strong {
    font-weight: 700;
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  code,
  kbd,
  samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
  }
  
  /**
   * Add the correct font style in Android 4.3-.
   */
  dfn {
    font-style: italic;
  }
  
  /**
   * Add the correct background and color in IE 9-.
   */
  mark {
    
    color: #000;
  }
  
  /**
   * Add the correct font size in all browsers.
   */
  small {
    font-size: 80%;
  }
  
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  /* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
  
  /* Embedded content
     ========================================================================== */
  /**
   * Add the correct display in IE 9-.
   */
  audio,
  video {
    display: inline-block;
  }
  
  /**
   * Add the correct display in iOS 4-7.
   */
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  
  /**
   * Remove the border on images inside links in IE 10-.
   */
  img {
    border-style: none;
  }
  
  /**
   * Hide the overflow in IE.
   */
  svg:not(:root) {
    overflow: hidden;
  }
  
  /* Forms
     ========================================================================== */
  /**
   * 1. Change the font styles in all browsers (opinionated).
   * 2. Remove the margin in Firefox and Safari.
   */
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: sans-serif;
    /* 1 */
    font-size: 100%;
    /* 1 */
   
    /* 1 */
    margin: 0;
    /* 2 */
  }
  
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  button,
  input {
    /* 1 */
    overflow: visible;
  }
  
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  button,
  select {
    /* 1 */
    text-transform: none;
  }
  
  /**
   * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
   *    controls in Android 4.
   * 2. Correct the inability to style clickable types in iOS and Safari.
   */
  button,
  html [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
    /* 2 */
  }
  
  /**
   * Remove the inner border and padding in Firefox.
   */
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /**
   * Restore the focus styles unset by the previous rule.
   */
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  /**
   * Change the border, margin, and padding in all browsers (opinionated).
   */
  fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  }
  
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
  legend {
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
  }
  
  /**
   * 1. Add the correct display in IE 9-.
   * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  progress {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
  }
  
  /**
   * Remove the default vertical scrollbar in IE.
   */
  textarea {
    overflow: auto;
  }
  
  /**
   * 1. Add the correct box sizing in IE 10-.
   * 2. Remove the padding in IE 10-.
   */
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
  }
  
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  [type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
  }
  
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
  [type="search"]::-webkit-search-cancel-button,
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
  }
  
  /* Interactive
     ========================================================================== */
  /*
   * Add the correct display in IE 9-.
   * 1. Add the correct display in Edge, IE, and Firefox.
   */
  details,
  menu {
    display: block;
  }
  
  /*
   * Add the correct display in all browsers.
   */
  summary {
    display: list-item;
  }
  
  /* Scripting
     ========================================================================== */
  /**
   * Add the correct display in IE 9-.
   */
  canvas {
    display: inline-block;
  }
  
  /**
   * Add the correct display in IE.
   */
  template {
    display: none;
  }
  
  /* Hidden
     ========================================================================== */
  /**
   * Add the correct display in IE 10-.
   */
  [hidden] {
    display: none;
  }
  
  /*------------------------------------*  
  Generic > Reset
  \*------------------------------------*/
  /**
   * A very simple reset that sits on top of Normalize.css.
   */

  
  /**
   * Remove trailing margins from nested lists.
   */
  li > ol,
  li > ul {
    margin-bottom: 0;
  }
  
  /**
   * Remove default table spacing.
   */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /*------------------------------------*  
  Generic > Shared
  \*------------------------------------*/
  /**
   * Shared declarations for certain elements.
   * Always declare margins in the same direction:
   * csswizardry.com/2012/06/single-direction-margin-declarations
   */

  
  /**
   * Consistent indentation for lists.
   */
ol, ul {
    margin: 0 0 15px 15px;padding:0;
  }

  /*------------------------------------*  
  Elements > Page
  \*------------------------------------*/

  body {
    margin: 0;
	font-family:-apple-system,BlinkMacSystemFont,Arial,"Helvetica Neue",Helvetica,sans-serif;
	line-height:1.5;
	color:#727272;
	font-size:15px;
	background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	overflow-x:hidden;
  }  
  *::-moz-selection {
    color: #FFFFFF;
    background-color: #0d7fd9;
  }
  
  *::selection {
    color: #FFFFFF;
    background-color: #0d7fd9;
  }
  
  /*------------------------------------*  
  Elements > Links
  \*------------------------------------*/
  a {
   
    text-decoration: none;
    transition: 500ms;
  }
  
  a:hover, a:active, a:focus {
   
    text-decoration: none;
  }
  
  /*------------------------------------*  
  Elements > img
  \*------------------------------------*/
  img {
    display: block;
    height: auto;
    max-width: 100%;
    font-style: italic;
  }
  
  /*------------------------------------*  
  Elements > hr
  \*------------------------------------*/
  hr {
    width: 100%;
    height: 1px;
    border: 0;
    margin: 20px 0;
    background-color: #e1e1e1;
  }
  
  /*------------------------------------*  
  Elements > Typography
  \*------------------------------------*/
  h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    
	color:#2a363f;
	margin:0 0 15px;
	font-weight:700;
	padding:0;
  }
  
  h1,.h1 {
    font-size: 30px;
  }
  
  h2,.h2 {
    font-size: 27px;
  }
  
  h3,.h3 {
    font-size: 22px;
  }
  
  h4,.h4 {
    font-size: 20px;
  }
  
  h5,.h5 {
    font-size: 18px;
  }
  
  h6,.h6 {
    font-size: 16px;
  }
  
  b,
  strong {
    font-weight: 700;
  }
  
  /*------------------------------------*  
  Elements > Block quote
  \*------------------------------------*/
  blockquote {
    padding-left: 15px;
	padding-top:5px;padding-bottom:5px;
    margin: 15px 0;
    border-left: 4px solid #f8333c;
    font-style: italic;
	font-size:18px;
   
  }
  
  /*------------------------------------*  
  Elements > code & pre
  \*------------------------------------*/
  pre,
  code {
    font-family: Courier, monospace;
    
  }
  
  pre {
    overflow: auto;
    padding: 32px;
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  .rtl pre {
    direction: rtl;
  }
  p {padding:0;margin:0 0 15px;}
  p code {
    padding: 2px 4px;
  }

 /*------------------------------------*  
  Definition Lists
  \*------------------------------------*/
dl:after {
  content:"";
  display:table;
  clear:both;
}
dd {
    padding:.5em 0;
}
dl {
    width:100%;
}
dt {
    font-weight:bold;
}
dd + dd {
    clear:both;
}

dd + dt {
   clear:both;
    padding-top:.5em;
}
dt + dt {
    width: 100%;
    float: none;
    padding: 0 70% 0 0;
}
dt + dt + dd {
    margin-top: -2em;
}
dt + dt + dd + dt {
    margin-top: 2em;
}
  
  /*------------------------------------*  
  Elements > Inputs
  \*------------------------------------*/
  input[type='text'],
  input[type='password'],
  input[type='date'],
  input[type='datetime'],
  input[type='datetime-local'],
  input[type='month'],
  input[type='week'],
  input[type='email'],
  input[type='number'],
  input[type='search'],
  input[type='tel'],
  input[type='time'],
  input[type='url'],
  input[type='color'],
  textarea,
  select {
    width: 100%;
    display: block;
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
    background-color: #FFFFFF;
    font-size: 15px;
    
    transition: 500ms;
  }
  
  input[type='text']::-webkit-input-placeholder,
  input[type='password']::-webkit-input-placeholder,
  input[type='date']::-webkit-input-placeholder,
  input[type='datetime']::-webkit-input-placeholder,
  input[type='datetime-local']::-webkit-input-placeholder,
  input[type='month']::-webkit-input-placeholder,
  input[type='week']::-webkit-input-placeholder,
  input[type='email']::-webkit-input-placeholder,
  input[type='number']::-webkit-input-placeholder,
  input[type='search']::-webkit-input-placeholder,
  input[type='tel']::-webkit-input-placeholder,
  input[type='time']::-webkit-input-placeholder,
  input[type='url']::-webkit-input-placeholder,
  input[type='color']::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    opacity: 1;
    
  }
  
  input[type='text']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder,
  input[type='date']:-ms-input-placeholder,
  input[type='datetime']:-ms-input-placeholder,
  input[type='datetime-local']:-ms-input-placeholder,
  input[type='month']:-ms-input-placeholder,
  input[type='week']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder,
  input[type='number']:-ms-input-placeholder,
  input[type='search']:-ms-input-placeholder,
  input[type='tel']:-ms-input-placeholder,
  input[type='time']:-ms-input-placeholder,
  input[type='url']:-ms-input-placeholder,
  input[type='color']:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    opacity: 1;
    
  }
  
  input[type='text']::placeholder,
  input[type='password']::placeholder,
  input[type='date']::placeholder,
  input[type='datetime']::placeholder,
  input[type='datetime-local']::placeholder,
  input[type='month']::placeholder,
  input[type='week']::placeholder,
  input[type='email']::placeholder,
  input[type='number']::placeholder,
  input[type='search']::placeholder,
  input[type='tel']::placeholder,
  input[type='time']::placeholder,
  input[type='url']::placeholder,
  input[type='color']::placeholder,
  textarea::placeholder,
  select::placeholder {
    opacity: 1;
    
  }
  
  input[type='text']:focus,
  input[type='password']:focus,
  input[type='date']:focus,
  input[type='datetime']:focus,
  input[type='datetime-local']:focus,
  input[type='month']:focus,
  input[type='week']:focus,
  input[type='email']:focus,
  input[type='number']:focus,
  input[type='search']:focus,
  input[type='tel']:focus,
  input[type='time']:focus,
  input[type='url']:focus,
  input[type='color']:focus,
  textarea:focus,
  select:focus {
    border:1px solid rgba(0,0,0,0.15)!important;
  }
  
  select {
    
    background-position: right 16px center;
    background-repeat: no-repeat;
    padding-right: 16px;
    border-radius: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  
  /*------------------------------------*  
  Elements > Buttons
  \*------------------------------------*/
  input[type='submit'] {
    display: inline-block;
    margin-bottom: 0;
  
    font-weight: 700;
   text-transform:uppercase;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
  
    padding: 10px 25px 12px;
    transition: all 0.2s ease-in-out;
    background: #737373;
    border: 1px solid #737373;
    color: #fff;
  }
  
  
  input[type='submit']:hover,
  input[type='submit']:active,
  input[type='submit']:focus {
    text-decoration: none;
    background: #5f5f5f;
    border: 1px solid #5f5f5f;
  }
  

  
  input[type='submit'].active:hover,
  input[type='submit'].active:active,
  input[type='submit'].active:focus {
    opacity: .9;
  }


  form label {
    font-size: 14px;
    font-weight: normal;
}
  /*------------------------------------*  Elements > Table
  \*------------------------------------*/
  table {
    width: 100%;
	text-align:center;
	margin:0 0 15px;
	border:1px solid #dedede;
  }
table tr:first-child td {color:#000;font-weight:700;}
table tr:nth-child(odd) {background:#eee;}
 table tr td {border:1px solid #dedede;} 
  th,
  td {
    padding: 10px;
  }
table.td4 tr:last-child td {padding:10px 10px 54px;}
@media (min-width:992px) and (max-width:1199px) {
table.td4 tr:last-child td {padding:10px 10px 31px;}
}
@media (max-width:991px) {
table.td4 tr:last-child td {padding:10px 10px 10px;}
}
@media screen and (max-width: 767px) {
    .table-igra {
        width: 100%;
        overflow: auto!important;
        border: 1px solid #dedede;
        
        box-sizing: border-box;
        margin: 20px 0 20px;
    }
    .table-igra table {
        margin: 0 0 0 0!important;
        border: none!important;
        border-radius: 0!important;
    }
}


/*--------------------------------------------------------------

# Content

--------------------------------------------------------------*/





/*--------------------------------------------------------------

## Posts and pages

--------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}



.single .byline,
.group-blog .byline {
    display: inline;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}


.single .post-meta ul.post-categories {
    margin: 0;
    padding: 0;
}

.post-meta ul.post-categories li {
    list-style: none;
}

.single .danfe-post-wrapper {
    padding: 0;
}

.single section.owl-wrapper{
    margin:0;
}

/*===============================================================

## Comments

=================================================================*/
.comment-box-wrapper{
  position: relative;
  border-radius:15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
 
  width: 100%;
  margin-bottom: 30px;
}
/**
 * 11.4.1 - Comment form
 * -----------------------------------------
 */

/* comments area: comment form, comment list, and navigation */
.comments-area {
  
  font-style: normal;
  font-weight: 400;
 
  padding: 15px;
}



/* comment form title, comments title */
.comment-reply-title,
.comments-title {
  margin: 0 0 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  text-transform:uppercase;
  color: #2f3235;
}

/* comment form */
.comment-form {
  background-color: #ffffff;
  margin-bottom: 0;
  padding: 0;
  box-shadow: none;
}
.comment-form-comment {
  margin-bottom: 7px;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
  margin-bottom: 10px;
}
.comment-form label {
  display: block;
  margin-bottom: 0;
  padding-bottom: 5px;
  font-weight: 700;

  color: #4c4f53;
}
.comment-form-comment label:after {
  content: ' *';
}
.comment-form-cookies-consent {
  margin-bottom: 10px;
  padding-top: 12px;
}
.comment-form-cookies-consent input[type="checkbox"] {
  margin: 0 10px 0 0;
}
.comment-form-cookies-consent label {
  display: inline;
  padding-bottom: 0;
  font-weight: 400;
}


/* allowed tags */
.comment-form .form-allowed-tags {
  display: none;
}


.comment-form #submit {
outline: none;
    display: inline-block;
    
    margin:15px 0 0;
   border-radius:10px;
    border: none;
    
    padding: 12px 25px 10px;
    background: #797979;
    color: #fff;
    -webkit-transition: background-color 0.2s ease;
    -moz-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}
.comment-form #submit:hover,
.comment-form #submit:focus {
  color: #ffffff;
  background: #5c5c5c;
}
.comment-form #submit:focus {
outline:0;
}


/* "must login" message */
.comment-respond .must-log-in {
  margin-bottom: 40px;
  padding: 30px;
 
}
.comment-respond .must-log-in a {

  text-decoration: underline !important;
}



/* cancel comment reply link */
.comment-reply-title small {
  float: right;
  margin-top: 10px;
}
.comment-reply-title #cancel-comment-reply-link {
 
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  
}



/**
 * 11.4.2 - Comment list
 * -------------------------------------------------------------
 */


.comment-list {
  list-style: none outside none;
  margin: 0;
  padding: 0 0 15px;
}
.comment-list .children {
  list-style: none outside none;
  margin: 0;
  padding: 0 0 0 30px;
}

/* comment body */
.comment .comment-body {
  margin-top: 25px;
  padding-top: 25px;
  
  word-wrap: break-word;
}
.comment-list {border-bottom: 1px solid #eeefef;}


.comment-date {font-size:13px;}
.comment-author img {
  float: left;
  display: block;
  width: 46px;
  height: 46px !important;
  margin: 0 15px 0 0;
  padding: 0;
  border-radius: 23px;
}

/* comment metadata: author */
.comment-meta .comment-author .fn {
 
 
  font-style: normal;
  font-weight: 600;
 
  color: #2f3235;
}
.comment-meta .comment-author .fn .url {
  color: #2f3235;
  text-decoration: underline !important;
}
.comment-meta .comment-author .fn .url:hover,
.comment-meta .comment-author .fn .url:focus {
  color: #6ca4db;
}
.comment-meta .comment-author .says {
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}

/* comment metadata: post author */
.bypostauthor > article .fn:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f303';
  margin-left: 8px;
  font-size: 75%;
}

/* comment metadata: date and edit links */
.comment-meta .comment-metadata {
  margin-top: 2px;
 
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
 
  color: #989ea6;
}
.comment-meta .comment-metadata a {
  color: #989ea6;
}
.comment-meta .comment-metadata a:hover,
.comment-meta .comment-metadata a:focus {
  color: #6ca4db;
  text-decoration: underline !important;
}

/* comment metadata: edit link */
.comment-meta .edit-link {
  margin-left: 10px;
}

/* comment metadata: "comment awaiting moderation" message */
.comment-meta .comment-awaiting-moderation {
  display: inline-block;
  margin: 15px 0 0;
  padding: 4px 0;
  background-color: #f7f8f8;
}

/* comment content */
.comment-content {
  padding: 12px 0;
}

.comment-content p {
  margin-bottom: 15px;
}


/* comment reply */
.comment-body .reply {
  padding: 0 0 0 61px;
  margin-top: -6px;
  
}
.bwp-no-avatars .comment-body .reply {
  padding-left: 0 !important;
}
.comment-reply-link {
  
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
 text-transform:uppercase;
}


/* comment reply: comment form */
.comment-respond {
  margin-top: 25px;

  
}
.comment-list li .comment-reply-title {
  margin-bottom: 16px;
}
.comment-list li .comment-form {
  margin-bottom: 0;
  padding: 0;
  box-shadow: none;
}
.comment-list li .comment-form .form-submit {
  padding-bottom: 5px;
}
.comment-list li {margin-bottom:15px;}
/* comments are closed */
.comment-list-wrap.comments-closed .comment-list {
  padding-bottom: 0;
}
.comments-area .no-comments {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #ffffff;
}



/*--------------------------------------------------------------

# Infinite scroll

--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,

/* Older / Newer Posts Navigation (always hidden) */

.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}


/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}


/*--------------------------------------------------------------

# Media

--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    width: 100%;
}


/*--------------------------------------------------------------

## Captions

--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    align-items: stretch;
    overflow: hidden;
}

.danfe-gallery-section {
    padding: 30px;
}

.gallery:after {
    display: table;
    content: "";
    clear: both;
}

.gallery-item {
    margin: 0;
    float: left;
    padding: 0.5em;
}

.gallery-item img {
    max-width: 100%;
}

#gallery-2 {
    margin: auto;
}

#gallery-2 .gallery-item {
    float: left;
    margin-top: 10px;
    text-align: center;
    width: 33%;
}

#gallery-2 img {
    border: 2px solid #cfcfcf;
}

#gallery-2 .gallery-caption {
    margin-left: 0;
}
.post-gallery-section{
    display:inline-block;
}
.post-gallery-section [class*="col-"]{
    padding:0;
}
.post-gallery-section .media-item {
    padding: 2px;
}
.post-gallery-section .media-wrapper .media-item img {
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
.post-gallery-section .media-wrapper .media-item:hover .mask {
    visibility: visible;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}
.post-gallery-section .media-wrapper .media-item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.post-gallery-section .media-wrapper .media-item-inner {
    position: relative;
    overflow: hidden;
}
.gallery:after {
    content: "";
    display: table;
    clear: both;
}

.gallery figure img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.gallery figure {
    float: left;
    margin: 0 2% 5px 0;
}

.gallery.gallery-columns-1 figure {
    width: 100%;
    margin: 0 0 1em 0;
    float: none;
}

.gallery.gallery-columns-3 figure {
    width: 32%;
}

.gallery.gallery-columns-3 figure:nth-of-type(3n+3) {
    margin-right: 0;
}

.gallery.gallery-columns-3 figure:nth-of-type(3n+4) {
    clear: left;
}

.gallery.gallery-columns-2 figure {
    width: 49%;
}

.gallery.gallery-columns-2 figure:nth-of-type(even) {
    margin-right: 0;
}

.gallery.gallery-columns-2 figure:nth-of-type(odd) {
    clear: left;
}

.gallery.gallery-columns-4 figure {
    width: 23.25%;
}

.gallery.gallery-columns-4 figure:nth-of-type(4n+4) {
    margin-right: 0;
}

.gallery.gallery-columns-4 figure:nth-of-type(4n+5) {
    clear: left;
}

.gallery.gallery-columns-5 figure {
    width: 18%;
}

.gallery.gallery-columns-5 figure:nth-of-type(5n+5) {
    margin-right: 0;
}

.gallery.gallery-columns-5 figure:nth-of-type(5n+6) {
    clear: left;
}

.gallery.gallery-columns-6 figure {
    width: 14.2%;
}

.gallery.gallery-columns-6 figure:nth-of-type(6n+6) {
    margin-right: 0;
}

.gallery.gallery-columns-6 figure:nth-of-type(6n+7) {
    clear: left;
}

.gallery.gallery-columns-7 figure {
    width: 12%;
}

.gallery.gallery-columns-7 figure:nth-of-type(7n+7) {
    margin-right: 0;
}

.gallery.gallery-columns-7 figure:nth-of-type(7n+8) {
    clear: left;
}

.gallery.gallery-columns-8 figure {
    width: 10.2%;
}

.gallery.gallery-columns-8 figure:nth-of-type(8n+8) {
    margin-right: 0;
}

.gallery.gallery-columns-8 figure:nth-of-type(8n+9) {
    clear: left;
}

.gallery.gallery-columns-9 figure {
    width: 8.85%;
}

.gallery.gallery-columns-9 figure:nth-of-type(9n+9) {
    margin-right: 0;
}

.gallery.gallery-columns-9 figure:nth-of-type(9n+10) {
    clear: left;
}



/*--------------------------------------------------------------

## Header logo

--------------------------------------------------------------*/

.logo-header-inner{
    float:left;
    height: auto;
    padding: 15px 15px;
    
}
.logo-header-inner img {
    max-width: 170px;
}
.logo-header-inner a {
    display: inline-block;
}

.logo-header-inner a {
    display: block;
    max-width: 100%;
    height: auto;
}
.site-branding a img.custom-logo {
    padding-bottom: 10px;
}

.top-header{
    padding: 7px 0;
	background:#000;
}


/*---------------------------------------
## Top Date
 ---------------------------------------*/

.header-date{
  text-align: center;
}


/*--------------------------------------------------------------

## Main Menu CSS

--------------------------------------------------------------*/

.header-lower {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
    background: #000;
    z-index: 5;
    border-top: 1px solid #202020;
    padding:10px 0;
}

.main-menu {
    position: relative;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
    padding: 0;
}

.main-menu .navigation ul {
    margin: 0;
    padding: 0;
}

.main-menu .navigation ul li {
    list-style: none;
}

.main-menu .navigation > li {
    position: relative;
    display: inline-block;
    margin-right: 20px;
	margin-top:18px;
}

.main-menu .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 34px;
    height: 30px;
    border: 1px solid #7a7a7a;
    text-align: center;
    font-size: 16px;
   
    color: #7a7a7a;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-menu .navigation > li:last-child {
    margin-right: 0px;
}



.main-menu .navigation > li > a {
    position: relative;
    display: block;
    font-size:15px;
    text-transform:uppercase;
    color: #999;
    
    opacity: 1;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navigation > li.menu-item-has-children > a:before {
    position: absolute;
    content: '\f107';
    right: 5px;
    
    font-size: 12px;
    font-family: 'FontAwesome';
}

.main-menu .navigation > li.menu-item-has-children > a {
    padding-right: 15px;
}

.sticky-header .main-menu .navigation > li > a {
    color: #181818 !important;
    padding: 17px 15px;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current-menu-item > a {
    color: #fff;
    opacity: 1;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current-menu-item > a {
    color: #fff;
    background: none;
}

.main-menu .navigation > li:hover:after,
.main-menu .navigation > li.current:after,
.main-menu .navigation > li.current-menu-item:after,
.main-menu .navigation > li:hover+li:after,
.main-menu .navigation > li.current+li:after,
.main-menu .navigation > li.current-menu-item+li:after {
    opacity: 0;
    visibility: hidden;
}

.main-menu .navigation > li.menu-item-has-children > a:after {
    display: none;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current-menu-item > a {
    background: transparent;
    opacity: 1;
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    top: 120%;
    width: 220px;
    padding: 0px;
    z-index: 100;
    display: none;
    background: #ffffff;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul {
    width: 220px;
}

.main-menu .navigation > li > ul.from-right {
    left: auto;
    right: 100%;
}

.main-menu .navigation > li > ul > li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ececec;
}

.main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > a {
    position: relative;
    display: block;
    padding: 15px 20px;
   
    font-weight: 400;
    
   
    text-align: left;
   
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.main-menu .navigation > li > ul > li:focus > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.main-menu .navigation > li > ul > li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.main-menu .navigation > li > ul > li > a:after {
    background: #38b7ea;
    position: absolute;
    content: '';
    top: calc(50% - 4px);
    right: 22px;
    height: 8px;
    width: 8px;
    background: #626a70;
    border-radius: 8px;
}
.main-menu .navigation > li > ul > li:nth-child(odd) > a:after{
  background: #38b7ea;
}
.main-menu .navigation > li > ul > li:nth-child(even) > a:after{
  background: #ff7473;
}
.main-menu .navigation > li > ul > li:nth-child(3n+1) > a:after{
  background: #f15508;
}
.main-menu .navigation > li > ul > li:hover > a {
    background: #f5f8f9;
}

.main-menu .navigation > li > ul > li.menu-item-has-children > a:after {
    font-family: 'FontAwesome';
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 13px;
    width: 10px;
    height: 20px;
    display: block;
   
  
   
    font-weight: normal;
    text-align: center;
    z-index: 5;
}

.main-menu .navigation > li > ul > li.menu-item-has-children:hover > a:after {
    color: #ffffff;
}

.main-menu .navigation > li > ul > li > ul {
    position: absolute;
    left: 0%;
    top: 50px !important;
    width: 220px;
    padding: 0px;
    z-index: 100;
    display: none;
    background: #ffffff;
    border-top: 1px solid #333;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li > ul > li > ul {

}

.main-menu .navigation > li > ul > li > ul > li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ececec;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > ul > li > a {
    position: relative;
    display: block;
    padding: 12px 20px;
   
    font-weight: 400;
   
   
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}



.main-menu .navigation > li.menu-item-has-children:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.main-menu .navigation > li.menu-item-has-children:focus-within > ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
    display: block;  
}

.main-menu .navigation li > ul > li.menu-item-has-children:hover > ul {
    visibility: visible;
    opacity: 1;
    top: -1px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.main-menu .navbar-collapse > ul li.menu-item-has-children .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}
@media only screen and (min-width: 992px) {
    .main-menu .navigation > li > ul,
    .main-menu .navigation > li > ul > li > ul {
        display: block !important;
        visibility: hidden;
        opacity: 0;
    }
    .main-menu .navigation > li.menu-item-has-children:hover > ul {
        visibility: visible;
        opacity: 1;
        top: 100%;
    }
}

@media only screen and (max-width: 991px) {
  .main-menu .dropdown-btn{
    display:block;
  }
 .main-menu {position:relative;}
  .main-menu .navigation > li.menu-item-has-children > a::before,
  .main-menu .navigation > li > ul > li.menu-item-has-children > a::after{
    display:none;
  }
    .main-menu .collapse {
        overflow: auto;
        float: none;
        width: 100%;
        padding: 10px 0px 0px;
        border: none;
        margin: 0px 0px 15px;
        -ms-border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        box-shadow: none;
		
    }
    .main-menu .collapse.in,
    .main-menu .collapsing {
        padding: 10px 0px 0px;
        border: none;
        margin: 0px 0px 15px;
        -ms-border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        box-shadow: none;
    }
    .main-menu .navbar-header {
        position: absolute;
        float: none;
        display: block;
        text-align: right;
        
        padding: 20px 0px;
        right: 0px;
        z-index: 99;
		top:0;
    }
    .main-menu .navbar-header .navbar-toggle {
        display: inline-block;
        z-index: 7;
        border: none;
        float: none;
        margin: 0px 0px 0px 0px;
        border-radius: 0px;
        background: none;
    }

    .main-menu .navbar-header .navbar-toggle .icon-bar {
        background: #ffffff;
    }
    .main-menu .navbar-header .navbar-toggle:focus-within .icon-bar {
        background: #2ecc71;
    }
    .main-menu .navigation > li{
      display:block;
    }
    .main-menu .navbar-collapse  .navigation {
        float: none !important;
        margin: 0px !important;
        width: 100% !important;
        
        border: none;
        border-top: none;
    }
    .main-menu .navbar-collapse > .navigation > li {
        margin: 0px!important;
        float: none!important;
        padding: 0px!important;
        width: 100%;
        display:block;
    }
    .main-menu .navigation > li > a,
    .main-menu .navigation > li > ul:before {
        border: none;
		margin:0;
    }
    .main-menu .navbar-collapse  .navigation > li > a {
        padding: 10px 10px !important;
        border: none !important;
    }
    .main-menu .navbar-collapse  .navigation > li > a:focus, 
    .main-menu .navbar-collapse  .navigation > li > ul > li > a:focus,
    .main-menu .navbar-collapse  .navigation > li > ul > li > ul > li > a:focus {
        text-decoration: underline;
    }
    .main-menu .navbar-collapse  .navigation > li > a:focus + .sub-menu {
        display: block !important;
    }

    .main-menu .navbar-collapse  .navigation > li > ul > li:focus-within > .sub-menu {
        display: block !important;
    }
    .main-menu .navigation li.dropdown > a:after,
    .main-menu .navigation > li.dropdown > a:before,
    .main-menu .navigation > li > ul > li > a::before,
    .main-menu .navigation > li > ul > li > ul > li > a::before {
        color: #ffffff !important;
        right: 15px;
        
        display: none !important;
    }
    .main-menu .navbar-collapse  .navigation > li > ul,
    .main-menu .navbar-collapse  .navigation > li > ul > li > ul {
        position: relative;
        border: none;
        float: none;
        visibility: visible;
        opacity: 1;
        display: none;
        margin: 0px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        padding: 0px;
        outline: none;
        width: 100%;
        background: #292929;
        -webkit-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        transition: none !important;
        -webkit-transition: none !important;
        -ms-transition: none !important;
        -o-transition: none !important;
        -moz-transition: none !important;
    }
    .main-menu .navbar-collapse  .navigation > li > ul,
    .main-menu .navbar-collapse  .navigation > li > ul > li > ul {
        border: none!important;
    }
    .main-menu .navbar-collapse  .navigation > li,
    .main-menu .navbar-collapse  .navigation > li > ul > li,
    .main-menu .navbar-collapse  .navigation > li > ul > li > ul > li {
        border: none!important;
        opacity: 1 !important;
        top: 0px !important;
        left: 0px !important;
        visibility: visible !important;
    }
    .main-menu .navbar-collapse  .navigation > li:first-child {
        border: none;
    }
    .main-menu .navbar-collapse  .navigation > li > a,
    .main-menu .navbar-collapse  .navigation > li > ul > li > a,
    .main-menu .navbar-collapse  .navigation > li > ul > li > ul > li > a {
        padding: 10px 15px !important;
        font-weight:600;
        background: #121212;
        text-align: left;
    }
    .main-menu .navbar-collapse  .navigation > li > a:hover,
    .main-menu .navbar-collapse  .navigation > li > a:active,
    .main-menu .navbar-collapse  .navigation > li > a:focus {
        background: #1b1b1b;
    }
  
    .main-menu .navbar-collapse  .navigation li.dropdown .dropdown-btn,
    .header-style-two .nav-outer .btn-outer {
        display: block;
    }
    .main-menu .navbar-collapse  .navigation li.dropdown:after,
    .main-menu .navigation  li > ul:before,
    .main-slider .bordered-layer {
        display: none !important;
    }
.main-menu .navigation > li {
   
    display: block!important;
    margin-right: 0!important;
	margin-top:0!important;
	margin-bottom:1px;
}
}
/*--------------------------------------------------------------

## SEARCH CSS

--------------------------------------------------------------*/
#search-form {
    float: right;
    overflow: hidden;
}
#search-form .search-form {
    float: left;
    position: relative;
}
#search-form .top-search-wrapper label {
    display: block;
    float: left;
    min-width: 300px;
    margin:0;
    font-weight: normal;
}

#search-form input[type="search"] {
    width: 100%;
    outline: none;
    border-radius: 0;
    border: 1px solid #626a70;
    padding: 10px 100px 10px 10px;
}
#search-form .search-submit {
  position: absolute;
  outline: 0;
  border: 0;
  border-left: 1px solid #626a70;
  padding: 5px 15px;
  background: #ffffff;
  color: #626a70;
  transition: all 0.2s ease-in-out;
  right: 0;
  border-radius: 0 30px 30px 0;
  margin: 5px;
}

#search-form input::placeholder { 
  color: #999;
  opacity: 1; 
}

#search-form input:-ms-input-placeholder { 
  color: #999;
}

#search-form input::-ms-input-placeholder { 
  color: #999;
}




/*================================================
## POST STYLE CSS
=================================================*/
.post-wrapper {
position: relative;
    border-radius:15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
	margin-bottom:15px;
	padding:15px;
}
.archive .post-wrapper, .search .post-wrapper {padding:0;}
.archive .post-content-wrapper, .search .post-content-wrapper {padding-right:15px;padding-top:30px;padding-bottom:15px;}
.post-wrapper ul, .post-wrapper ol {margin:0 0 15px 15px;padding:0;clear:both;}

.post-wrapper ul li, .post-wrapper ol li {margin:0 0 4px;}
.post-wrapper ul li:last-child, .post-wrapper ol li:last-child {margin:0;}
.post-title h1 {
font-size:20px;text-transform:uppercase;
}
.post-wrapper p img {margin-top:15px;}
.post-wrapper p:nth-of-type(1) {clear:none;}
.post-wrapper p {clear:both;}
.single .post-wrapper h1, .single .post-wrapper h2, .single .post-wrapper h3, .single .post-wrapper h4, .single .post-wrapper h5, .single .post-wrapper h6 {clear:both;}
.single .post-wrapper h2 {font-size:24px;}
.single .post-wrapper h3 {font-size:20px;}
.single .post-wrapper h4 {font-size:18px;}
.post-footer{
  padding: 35px 0;
}


.post-footer-right {
    list-style-type: none;
    text-decoration: none;
    float: right;
    margin-top: 10px;
    overflow: hidden;
}
.post-footer-right span{
  position: relative;
  margin-left: 40px;
  color: #626a70;
  text-decoration: none;
 
}
.post-footer-right span i {
    font-size: 20px;
}
.post-order{
  margin-top:20px;
}

.miniature {float:left;margin-right:15px;margin-bottom:15px;}
/*========================================================
## SINGLE PAGE
==========================================================*/
.single {
    background: #fff;
}
.left-col figure {
    height: 540px;
}

.right-col figure {
    height: 250px;
    overflow: hidden;
}

.right-col {
    margin-bottom: 30px;
}

.right-col:nth-child(2) {
    margin-bottom: 0;
}

/*========================================================
## ARCHIVE PAGE
==========================================================*/

.archive-heading-wrapper{
   
    background: #f7f7f7;
    
    padding: 15px 0 15px;
   
}
.archive-heading-wrapper h1 {font-size:23px;text-transform:uppercase;margin:0;}
.archive .archive-heading-wrapper, .search .archive-heading-wrapper {margin: 0 0 40px;}
/*--------------------------------------------------------------

## Main Index

--------------------------------------------------------------*/

.reletive {
    position: relative;
}


.no-sidebar .content-area{
    width:100%;
}
#primary, #secondary {margin-top:40px;}

.archive #primary, .search #primary {margin-top:0;}
.danfe-post-wrapper {
    overflow: hidden;
    padding-bottom: 40px;
}



.entry-title a {
    font-size: 20px;
    font-weight: 600;
margin:0 0 15px;
display:block;
}



.entry-img {
    margin: 18px 0 23px 0;
    padding: 0 30px;
}


section.error-404.not-found {
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}
section.error-404.not-found p{
  margin-bottom: 20px;
}


/*--------------------------------------------------------------

# Search Result

--------------------------------------------------------------*/

.search-results .post-content{
  padding-bottom: 15px;
}
.single .post-content p img {margin-bottom:15px;}
section.no-results {
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}
section.no-results p{
  margin-bottom: 20px;
}
section.no-results input[type='search'],
section.no-results input[type='submit']{
 
  height: 45px;
}
section.no-results input[type='search'] {border: 1px solid rgba(0,0,0,0.1);} 
section.no-results input[type='submit'] {
  margin-left: -5px;
  margin-top: -2px;
}
/*--------------------------------------------------------------

# Widgets

--------------------------------------------------------------*/




/*================================================ 
#Author Widget CSS 
==================================================*/
figure.author {
    padding: 50px 30px 0 30px;
}
figure.author img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    clear: both;
    display: inline-block;
}


/*===============================================
 WidGET SEARCH CSS 
=================================================*/


.widget_search form input[type="search"]{
  border-radius:15px;
  border:1px solid rgba(0, 0, 0, 0.05);
  
}
.widget_search form input[type="submit"] {
display:none;
}



.widget select {
    max-width: 100%;
}
#secondary .widget {margin:0 0 30px;border-radius:15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;padding:15px;}
#secondary .widget.widget_search, #secondary .widget.widget_custom_html {border-radius:0;padding:0;box-shadow:none;}
.top-footer .widget ul {padding:0;margin:0;list-style:none;} 
.top-footer .widget ul li {
    margin:0 0 4px;
}
#secondary .widget-title {text-transform:uppercase;font-size:19px;color:#2a363f;margin:0 0 10px;font-weight:600;}
.top-footer .widget .widget-title {
  margin: 0 0 15px;
  position: relative;
  font-size: 17px;
  color: #fff;
  text-transform:uppercase;
}
#secondary .widget ul {margin:0;list-style:none;}
#secondary .widget ul li a {display:block;line-height:1.2;font-weight:600;}
#secondary .widget ul li {margin:0 0 10px;padding:0 0 10px;border-bottom:1px solid rgba(0,0,0,0.05);}
#secondary .widget ul li:last-child {margin:0;padding:0;border:none;}
.top-footer .widget ul li a {
    color: #999;
	text-transform:uppercase;
	font-size:14px;
}
.top-footer .widget ul li a:hover {
    color: #fff;
}

.top-footer .widget {margin:0 0 30px;}


#secondary form input[type="search"],
#secondary .search-form label {
    width: 100%;
    font-weight: normal;
}

/*========================================================
## navigation
==========================================================*/

.navigation.post-navigation {
  
    border-top: 1px solid rgba(0,0,0,0.07);
    
    float: left;
    width: 100%;
    clear: both;
    padding: 20px 0 0;
}
.nav-links .nav-previous a, 
.nav-links .nav-next a{
 

}

.nav-links .nav-previous,
.nav-links .nav-previous a {
    float: left;
}

.nav-links .nav-previous {
    margin-bottom: 5px;
}

.nav-links .nav-next,
.nav-links .nav-next a {
    float: right;
}
.nav-links .nav-previous,
.nav-links .nav-next{
    position:relative;
}
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover{
 
  text-decoration: none;
}

/*========================================================
##Related Posts
==========================================================*/
.post-related .h4 {
    margin: 0 0 20px;
    text-transform:uppercase;
	font-size:20px;
	
}
.post-related {
background:#f7f7f7;
  padding:40px 0 20px;  
}
.related-wrapper {
    position: relative;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    
    margin-bottom: 30px;
	border-radius:15px;overflow:hidden;
}
.related-wrapper-content{
padding: 15px;
}
.pro_post_title {min-height:50px;}
.pro_post_title a {display:block;line-height:1.3;font-weight:600;font-size:17px;}

.related-wrapper img{
    width: 100%;
}


/*================================================================ 
#Footer starts 
==================================================================*/
#colophon {background:#000;padding:50px 0 60px;}
.top-footer-widget {
   
    padding-bottom: 0px;
}

.footer-social,
.site-footer,
.site-info {
    float: left;
    width: 100%;
}



footer {
    padding: 20px 0px;
}


.copyright-text {
    text-align: left;
}




/*========================================== 
##Pagination 
============================================*/
.pagination {
    width: 100%;
}



/* Content */

.page .site-main,
.site-main.boxed {
    display:inline-block;
    width:100%;
}

/*--------------------------------------------------------------

## Grid Layout Style

--------------------------------------------------------------*/

#main article.post {
    float: left;
    width: 100%;
}

#main article.grid {
    width: 50%;
    padding: 0 10px;
    display: inline-block;
    float: none;
    margin-left: -3px;
    vertical-align: top;
}

#main article.grid.post {
    border: 0;
}

#main article.grid .detail-wrap {
    border: 1px solid #e9e9e9;
    padding: 20px;
}



/*--------------------------------------------------------------

## Footer Widgets Style

--------------------------------------------------------------*/







@media screen and (max-width:991px) {
    .top-search label{
      width:100%;
    }
    .top-search {
      max-width: 100%;
      float: none;
  }
  .header-date{
    display:none;
  }
  .social-links ul{
    text-align: center;
  }
  .social-links ul li{
    float:none;
  }
    .post .entry-img,
    .post .entry-img img,
    .related-posts .news-item.three-column-item {
        width: 100%;
    }

   
    .copyright-text {
        text-align: center;
    }
  
    .site-header .blog_way_plus_widget_social {
        z-index: 99999;
        margin-bottom: 0px;
    }
    .site-header .blog_way_plus_widget_social .social-menu-wrap .menu {
        float: left;
        padding-top: 5px;
    }
    #main article.grid {
        width: 100%;
        padding: 0px;
    }
 
    #main-slider .feature-description figcaption{
        top:50%;
    }
    #main-slider .feature-description figcaption{
        width:100%;
    }
    #main-slider .feature-description figcaption .read-more{
        margin:5px 0;
    }
    .danfe-post-wrapper .entry-header,
    .danfe-post-wrapper .entry-content,
    .danfe-post-wrapper .entry-footer{
        padding-left: 15px;
        padding-right: 15px;
    }
    .logo-header-inner{
      text-align: center!important;
	 
      
    }
    .search-icon {
      position: absolute;
      top: 10px;
      z-index: 100;
  }
  .logo-header-inner a{
    display: inline-block;
    margin:auto;
  }
  .post-footer-right{
    float: none;
    margin-bottom: 15px;
  }
  .post-footer-right span{
    margin:0;
  } 
}

@media screen and (max-width: 600px) {
    body.logged-in.admin-bar header#masthead.navbar-fixed-top {
        margin-top: 0px;
    }
    #page .navbar-fixed-top {
        position: relative;
    }
    .main-banner,
    .sticky-top .main-banner {
        padding: 75px 0 15px 0;
    }
}




/* Media css ends */


/* ELEMENTOR CSS */
.elementor-template-full-width .header-lower {
    margin-bottom: 0;
}


.home section.featured-posts-block {
    float: left;
    width: 33.333%;
    padding: 0 15px;
}



.center-logo .logo-header-inner {
    float: none;
    text-align: center;
}
.center-logo .navbar-right{
  float: none !important;
}
.bonuses{
  position:relative;
  margin: 0 0 30px 0; 
  padding:182px 12px 24px;
  color:#fff;
}
.bonuses__content{
  position:relative;
  z-index:2;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  gap:12px;
  -webkit-box-align:start;
      -ms-flex-align:start;
          align-items:flex-start;
}
.bonuses__bg{
  position:absolute;
  top:0;
  left:0;
  z-index:1;
  width:100%;
  height:100%;
}
.bonuses__bg img{
  width:100%;
  height:100%;
  -o-object-fit:cover;
     object-fit:cover;
  -o-object-position:80% 50%;
     object-position:80% 50%;
}
.bonuses .box{
  position:relative;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  gap:12px;
  width:100%;
  padding:12px 12px 66px;
  font-weight:bold;
  font-size:12px;
  line-height:1.2;
  text-transform:uppercase;
  border-radius:8px;
}
.bonuses .box__header{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
      -ms-flex-direction:row;
          flex-direction:row;
  gap:4px;
}
.bonuses .box__text{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  gap:6px;
  min-width:47%;
  font-weight:bold;
  font-size: 10px;
  white-space:nowrap;
  text-transform:uppercase;
}
.bonuses .box__text span{
  color:#f7d540;
  font-size:24px;
  text-align:right;
  text-shadow:0 2px 0 #e75700;
}
.bonuses .box__footer{
  position:absolute;
  right:12px;
  bottom:12px;
  left:12px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
      -ms-flex-direction:row;
          flex-direction:row;
  gap:12px;
}
.bonuses .box__button{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:horizontal;
  -webkit-box-direction:normal;
      -ms-flex-direction:row;
          flex-direction:row;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  gap:12px;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;
  width:100%;
  max-width:396px;
  padding:8px 6px;
  color:#fff;
  font-weight:bold;
  line-height:24px;
  text-align:center;
  text-transform:uppercase;
  border:1px dashed;
  cursor:pointer;
}
.bonuses .box__button:hover{
  text-decoration:none;
}
.bonuses .box--casino{
  background:-webkit-gradient(linear, left top, left bottom, from(#09B505), to(#004B40));
  background:linear-gradient(180deg, #09B505 0%, #004B40 100%);
}
.bonuses .box--casino .box__button:last-child{
  background:#05D100;
  border-color:#05D100;
  border-style:solid;
}
.bonuses .box--casino .box__button:last-child:hover{
  background:#05ab00;
  border-color:#05ab00;
}
.bonuses .box--poker{
  background:-webkit-gradient(linear, left top, left bottom, from(#FF642E), to(#5F0203));
  background:linear-gradient(180deg, #FF642E 0%, #5F0203 100%);
}
.bonuses .box--poker .box__button:last-child{
  background:#FF2E2E;
  border-color:#FF2E2E;
  border-style:solid;
}
.bonuses .box--poker .box__button:last-child:hover{
  background:#d52424;
  border-color:#d52424;
}

.scrolling .box__footer{
  position:fixed;
}
.scrolling .box__footer .box__button:first-child{
  background-color:rgba(0, 0, 0, 0.7);
}
.scrolling .box--casino .box__footer{
  bottom:60px;
}

@media only screen and (min-width: 480px){
  .bonuses .box{
    font-size:14px;
  }
  .bonuses .box__text span{
    width:40%;
  }
}

@media only screen and (min-width: 768px){
  .bonuses{
    padding:60px;
  }
  .bonuses__content{
    gap:24px;
    max-width:500px;
  }
  .bonuses__bg img{
    -o-object-position:50%;
       object-position:50%;
  }
  .bonuses .box{
    font-size:16px;
  }
  .bonuses .box__header{
    gap:16px;
  }
  .bonuses .box__text{
    min-width:0;
	font-size: 12px;
  }
  .bonuses .box__text span{
    width:auto;
    font-size:36px;
    text-align:left;
  }
}
.pay img {float:left;width:125px;margin-left:1px;margin-bottom:1px;}
#pokerdom_block {padding:40px 0 10px;}
#pokerdom_block h1 {color:#610393;}

#online_block {padding:0 0 40px;}
#mobile_block {background:#fafafa;padding:40px 0;}
#posts_block {clear:both;padding:50px 0 20px;background:#fafafa;}
.posts-col {overflow:hidden;background:#fff;border-radius:15px;box-shadow: 0 1px 4px 0 rgba(0,0,0,0.07);margin-bottom:30px;}
.posts-col span a {color:#000;font-weight:700;line-height:1.3;display:block;}
.posts-col span a:hover {color:#2ecc71;}
.posts-col span {padding:15px;display:block;min-height:80px;}
.home h1, .home h2 {font-size:23px;text-transform:uppercase;}
.home h3 {font-size:19px;text-transform:uppercase;}
a.green-btn {box-shadow:0 1px 4px 0 rgba(0,0,0,0.2);font-weight:600;text-transform:uppercase;color:#fff;border-radius:30px;background:#2ecc71;padding:14px 30px;}
a.green-btn:hover {color:#fff;background:#4dd486;}
a.grey-btn {box-shadow:0 1px 4px 0 rgba(0,0,0,0.2);font-weight:600;text-transform:uppercase;color:#999;border-radius:30px;border:1px solid #999;padding:13px 30px;}
a.grey-btn:hover {color:#999;background:rgba(255,255,255,0.1);}

.header-lower a.grey-btn {margin-right:15px;}
.footer-widget-link {padding:20px 0 40px;}
.footer-widget-link a {width:200px;display:inline-block;text-align:center;}
.footer-widget-link a.grey-btn {margin-right:20px;}
#secondary a.green-btn, #secondary a.grey-btn {display:block;text-align:center;margin-bottom:15px;}
#secondary a.grey-btn:hover {background:rgba(0,0,0,0.1);}
.banner-col {width:40%;}
.text-btn {margin-top:40px;}
.text-btn-mid {margin-top:40px;}
.text-btn a {color:#fff;border-bottom:1px solid #2ecc71;opacity:0.8;margin-left:5px;}
.text-btn-mid a {color:#fff;border-bottom:1px solid #2ecc71;opacity:1;margin-left:5px;}
.text-btn i {color:#fff;margin-right:7px;}
.text-btn-mid i {color:#fff;margin-right:7px;}
#download_block {background:#fafafa;}
#system_block i {margin-right:20px;float:left;width:50px;height:50px;background:#fff;color:#404a53;text-align:center;border-radius:50%;font-size:20px;padding-top:15px;}
#system_block i:hover {color:#2ecc71;}
#finance_block {background:#fafafa;padding:40px 0;} 
#system_block {background:#fafafa;padding:40px 0;}
#start_block {overflow:hidden;background: #391451;
background: -moz-linear-gradient(top,  #391451 0%, #a861b1 100%);
background: -webkit-linear-gradient(top,  #391451 0%,#a861b1 100%);
background: linear-gradient(to bottom,  #391451 0%,#a861b1 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#391451', endColorstr='#a861b1',GradientType=0 );
padding:60px 0;}
.sb {position:relative;z-index:999;background:#fff;border-radius:15px;overflow:hidden;box-shadow: 0 1px 4px 0 rgba(0,0,0,0.07);}
.sb .mw-9 {padding-left:0;padding-right:30px;}
.sb .mw-3 {padding-right:0;}
.sbl {padding-top:15px;}
.chip1 {position:absolute;background:url(/wp-content/uploads/2020/05/chip.png);background-size:contain;width:160px;height:144px;left:-170px;top:-70px;
 -webkit-transform:rotate(35deg);
  transform:rotate(35deg);}
  .chip2 {position:absolute;background:url(/wp-content/uploads/2020/05/chip.png);background-size:contain;width:110px;height:99px;left:-70px;bottom:-70px;
 -webkit-transform:rotate(-23deg);
  transform:rotate(-23deg);}
 .chip3 {z-index:1;position:absolute;background:url(/wp-content/uploads/2020/05/chip.png);background-size:contain;width:245px;height:220px;right:-120px;top:-100px;
 -webkit-transform:rotate(-55deg);
  transform:rotate(-55deg);}
  .chip4 {z-index:1;position:absolute;background:url(/wp-content/uploads/2020/05/chip.png);background-size:contain;width:130px;height:117px;right:-165px;bottom:-30px;
 -webkit-transform:rotate(45deg);
  transform:rotate(45deg);}
#start_block h2 {color:#2ecc71;}
#system_block b {display:block;text-transform:uppercase;}
#system_block .mw-4 b {text-transform:none;}
#system_block .mw-4 {padding-top:10px;min-height:70px;padding-bottom:10px;}

#download_block {padding:40px 0 60px;}
#download_block img {border-radius:15px;}
#itog_block {text-align:center;padding:40px 0 60px;}
#itog_block .green-btn {padding:20px 50px;} 
#itog_block p {margin:0 0 40px;}
#interface_block ul li {position:relative;padding:0 0 0 25px;margin:0 0 10px;}
#interface_block ul {list-style:none;margin:0 0 15px;padding:0;}
#interface_block ul li:before {font-family: 'FontAwesome';content: '\e802';color:#2ecc71;position:absolute;left:0;}
#interface_block {padding:40px 0;}
#finance_block ul li {position:relative;padding:0 0 0 25px;float:left;width:33.3333%;}
#finance_block ul {list-style:none;margin:15px 0 15px;padding:0;}
#finance_block ul li:before {font-family: 'FontAwesome';content: '\e802';color:#2ecc71;position:absolute;left:0;}
#finance_block img {border-radius:15px;}
#bonus_block {padding:40px 0;}
#bonus_block img {border-radius:15px;}
#bonus_block ul {list-style:none;margin:0 0 15px;}
#bonus_block ul li {padding-left:20px;position:relative;}
.bd ul li {margin:0 0 10px;}
.bd ul li:last-child {margin:0;}
.bd ul li:before {content:"";border-radius:50%;background:#01509a;width:10px;height:10px;position:absolute;left:0;top:7px;}
.bd img {margin-top:10px;margin-bottom:30px;}
.bb ul li {margin:0 0 10px;}
.bb ul li:last-child {margin:0;}
.bb ul li:before {content:"";border-radius:50%;background:#b418c2;width:10px;height:10px;position:absolute;left:0;top:7px;}
.bb img {margin-bottom:30px;}
.app_col {border-radius:15px;box-shadow:0 1px 4px 0 rgba(0,0,0,0.1);background:#fff;padding:15px 15px 1px;margin:10px 0 30px;}
.app_col h3 {text-align:center;}
.app_col img {display:block;margin:0 auto 15px;width:100px;}
#igra_block {padding:40px 0 30px;}
#free_block {padding:40px 0;}
#free_block h3 {margin:15px 0 10px;}
#free_block img {border-radius:15px;margin-bottom:20px;margin-top:5px;}
#free_block ul {list-style:none;margin:0 0 15px;}
#free_block ul li {position:relative;padding-left:20px;margin:0 0 15px;}
#free_block ul li:last-child {margin:0;}
#free_block ul li:before {content:"";border-radius:50%;background:#97d542;width:10px;height:10px;position:absolute;left:0;top:7px;}
#igra_block ul {padding:0;list-style:none;margin:0 0 15px;}
#igra_block ul li {position:relative;padding:10px 0 5px 45px;}
#igra_block ul li:before {font-weight:400;font-family: 'FontAwesome';content: '\e807';color:#2ecc71;position:absolute;top:6px;padding-left:1px;padding-top:3px;left:0;width:30px;height:30px;background:#ffae00;color:#fff;border-radius:50%;text-align:center;}
#online_block ul {padding:0;list-style:none;margin:0 0 15px;}
#online_block ul li {position:relative;padding:0 0 5px 20px;}
#online_block ul li:before {content:"";position:absolute;top:5px;left:0;border-radius:50%;width:10px;height:10px;background:#2ecc71;}
.menu-links ul {margin:0;padding:0;list-style:none;}
.menu-links ul li {display:inline-block;margin-right:10px;}
.menu-links ul li:last-child {margin-right:0;}
.menu-links ul li a {color:#999;font-size:11px;text-transform:uppercase;}
.menu-links ul li a:hover {color:#fff;}
.navbar-btn {text-align:right;padding-top:10px;clear:both;}
.copy-right-text p {font-size:12px;color:#999;opacity:0.7;}
.copy-right-text span {font-size:13px;color:#999;}
.copy-right-text ul {margin:15px 0 0;padding:0;list-style:none;}
.copy-right-text ul li {display:inline-block;margin-right:15px;}
.copy-right-text ul li:last-child {margin-right:0;}
.copy-right-text ul li a {color:#fff;font-size:13px;}
.copy-right-text ul li a:hover {color:#2ecc71;}
/*
Default style for WP-PageNavi plugin

*/
@media (max-width:470px) {#interface_block ul li {width:100%;} }
.wp-pagenavi {
	clear: both;
	padding:10px 0 50px;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	background:#f7f7f7;
	border-radius:5px;
  border:1px solid rgba(0, 0, 0, 0.05);
	padding: 15px 20px;
	margin: 2px;
	font-weight:700;
	color:#000;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	background:#2ecc71;border:1px solid #2ecc71;
	color:#fff;
}

.wp-pagenavi span.current {
	font-weight: bold;
}
/* Social Sharing */

.jssocials-shares {margin: 0;}

.jssocials-shares * {box-sizing: border-box;}

.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: 0.3em 0.6em 0.3em 0; }

.jssocials-share:last-child {
  margin-right: 0; }

.jssocials-share-logo {
  width: 1em;
  vertical-align: middle;
  font-size: 1.5em; }

img.jssocials-share-logo {
  width: auto;
  height: 1em; }

.jssocials-share-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1; }
  .jssocials-share-link.jssocials-share-link-count {
    padding-top: .2em; }
    .jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
      display: block;
      font-size: .6em;
      margin: 0 -.5em -.8em -.5em; }
  .jssocials-share-link.jssocials-share-no-count {
    padding-top: .5em; }
    .jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
      height: 1em; }

.jssocials-share-label {
  padding-left: 0.3em;
  vertical-align: middle; }

.jssocials-share-count-box {
  display: inline-block;
  height: 1.5em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default; }
  .jssocials-share-count-box.jssocials-share-no-count {
    display: none; }

.jssocials-share-count {
  line-height: 1.5em;
  vertical-align: middle; }


.jssocials-share-twitter .jssocials-share-link {
  background: #00aced; }
  .jssocials-share-twitter .jssocials-share-link:hover {
    background: #0087ba; }

.jssocials-share-facebook .jssocials-share-link {
  background: #3b5998; }
  .jssocials-share-facebook .jssocials-share-link:hover {
    background: #2d4373; }

.jssocials-share-googleplus .jssocials-share-link {
  background: #dd4b39; }
  .jssocials-share-googleplus .jssocials-share-link:hover {
    background: #c23321; }

.jssocials-share-linkedin .jssocials-share-link {
  background: #007bb6; }
  .jssocials-share-linkedin .jssocials-share-link:hover {
    background: #005983; }

.jssocials-share-pinterest .jssocials-share-link {
  background: #cb2027; }
  .jssocials-share-pinterest .jssocials-share-link:hover {
    background: #9f191f; }

.jssocials-share-email .jssocials-share-link {
  background: #3490F3; }
  .jssocials-share-email .jssocials-share-link:hover {
    background: #0e76e6; }

.jssocials-share-stumbleupon .jssocials-share-link {
  background: #eb4823; }
  .jssocials-share-stumbleupon .jssocials-share-link:hover {
    background: #c93412; }

.jssocials-share-whatsapp .jssocials-share-link {
  background: #29a628; }
  .jssocials-share-whatsapp .jssocials-share-link:hover {
    background: #1f7d1e; }

.jssocials-share-telegram .jssocials-share-link {
  background: #2ca5e0; }
  .jssocials-share-telegram .jssocials-share-link:hover {
    background: #1c88bd; }

.jssocials-share-line .jssocials-share-link {
  background: #25af00; }
  .jssocials-share-line .jssocials-share-link:hover {
    background: #1a7c00; }

.jssocials-share-viber .jssocials-share-link {
  background: #7b519d; }
  .jssocials-share-viber .jssocials-share-link:hover {
    background: #61407b; }

.jssocials-share-pocket .jssocials-share-link {
  background: #ef4056; }
  .jssocials-share-pocket .jssocials-share-link:hover {
    background: #e9132e; }

.jssocials-share-messenger .jssocials-share-link {
  background: #0084ff; }
  .jssocials-share-messenger .jssocials-share-link:hover {
    background: #006acc; }

.jssocials-share-vkontakte .jssocials-share-link {
  background: #45668e; }
  .jssocials-share-vkontakte .jssocials-share-link:hover {
    background: #344d6c; }

.jssocials-share-link {
  padding: .5em .6em;
  color: #fff;
  -webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
          transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-link:hover, .jssocials-share-link:focus, .jssocials-share-link:active {
    color: #fff; }

.jssocials-share-count-box {
  position: relative;
  height: 2.5em;
  padding: 0 .3em;
  margin-left: 0.3em;
  background: #f5f5f5;
  -webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
          transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-count-box:hover {
    background: gainsboro; }
    .jssocials-share-count-box:hover:after {
      border-color: transparent gainsboro transparent transparent; }
  .jssocials-share-count-box:after {
    content: "";
    display: block;
    position: absolute;
    top: 0.85em;
    left: -0.3em;
    width: 0;
    height: 0;
    border-width: 0.4em 0.4em 0.4em 0;
    border-style: solid;
    border-color: transparent #f5f5f5 transparent transparent;
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
            transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-count-box .jssocials-share-count {
    line-height: 2.5em;
    color: #444; }

	
	
.jssocials {
	display: inline-block;
}

#igrashare .jssocials-share {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
}

#igrashare .jssocials-share-link {
	
	padding: 1px 3px 3px 3px;
}
#igrashares .jssocials-share-link {
	
	padding: 10px 10px 10px 10px;

}
#igrashare .jssocials-share-logo {
    font-size: 13px;
}
#igrashares {
	margin-top: 0;
}
#igrashares.jssocials {
	text-align:center!important;display:block!important;
}
@media (max-width:991px) {
.bb img, .bd img {margin:0 auto 30px;}
#free_block img {margin:0 auto 30px;}
.home h1, .home h2, .home h3 {text-align:center;}
.navbar-btn {text-align:center;padding-top:20px;padding-bottom:20px;}
.menu-links {text-align:center;}
.logo-header-inner img {margin:0 auto;}
.top-footer .mw-7 {display:none;}
.logo-header-inner {float:none;position:relative;z-index:99;}
.archive .post-content-wrapper, .search .post-content-wrapper {padding-left:15px;padding-top:15px;}
.archive .post-thumb img, .search .post-thumb img {width:100%;}
.archive .post-thumb, .search .post-thumb {max-height:300px;overflow:hidden;}
.posts-col img {width:100%;}
#finance_block .mw-5 img {margin:20px auto 20px;}
#interface_block .mw-6 img {margin:30px auto 0;}
#download_block img {margin:0 auto 30px;}
.bd img {display:none;}
}
@media (max-width:1199px) {
.sb .mw-3 {display:none;}
.sb .mw-9 {padding-left:30px;padding-right:30px;width:100%!important;}
}
@media (max-width:400px) {
.navbar-btn a {display:block;text-align:center;}
.navbar-btn a.grey-btn {margin-right:0;margin-bottom:15px;}
}
@media (min-width:992px) and (max-width:1199px) {

.archive .post-content-wrapper, .search .post-content-wrapper {padding-top:15px;}
.footer-widget-link a.grey-btn {margin-right:0;margin-bottom:15px;}
.archive .entry-title a, .search .entry-title a {margin:0 0 5px;font-size:18px;}
.posts-col span {min-height:100px;}
#interface_block ul {margin:0 0 100px;}
}
@media (min-width:455px) and (max-width:992px) {
.top-footer .mw-5 .mw-6 {float: left;width: 50%!important;}

}
@media (min-width:525px) and (max-width:992px) {

#posts_block .mw-4 {float: left;width: 50%!important;}
}
@media (max-width:454px) {
.footer-widget-link a {display:block;width:100%;}
.footer-widget-link a.grey-btn {margin-right:0;margin-bottom:15px;}
}
@media (max-width:340px) {#banner_block b {font-size:25px;}.comment-form #submit {padding: 7px 15px 5px;font-size:13px;}}
@media screen and (max-width: 767px) {
.miniature {width:100%;margin-right:0;}
#banner_block {background: #25242a;
background: -moz-linear-gradient(left,  #25242a 0%, #5b5964 100%);
background: -webkit-linear-gradient(left,  #25242a 0%,#5b5964 100%);
background: linear-gradient(to right,  #25242a 0%,#5b5964 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#25242a', endColorstr='#5b5964',GradientType=1 );
height:300px;
}
.banner-col {width:100%;padding-top:40px;text-align:center;}
.text-btn {margin-top:40px;}
.text-btn-mid {margin-top:40px;}
#banner_block b {margin:0 0 40px;}
.cru {position:static;margin:30px auto 0;}
}
@media screen and (max-width: 705px) {
#finance_block ul li {width:100%;}
#igra_block ul li {width:100%;min-height:50px;}
}

.promotion {background:#fafafa;padding:30px;font-size:17px;color:#000;text-align:center;} 
.promotion b {color:#5a227f;}
.promotion p {max-width:800px;margin:0 auto 15px;}
.btn-promo { 
	display: block;
    font-size: 22px;
    line-height: 48px;
    height: 50px;
    box-sizing: border-box;
    
    border:1px dashed #5a227f;
color:#5a227f;
    text-align: center;
    width: 280px;
	font-weight:700;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-bottom:20px;
}

.btn-promo:after {
	content: '';
    -webkit-mask-image: url(/wp-content/themes/ipd/images/copy.svg);
    mask: url(/wp-content/themes/ipd/images/copy.svg);
    -webkit-mask-position: 50%;
    background-color: #5a227f;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 5px;
}

.top-promo .btn-promo {display:inline-block;border:none;margin:0;color:#ff610b;width: auto;font-size: 16px;
    line-height: inherit;
    height: auto;}
.top-promo .btn-promo:after {background-color: #ff610b;}
.btn-link {color:#fff;font-weight:700;background:#5a227f;padding:10px 30px;font-size:15px;}
.btn-link:hover, .btn-link:focus {color:#fff;text-decoration:none;background:#712e9c;}
.banner_tablet {text-align:center;padding:30px 0;display:none;background: linear-gradient(to right, #25242a 0%,#5b5964 100%);}
.banner_tablet b {font-weight:700;color:#fff;font-size:24px;}
.banner_tablet a.green-btn {padding:10px;display:block;margin:15px auto;max-width:260px;text-align:center;}
a.red-btn {padding:10px;display:block;margin:15px auto;max-width:260px;text-transform:uppercase;text-align:center;color:#000;border-radius:30px;font-weight:700;background:#ffbd0b;}
.cru a.red-btn {margin:20px auto 0;}
.fixed-promo {position:fixed;bottom:0;left:0;width:100%;padding:15px;display:none;
 background: #7520a0;
background: -moz-linear-gradient(-45deg,  #7520a0 0%, #2d1c35 100%);
background: -webkit-linear-gradient(-45deg,  #7520a0 0%,#2d1c35 100%);
background: linear-gradient(135deg,  #7520a0 0%,#2d1c35 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7520a0', endColorstr='#2d1c35',GradientType=1 );

 } 
 .fixed-promo img {max-width:200px;}
@media (max-width:767px) {
.navbar-btn, #banner_block, .top-header {display:none;}
.banner_tablet {display:block;}
.fixed-promo {display: flex;
 justify-content: space-around;
 align-items: center;}
 .cru {max-width:500px;background:rgba(0,0,0,0.2);padding:20px;
position:static;margin:20px auto 0;}
}
@media (max-width:430px) {
.fixed-promo {display:block;text-align:center;padding:20px 15px 30px;}
.fixed-promo img {margin:0 auto 30px;}
}
.btnpd {
	margin-top: 25px;
}

.mdwhd {
	display: flex;
    flex-direction: row;
	padding-bottom: 20px;
    padding-top: 10px;
	justify-content: space-around;
}

.dwnbtb{
	display: flex;
    flex-direction: column;
	align-items: center;
    justify-content: space-between;
}

.dwnbtb:nth-child(1){ width: 40%;}
.dwnbtb:nth-child(2){ width: 40%;}
.dwnbtb:nth-child(3){ width: 12%; margin: 0;}

.dwnbtb2{
	display: flex;
    flex-direction: row;
	margin-bottom: 10px;
}

.mbinfo1 {
	display: flex;
    flex-direction: column;
	margin-right: 30px;
	white-space: nowrap;
}

.mbinfo1:not(:first-child)::before {
    background-color: rgb(232,234,237);
    content: "";
    display: block;
    height: 24px;    
    position: absolute;
    margin: 10px 0 0 -20px;
    width: 1px;
}

.mbinfo2 {
	display: block;
    text-align: center;
}
.mbinfo2:nth-child(2) {font-size: 80%;}

.mbinfo3 {
	display: block;
    text-align: center;
}

.mbinfoicons {
	width: 15px;
}

a.mobclick1 {
    border-radius: 30px;
    padding: 10px 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #2ecc71;
    text-align: center;
	width: 85%;
    margin: 0 auto;
	overflow: hidden;
}
a.mobclick1:hover {background:#4dd486;color:#fff;}

a.mobclick2{
	border-radius: 30px;
    padding: 10px 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    border: 1px solid #999;
    text-align: center;
    width: 90%;
	margin: 0 auto;
	overflow: hidden;
}
a.mobclick2:hover {background: rgba(0,0,0,0.07);color:#999;}

.mblogo{
	width: 100px;
    border-radius: 15px;
    box-shadow: 1px 5px 7px 0px rgb(0 0 0 / 74%);
}
.mblogo2{
	width: 100px;
    border-radius: 15px;
    box-shadow: 1px 5px 7px 0px rgb(0 0 0 / 74%);
	width: 15%;
    height: -webkit-fill-available;
	display:none;
}
.sticky-content.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.fixed {
		position: fixed;
		z-index: 99;
		top: 0;
		background: #fff;
	}

@media (max-width:1200px) {
	.mbinfo1 {font-size: 80%;}
	.mobclick2 {font-size: 85%;}
	.mobclick1 {font-size: 85%;}
}

@media (max-width:968px) {
	.mbinfo1 {margin:0; margin-bottom: 5px; white-space: break-spaces; font-size: 80%;}
	.dwnbtb:nth-child(1) {width: 40%; margin-right: 0;}
	.dwnbtb:nth-child(2) {width: 40%; margin-right: 0;}
	.dwnbtb:nth-child(3) {width: 12%; margin-right: 0;}
	.dwnbtb2 {flex-direction: column;}
	.mbinfo1:not(:first-child)::before {display: none;}
	.mblogo2 {display: block;}
	.mobclick2 {font-size: 80%;}
	.mobclick1 {font-size: 80%;}
	.hidemobtxt {display: none;}
}

.promotion .top-promo {
	display: block;
    font-size: 22px;
    line-height: 48px;
    height: 50px;
    box-sizing: border-box;
    border: 1px dashed #5a227f;
    color: #5a227f;
    text-align: center;
    width: 280px;
    font-weight: 700;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.bonuses .main-wrap {position:relative;}
.tg {position:absolute;z-index:99;right:30px;bottom:12px;}
.tg a {font-weight:700;padding:15px 65px 15px 20px;color:#000;border-radius:8px;background:#fff url(/wp-content/uploads/2025/04/telegram.png) no-repeat 90% center;box-shadow: 0 1px 4px 0 rgba(0,0,0,0.07);background-size:30px;}
@media (max-width:991px) {
.tg {text-align:center;left:calc(50% - 130px);right:auto;bottom:-55px;}

.bonuses {padding: 40px 15px 90px;}

}