.textarea textarea {overflow:auto!important}
/* ANIMATIONS */
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    to {
        -webkit-transform: rotate(-330deg);
        -moz-transform: rotate(-330deg);
        -ms-transform: rotate(-330deg);
        -o-transform: rotate(-330deg);
        transform: rotate(-330deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(-30deg);
        -moz-transform: rotate(-30deg);
        -ms-transform: rotate(-30deg);
        -o-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    to {
        -webkit-transform: rotate(-330deg);
        -moz-transform: rotate(-330deg);
        -ms-transform: rotate(-330deg);
        -o-transform: rotate(-330deg);
        transform: rotate(-330deg);
    }
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: rotate(-25deg);
        -moz-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
        -o-transform: rotate(-25deg);
        transform: rotate(-25deg);
    }

    33% {
        -webkit-transform: rotate(0deg) translateX(20%);
        -moz-transform: rotate(0deg) translateX(20%);
        -ms-transform: rotate(0deg) translateX(20%);
        -o-transform: rotate(0deg) translateX(20%);
        transform: rotate(0deg) translateX(20%);
    }

    66% {
        -webkit-transform: rotate(25deg) translateX(20%);
        -moz-transform: rotate(25deg) translateX(20%);
        -ms-transform: rotate(25deg) translateX(20%);
        -o-transform: rotate(25deg) translateX(20%);
        transform: rotate(25deg) translateX(20%);
    }

    100% {
        -webkit-transform: rotate(-25deg) translateX(0);
        -moz-transform: rotate(-25deg) translateX(0);
        -ms-transform: rotate(-25deg) translateX(0);
        -o-transform: rotate(-25deg) translateX(0);
        transform: rotate(-25deg) translateX(0);
    }
}

@keyframes move {
    0% {
        -webkit-transform: rotate(-25deg);
        -moz-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
        -o-transform: rotate(-25deg);
        transform: rotate(-25deg);
    }

    33% {
        -webkit-transform: rotate(0deg) translateX(20%);
        -moz-transform: rotate(0deg) translateX(20%);
        -ms-transform: rotate(0deg) translateX(20%);
        -o-transform: rotate(0deg) translateX(20%);
        transform: rotate(0deg) translateX(20%);
    }

    66% {
        -webkit-transform: rotate(25deg) translateX(20%);
        -moz-transform: rotate(25deg) translateX(20%);
        -ms-transform: rotate(25deg) translateX(20%);
        -o-transform: rotate(25deg) translateX(20%);
        transform: rotate(25deg) translateX(20%);
    }

    100% {
        -webkit-transform: rotate(-25deg) translateX(0);
        -moz-transform: rotate(-25deg) translateX(0);
        -ms-transform: rotate(-25deg) translateX(0);
        -o-transform: rotate(-25deg) translateX(0);
        transform: rotate(-25deg) translateX(0);
    }
}

@-webkit-keyframes borderAnim {
    0% {
        border: 1px solid transparent;
    }

    50% {
        border: 6px solid #dfd06d;
    }

    100% {
        border: 1px solid transparent;
    }
}

@keyframes borderAnim {
    0% {
        border: 1px solid transparent;
    }

    50% {
        border: 6px solid #dfd06d;
    }

    100% {
        border: 1px solid transparent;
    }
}

@-webkit-keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(179, 156, 50, 0.75), -1em 0.5em rgba(179, 156, 50, 0.75);
    }
    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(179, 156, 50, 0.75), 0 0.5em rgba(179, 156, 50, 0.75);
    }
    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(179, 156, 50, 0.75), 1em 0.5em rgba(179, 156, 50, 0.75);
    }
    100% {
        box-shadow: 1em -0.5em rgba(179, 156, 50, 0.75), -1em 0.5em rgba(179, 156, 50, 0.75);
    }
}

@keyframes before {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(179, 156, 50, 0.75), -1em 0.5em rgba(179, 156, 50, 0.75);
    }
    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(179, 156, 50, 0.75), 0 0.5em rgba(179, 156, 50, 0.75);
    }
    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(179, 156, 50, 0.75), 1em 0.5em rgba(179, 156, 50, 0.75);
    }
    100% {
        box-shadow: 1em -0.5em rgba(179, 156, 50, 0.75), -1em 0.5em rgba(179, 156, 50, 0.75);
    }
}

@-webkit-keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(179, 156, 50, 0.75), -0.5em -1em rgba(179, 156, 50, 0.75);
    }
    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(179, 156, 50, 0.75), -0.5em 0 rgba(179, 156, 50, 0.75);
    }
    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(179, 156, 50, 0.75), -0.5em 1em rgba(179, 156, 50, 0.75);
    }
    100% {
        box-shadow: 0.5em 1em rgba(179, 156, 50, 0.75), -0.5em -1em rgba(179, 156, 50, 0.75);
    }
}

@keyframes after {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(179, 156, 50, 0.75), -0.5em -1em rgba(179, 156, 50, 0.75);
    }
    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(179, 156, 50, 0.75), -0.5em 0 rgba(179, 156, 50, 0.75);
    }
    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(179, 156, 50, 0.75), -0.5em 1em rgba(179, 156, 50, 0.75);
    }
    100% {
        box-shadow: 0.5em 1em rgba(179, 156, 50, 0.75), -0.5em -1em rgba(179, 156, 50, 0.75);
    }
}

@media (min-width: 1960px) {
    .home-container > .section:nth-child(1):before {
        bottom: 99%;
    }

    .home-container > .section:nth-child(2):before,
    .home-container > .section:nth-child(3):before {
        bottom: 100%;
    }

    .home-container > .section:nth-child(4) {
        padding-top: 270px;
    }

    .hero figcaption:before {
        top: calc(100% - 135px);
    }
}

@media (max-width: 1500px) {
    .home-intro ~ .home-intro figure {
        -webkit-transform: translateX(10%);
        -moz-transform: translateX(10%);
        -ms-transform: translateX(10%);
        -o-transform: translateX(10%);
        transform: translateX(10%);
    }
}

@media (max-width: 1380px) {
    .sidebar-menu > ul > li, .sidebar-menu > ul > li > a:link, .sidebar-menu > ul > li > a:visited {
        font-size: 21px;
    }

    .sidebar-menu .submenu >  li > a:link, .sidebar-menu .submenu >  li > a:visited {
        font-size: 17px;
    }

    .home-container > .section:nth-child(3) {
        padding-top: 50px;
    }

    .home-intro figure {
        max-width: 90%;
    }

    .home-intro ~ .home-intro figure {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        margin-left: auto;
    }
}

@media (max-width: 1300px) {
    .fimg {
        padding-right: 35px;
    }
    .main-menu {
        padding: 0;
    }
    
    .main-menu > ul >li,
    .logged-menu {
        padding-left: 0;
        padding-right: 10px;
    }

    .main-header .btn {
        margin-right: 10px;
        padding: 15px;
    }

    .usp_item .links a {
        display: block;
        margin: 3px 0;
    }

    .usp_item .links a:first-child {
        margin-right: 0;
    }

    .usp_item .links a:first-child:after {
        display: none;
    }

    .home-hero.hero figure {
        height: 750px;
    }
    
    .hero h1 {
        font-size: 44px;
    }

    .lined-heading,
    .content-section article h3 {
        font-size: 28px
    }

    .step-descr .title, .step-descr p.title {
        font-size: 32px;
    }

    .steps-container {
        margin-left: 10px;
        margin-right: 10px;
    }

    .steps-row {
        padding-top: 55px;
        padding-bottom: 25px;
    }

    .voting-section .title {
        font-size: 30px;
    }

    .voting-section .radiobox label .caps {
        font-size: 26px;
    }

    .voting-section .radiobox label .gold {
        font-size: 18px;
    }

    .ttip.ttip-right .ttip-content {
        left: auto;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        right: 0;
    }

    .ttip.ttip-right .ttip-content:after {
        left: auto;
        right: 5px;
    }

    .collapse-trigger {
        font-size: 25px;
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .collapse-trigger .num {
        font-size: 26px;
    }

    .form .input.error:after, .form .input.success:after {
        font-size: 32px;
    }

    .carousel-section .slider-item {
        margin-left: 50px;
        margin-right: 50px;
    }

    .carousel-section .owl-theme .owl-nav .owl-prev {
        left: 0;
    }

    .carousel-section .owl-theme .owl-nav .owl-next {
        right: 0;
    }      
}

@media (max-width: 1200px) {
    .home-intro figure .graphic {
        top: 26%;
        left: 30%;
        -webkit-transform: rotate(-30deg) scale(.8);
        -moz-transform: rotate(-30deg) scale(.8);
        -ms-transform: rotate(-30deg) scale(.8);
        -o-transform: rotate(-30deg) scale(.8);
        transform: rotate(-30deg) scale(.8);
    }

    .home-intro ~ .home-intro figure .graphic {
        left: -40px;
        top: 11%;
        -webkit-transform: rotate(-25deg) scale(.8);
        -moz-transform: rotate(-25deg) scale(.8);
        -ms-transform: rotate(-25deg) scale(.8);
        -o-transform: rotate(-25deg) scale(.8);
        transform: rotate(-25deg) scale(.8);
    }
}

@media (max-width: 1024px) {
    .contact-form .cnt {
        padding-left: 5%;
        padding-right: 5%;
    }

    .usp_item .text {
        font-size: 18px;
    }

    .main-header .top-right .btn {
        display: none;
    }
    
    .main-header .top-right .dd-list .btn {
        display: inline-block;
    }    

    .step-descr .title, .step-descr p.title {
        font-size: 28px;
    }

    .home-hero .owl-theme .owl-nav [class*=owl-] {
        font-size: 40px;
    }

    .content-section article h3 {
        padding-left: 60px;
    }

    .content-section article h3:before {
        width: 40px;
    }

    .home-container > .section:nth-child(1) {
        padding-bottom: 40px;
    }

    .home-container > .section:nth-child(2) {
        padding-bottom: 120px;
    }

    .home-container > .section:nth-child(3) {
        padding-top: 0;
    }

    .home-container > .section:nth-child(4) {
        padding-top: 120px;
    }

    .home-container > .section:nth-child(5) {
        padding-top: 40px;
    }

    .home-container > .section:nth-child(6) {
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .main-menu > ul > li:last-child .submenu,
    .main-menu > ul > li:nth-last-child(2) .submenu {
        left: auto;
        right: 0;
    }

    .main-menu > ul > li:last-child .submenu.level3,
    .main-menu > ul > li:nth-last-child(2) .submenu.level3 {
        left: auto;
        right: 100%;
    }

    .fixed .top-right .drop-down .dd-content {
        height: 45px;
        line-height: 40px;
    }
}

@media (max-width: 1023px) {
    
    .home-hero.hero figcaption .tbl {
         padding-top: 0px; 
    }
    
    #news-box .row{
        display: block;
    }
    
    .content-section.withsidebar .wrapper > .row{
        display: block;
    }
    
    .content-section.withsidebar .row .col.col4{
        margin: 0;
    }
    
    .hero h1 {
        font-size: 42px;
    }

    .main-footer .top {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    nav.fNav ul li {
        padding-left: 5px;
        padding-right: 5px;
    }

    nav.fNav ul li:after {
        right: -2px;
    }

    .hero figure {
        height: 300px;
    }

    .contact-form h2 {
        font-size: 28px;
    }

    .usp_item .text {
        font-size: 17px;
    }

    .home-hero.hero figure {
        height: 650px;
    }

    .home-intro figure {
        max-width: 400px;
        margin-bottom: 40px;
        padding-bottom: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .lined-heading,
    .content-section article h3 {
        margin-bottom: 25px;
        font-size: 26px;
    }

    .home-steps {
        padding-left: 10px;
        padding-right: 10px;
    }

    .wrapper-s {
        padding-left: 20px;
        padding-right: 20px;
    }

    .voting-section .title {
        font-size: 28px;
    }

    .radiobox .icon:before {
        width: 32px;
        height: 32px;
    }

    .radiobox .icon:after {
        top: 8px;
        left: 8px;
        width: 16px;
        height: 16px;
    }

    .radiobox label {
        width: calc(100% - 50px);
    }

    .voting-section .radiobox label .caps {
        font-size: 22px;
    }

    .voting-section .radiobox label .gold {
        font-size: 17px;
    }

    .modal {
        max-width: 90vw;
        margin-left: -45vw;
    }

    .main-footer .icon-address {
        font-size: 26px;
    }

    .main-footer .icon-phone {
        font-size: 23px;
    }

    .main-footer .icon-mail {
        font-size: 17px;
    }

    .sidebar-menu {
        margin-bottom: 30px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .wrapper-s {
        width: 96%;
    }

    .home-steps .intro-txt {
        width: calc(100% - 110px);
    }

    .home-steps .intro-txt .txt-center {
        text-align: right;
    }

    .carousel-section .slider-item {
        margin-left: 0;
        margin-right: 0;
    }

    .news-img {
        height: 273px;
    }
    #news-box .date,
    #news-box .monthyear {
        padding-left: 0px;
        display: block;
        width: 100%;
        text-align: center;
    }

    .row .col.imgcol {
        padding: 20px 0 20px 20px;
    }

    .flexing,
    .flexed {
        display: block;
    }

    .home-intro ~ .home-intro .col5 figure {
        margin-left: auto;
    }

    .news-section.half #dates-box p {
        font-size: 18px;
    }

    .news-section.half #dates-box .date,
    .home-container #news-box .date {
        font-size: 40px;
    }

    .news-section.half #dates-box .monthyear,
    .home-container #news-box .monthyear {
        font-size: 14px;
    }

    .news-section.half .flex-container .col1 {
        width: 25%;
    }

    .news-section.half .flex-container .col11 {
        width: 75%;
    }

    .home-container #news-box article h3 {
        font-size: 21px;
    }

    .entry .entry-cell {
        font-size: 15px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .entry .entry-cell,
    .entry-prob .title {
        padding-left: 5px;
    }

    .entry-cell.actions .btn {
        margin-bottom: 3px;
    }

    .entry .title-bar .title.entry-title, .entry .entry-cell:nth-child(2) {
        padding-left: 37px;
    }

    .entry-prob .file-upload, .entry-prob .file-upload:link, .entry-prob .file-upload:visited,
    .fileupload {
        margin-left: 37px;
    }

    .entry-prob .file-upload, .entry-prob .file-upload:link, .entry-prob .file-upload:visited {
        padding-left: 15px;
    }

    .fileupload table {
        width: calc(100% + 36px);
        margin-left: -18px;
    }

    .cost-table tr.total td:nth-child(2) {
        font-size: 24px;
    }

    .cost-table tr:not(.total) td:nth-child(3) {
        font-size: 23px;
    }

    .cost-table tr:not(.total) td:nth-child(2) {
        font-size: 25px;
    }

    .cost-table .heading {
        font-size: 20px;
    }

    .cost-table tr.total td {
        padding-top: 18px;
        padding-bottom: 13px;
    }

    .cost-table td {
        padding-left: 30px;
    }

    .cost-table tr:not(:last-child) td:first-child:after {
        width: calc(100% - 30px);
        left: 30px;
    }

    .entry-total .total-row.sum .total-sum {
        font-size: 21px;
    }

    .entry-total .total-row div:last-child {
        font-size: 17px;
    }

    .fileupload .btn-row .checkbox {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .fileupload .btn-row .progress {
        margin-left: 40px;
        margin-top: 15px;
    }

    .fileupload-buttonbar .btn {
        min-width: 100px;
    }

    /* eleni : start */
    .news-img {
        height: 273px;
    }
    .date,
    .monthyear {
        padding-left: 0px;
        display: block;
        width: 100%;
        text-align: center;
    }
    #news-box article {
        padding-left: 20px;
        padding-top: 20px;
    }
    .row .col.imgcol {
        padding: 20px 0 20px 20px;
    }

    
    .flexing,
    .flexed {
        display: block;
    }
    #dates-box p {
        font-size: 20px;
    }
    #dates-box .monthyear {
        padding-bottom: 15px;
    }
    .inner-section article h3 {
        font-size: 20px;
        margin: 30px 0;
    }
    .inner-img {
        width: 100%;
        height: 275px;
        margin-top: 18px;
        margin-left: 0;
    }

    .desktop .animated .inner-img {
        width: 100%;
    }

    .newscaption ~ .inner-img{
        float: none;
    }

    .image-section .newscaption {
        padding-top: 18px;
        padding-right: 0;
        width: 100%;
        font-size: 20px;
    }
    .inner-content {
        padding: 0 0 60px 0;
    }
    .inner-section p {
        margin-bottom: 20px;
    }

    .sponsors-desc {
        width: 100%;
    }
    .sponsors-grid .card-box {
        width: calc(50% - 30px);
        margin-right: 0;
    }
    .docname {
        width: 75%;
    }
    .docrow {
        padding: 20px 0;
        text-align: center;
        display: block;
    }
    .docrow:first-child {
        padding-top: 20px;
    }
    .docicon {
        padding-left: 15px;
        font-size: 30px;
    }
    .docicon,
    .docname,
    .docsize {
        padding-left: 0;
    }
    .downbtn .btn {
        font-size: 12px;
        color: #b7a23e;
        padding: 10px;
        top: inherit;
        right: auto;
        position: relative;
    }
    .docrow div {
        display: block;
        width: 100%;
        padding-bottom: 15px;
    }
    .sponsors-grid h3:before {
        left: 0;
        width: 40px;
    }
    .sponsors-grid h3 {
        font-size: 25px;
    }

    /* eleni : end */

    .mobile-menu {
        display: inline-block;
        width: 52px;
        height: 52px;
        position: absolute;
        left: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .mobile-menu > a {
        display: inline-block;
        position: absolute;
        width: 36px;
        height: 36px;
        top: 8px;
        left: 8px;
    }

    .mobile-menu .burger {
        top: 15px;
    }

    .mobile-menu a:before,
    .mobile-menu a:after {
        content: '';
    }

    .mobile-menu .burger,
    .mobile-menu a:before,
    .mobile-menu a:after {
        width: 100%;
        height: 5px;
        background: #484848;
        display: inline-block;
        position: absolute;
        left: 0;
    }

    .mobile-menu a:before {
        top: 0;
    }

    .mobile-menu a:after {
        bottom: 0;
    }

    .desktop .mobile-menu a:hover .burger,
    .desktop .mobile-menu a:hover:before,
    .desktop .mobile-menu a:hover:after {
        background: #dfd06d;
        transition: all .4s ease-out;
    }

    .menu-open .mobile-menu .burger {
        opacity: 0;
    }

    .menu-open .mobile-menu a:before {
        top: 14px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        transition: transform .4s ease-out;
    }

    .menu-open .mobile-menu a:after {
        bottom: 17px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: transform .4s ease-out;
    }

    .main-header .main-menu {
        display: none;
    }

    .main-header .logo {
        max-width: 135px;
        margin-left: 50px;
        padding-top: 3px;
    }

    .main-header .header-content {
        width: calc(100% - 210px);
    }

    .main-container {
        margin-top: 80px;
    }

    .menu-open .main-container {
        margin-top: 0;
    }

    .main-header .drop-down .dd-content {
        height: 80px;
        line-height: 80px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .drop-down .txt {
        font-size: 15px;
    }

    .dd-list li, .dd-list li a:link, .dd-list li a:visited {
        font-size: 16px;
    }

    .main-menu.mm-menu {
        z-index: 9;
    }

    .mobile-nav {
        transition: all .3s ease-out;
    }

    .menu-open .outer {
        -webkit-transform: translateX(260px);
        -moz-transform: translateX(260px);
        -ms-transform: translateX(260px);
        -o-transform: translateX(260px);
        transform: translateX(260px);
        position: fixed;
        top: 0;
        left: 0;
    }

    .mobile-nav .main-menu {
        padding: 0;
    }

    .mobile-nav .main-menu .submenu li {
        padding: 0;
        position: relative;
    }

    .mobile-nav .main-menu > ul > li {
        display: block;
        padding: 0;
        border-bottom: 1px solid #cccccc;
    }

    .mobile-nav .main-menu > ul > li:not(.has-submenu) > a {
        padding-left: 18px;
    }

    .main-menu ul li a {
        display: inline-block;
        width: 100%;
        padding: 13px;
    }

    .main-menu .submenu li a {
        padding-bottom: 9px;
        padding-top: 9px;
    }

    .main-menu .submenu li .submenu-icon {
        height: 40px;
        line-height: 40px;
    }

    .main-menu ul li.has-submenu a {
        width: calc(100% - 50px);
    }

    .main-menu > ul >li.has-submenu:after {
        display: none;
    }

    .mobile-nav .main-menu ul li a:hover:before,
    .mobile-nav .main-menu > ul > li.active > a:before {
        display: none;
    }

    .mobile-nav a:focus {
        outline: 0;
    }

    .mobile-nav .main-menu .submenu {
        min-width: inherit;
        width: 100%;
        position: relative;
        top: auto;
        display: none;
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 20px;
    }

    .mobile-nav li.has-submenu:after {
        transition: all .3s ease-out;
    }
    
    .mobile-nav li.has-submenu.active:after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .mobile-nav .main-menu .submenu .has-submenu i {
        position: absolute;
        top: 15px;
        right: -3px;
        font-size: 15px;
        line-height: 1;
    }

    .mobile-nav .main-menu .submenu.level3 {
        top: auto;
        left: auto;
        height: auto;
        margin-left: 0;
    }

    .mobile-nav .active > a:link,
    .mobile-nav .active > a:visited {
        color: #b39c32;
    }

    .menu-open .outer:before {
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(223, 208, 109, .5);
        position: absolute;
        top: 80px;
        right: 0;
        z-index: 9999;
    }

    .main-header,
    .fixed .main-header {
        height: 80px;
    }

    .mobile-nav .drop-down {
        display: none;
    }

    .main-menu .submenu.level3 li a {
        font-size: 16px;
    }

    .mobile-nav .submenu-icon {
        font-size: 9px;
        color: #6b6b6b;
        width: 50px;
        height: 46px;
        display: inline-block;
        text-align: center;
        line-height: 52px;
        position: absolute;
        right: 0;
        top: 0;
        transition: all .3s ease-out;
    }

    .mobile-nav .active > .submenu-icon {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    
    .voting-section .row .col.col9,
    .voting-section .row .col.col3,
    .radio-tabs,.votingtxt{
        display: block;
        width: 100%;
    }
    
    .voting-section .form-row.cols-3 .radiobox {
        margin-right: 0;
        width: 100%;
        margin-top: 5px;
        margin-bottom: 0;
    }
    
    .voting-section .radiobox label{
        width: 100%;
        padding-left: 20px;
    }
    
     .voting-section .row .col.offset-col1,
     .voting-section .row .col.col10{
        margin-left: 0;
         width: 100%;
    }

    .voting-section .title{
        margin: 20px 0;
    }
    
    section.hero ~ section.withsidebar {
        margin-top: -30px;
    }
    
    .sidebar-col{
        padding-top: 60px;  
    }
    
    .content-section.withsidebar .content-col {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .desktop .mobile-nav .dd-list li:hover {
        background: none;
    }
    
    /*update 17.3.2017*/
    .carousel-section .owl-theme .owl-nav .owl-prev,
    .carousel-section .owl-theme .owl-nav .owl-next {
        top: calc(100% - 15px);
    }
    
    .carousel-section .owl-dots{
        padding: 0 50px;
    }
    
    .owl-theme .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
    }
    
    /*update 17.3.2017 --END*/

    .acc-header .lined-heading{
        font-size: 23px;
        padding-left: 99px;
        padding-right: 48px;
    }

    .acc-header .lined-heading:after{
        font-size: 14px;
        margin-top: -7px;
        right: 15px;
    }

    table.type1 td{
        font-size: 20px;
    }

    table.type1 td.value{
        font-size: 17px;
    }

    .modalCaption,
    .mediaModal .slider {
        padding: 0 30px;
    }

    .mediaModal .owl-theme .owl-nav [class*=owl-] {
        font-size: 26px;
        margin-top: -20px;
    }

    .mediaModal .owl-nav .owl-next {
        right: -16px;
    }

    .mediaModal .owl-nav .owl-prev {
        left: -16px;
    }
}

@media (max-width: 767px) {
    
    .home-hero.hero .btn-row {
        margin-top: 15px;
    }
    
    .radiobox label {
        padding-top: 0px;
        padding-left: 30px;
    }
    
    #Payment-form .radiobox .icon {
        top: 8px;
    }
    
    .main-footer .rcf {
        display: block;
        width: 100%;
        margin-top: 15px;
    }

    .fimg {
        max-width: 80px;
        padding-right: 0;
        padding-top: 0;
        float: none;
    }

    .main-footer .top {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .main-footer .rcf .col:last-child {
        display: block;
    }

    .main-footer .btm .col {
        width: 100%;
        text-align: center;
        margin: 3px 0;
    }

    .copyright,
    a.atcom {
        float: none;
    }

    .main-footer .btm {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .main-header .btn {
        padding: 10px;
    }

    .hero figure {
        height: 240px;
    }

    .home-hero.hero h1 {
        font-size: 28px;
    }
    
    .hero h1 {
        font-size: 36px;
    }

    .hero h1 br {
        display: none;
    }

    .usps {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .usp_item {
        width: 50%;
        margin-bottom: 20px;
        margin-top: 20px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .usp_item figure {
        min-height: 85px;
    }

    .contact-form h2,
    .lined-heading,
    .content-section article h3 {
        font-size: 24px;
        padding-left: 60px;
    }

    .contact-form h2:before,
    .lined-heading:before,
    .desktop .animated .lined-heading:before, .desktop .lined-heading.animated:before, .desktop .content-section.animated article h3:before {
        width: 40px;
    }

    .contact-form {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .home-hero.hero figure {
        height: 600px;
    }

    .hero .btn,.hero .btn:link,.hero .btn:visited {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .home-intro .intro-desc {
        padding-left: 60px;
    }

    .home-steps .intro-txt {
        margin-left: 0;
    }

    .home-steps .intro-txt {
        width: 100%;
    }

    .step-img {
        padding-left: 25px;
        padding-right: 25px;
    }

    .home-hero .owl-theme .owl-nav [class*=owl-] {
        font-size: 34px;
    }

    .form-row.cols-3 .field, .form-row.cols-3 .radiobox, .form-row.cols-3 .checkbox,.form-row.cols-2 .radiobox {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .form-row.cols-2 .radiobox .icon:after{
        width: 9px;
        height: 9px;  
    }
    
    .form-row.cols-2 .radiobox .icon:before {
        width: 25px;
        height: 25px;
    }

    .voting-section .title {
        font-size: 25px;
    }

    .voting-section .radiobox label .caps {
        font-size: 20px;
    }

    .voting-section .radiobox label .gold {
        margin-top: 2px;
    }

    .border-top-row {
        padding-top: 40px;
        margin-top: 30px;
    }

    .voting-section {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .after-hero-text {
        padding-bottom: 25px;
    }

    .modalwrp .msg-box .modal-title, .modalwrp .msg-box p.modal-title {
        font-size: 25px;
    }

    .collapse-trigger {
        font-size: 22px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .collapse-trigger .num {
        margin-right: 10px;
        font-size: 23px;
    }

    .carousel-section {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .news-section.half .flex-container .flexing {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .news-section.half #dates-box.flex-container .flexing:last-child, .news-section.half #dates-box.flex-container .flexing:nth-last-child(2) {
        border-bottom: 1px solid rgba(193, 193, 193, 0.5);
    }

    .news-section.half #dates-box .date,
    .news-section.half #dates-box .monthyear {
        display: block;
    }

    .news-section.half .flex-container .col1 {
        width: 20%;
    }

    .news-section.half .flex-container .col11 {
        width: 80%;
    }

    .hero figcaption:before {
        top: calc(100% - 80px);
    }

    .entry .title-bar .title,
    .entry-row .entry-cell {
        padding-left: 0;
    }

    .entry-row .entry-cell, .entry-row .entry-cell.actions, .entry-row .entry-cell.price, .entry-row .entry-cell.team {
        display: block;
        width: 100%;
        text-align: right;
    }

    .entry-row .entry-cell .mob-title {
        display: inline-block;
        font-size: 14px;
        float: left;
        margin-right: 10px;
    }

    .entry .title-bar {
        display: none;
    }

    .entry .title-bar .title.entry-title, .entry .entry-cell:nth-child(2),
    .entry .title-bar .title.entry-time, .entry .entry-cell:nth-child(4) {
        width: 100%;
        padding-left: 0;
    }

    .entry-row .checkbox {
        top: 0;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .entry-row {
        padding-top: 40px;
    }

    .entry-prob .file-upload, .entry-prob .file-upload:link, .entry-prob .file-upload:visited, .fileupload {
        margin-left: 0;
    }

    .entry-container {
        margin-bottom: 25px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 13px;
    }

    .entry-total {
        margin-top: -27px;
    }

    .table-fileupload td:first-child {
        padding-left: 10px;
    }

    .table-fileupload td:last-child {
        padding-right: 10px;
    }

    .main-header .logo {
        max-width: 112px;
    }

    .mobile-menu > a {
        width: 30px;
        height: 30px;
    }

    .mobile-menu .burger {
        top: 12px;
    }

    .main-header, .fixed .main-header {
        height: 60px;
    }

    .main-container {
        margin-top: 60px;
    }

    .logo {
        max-width: 80px;
        top: 1px;
    }

    .main-header .logo {
        max-width: 105px;
    }

    .menu-open .outer:before {
        top: 60px;
    }

    .menu-open .mobile-menu a:after {
        bottom: 13px;
    }

    .menu-open .mobile-menu a:before {
        top: 12px;
    }

    .top-right .mob-hidden {
        display: none;
    }

    .mobile-nav .drop-down {
        margin-top: 0px;
        width: 100%;
        display: block;
    }

    .mobile-nav .drop-down .dd-content {
        height: 60px;
        line-height: 60px;
        text-align: left;
        padding-left: 18px;
        padding-right: 13px;
        border-top: 0;
    }

    .mobile-nav .dd-list {
        width: 100%;
    }

    .mobile-nav .dd-list li {
        padding: 2px 5px;
        text-align: left;
    }

    .main-header .drop-down .dd-content {
        height: 60px;
        line-height: 60px;
    }

    .logged-user .name {
        display: none;
    }

    .top-right .dd-list {
        min-width: 200px;
    }

    .acc-content{
        padding-bottom: 30px;
    }
    
    .mediaModal .owl-theme .owl-nav {
        display: none;
    }

    .modalCaption,
    .mediaModal .slider {
        padding: 0;
    }

    .modalCaption h3{
        font-size: 28px;
        margin-bottom: 5px;
    }

    .modalCaption h4{
        font-size: 18px;
    }

    .modalCaption p{
        line-height: 1.4;
    }
}

@media (max-width: 639px) {
 
    .form.clmn2 .field {
        width: 100%;
    }

    .main-footer .top {
        padding: 15px 10px;
    }

    .main-footer .rcf .col {
        padding-right: 10px;
        width: calc(50% - 10px);
    }

    .main-footer .rcf .col:last-child {
        width: 100%;
        margin-top: 10px;
    }

    .main-footer h3 {
        margin-bottom: 5px;
    }

    .main-footer .rcf ul:not(.social) li, .main-footer .rcf ul:not(.social) li a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .logged-menu .name {
        display: none;
    }

    .step-img,
    .step-descr {
        width: 100%;
        text-align: center;
    }

    .step-img {
        padding-bottom: 25px;
        padding-left: 0;
        padding-right: 0;
    }

    .step-descr .title, .step-descr p.title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .step-descr {
        padding-right: 0;
    }

    p {
        line-height: 1.45;
    }

    .home-intro figure {
        margin-top: -100px;
    }

    .mobile-menu {
        left: 0;
    }

    .hero .slider .tbl-cell {
        padding-left: 50px;
        padding-right: 50px;
    }

    .home-hero .owl-theme .owl-nav [class*=owl-] {
        font-size: 26px;
    }

    .sidebar-menu > ul > li, .sidebar-menu > ul > li > a:link, .sidebar-menu > ul > li > a:visited {
        font-size: 18px;
    }

    .sidebar-menu > ul > li > a {
        padding-top: 12px;
        padding-bottom: 13px;
    }

    .sidebar-menu > ul > li.has-submenu > .arrow {
        height: 43px;
        line-height: 43px;
    }

    .step-indicator {
        position: relative;
        top: auto;
    }

    .steps-container {
        margin-left: 0;
        margin-right: 0;
    }

    .owl-theme.owl-pagination .owl-dots .owl-dot span {
        margin-left: 4px;
        margin-right: 4px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 17px;
    }

    #news-box article h3 {
        font-size: 20px;
    }
    #dates-box p {
        font-size: 17px;
    }

    .home-container > .section:nth-child(1) {
        padding-bottom: 0;
    }

    .home-container > .section:nth-child(2) {
        padding-bottom: 60px;
    }

    .home-container > .section:nth-child(3):before {
        bottom: 93%;
    }

    .home-container > .section:nth-child(5) {
        padding-top: 0;
        padding-bottom: 30px;
    }

    .home-container #news-box .date {
        padding-top: 0;
    }

    .home-container > .section:nth-child(6) {
        padding-top: 70px;
    }

    .home-container > .section:nth-child(4) {
        padding-bottom: 100px;
    }

    #news-box .row,
    #dates-box .row {
        padding-bottom: 14px;
        margin-bottom: 14px;
        margin-top: 0;
    }

    .home-steps .intro-txt .txt-center {
        text-align: center;
    }

    .desktop .steps-container.owl-carousel .owl-nav .owl-next.disabled:hover,
    .steps-container.owl-carousel .owl-nav .owl-next {
        -webkit-transform: translateX(120px);
        -moz-transform: translateX(120px);
        -ms-transform: translateX(120px);
        -o-transform: translateX(120px);
        transform: translateX(120px);
    }

    .desktop .steps-container.owl-carousel .owl-nav .owl-prev.disabled:hover,
    .steps-container.owl-carousel .owl-nav .owl-prev {
        -webkit-transform: translateX(-170px);
        -moz-transform: translateX(-170px);
        -ms-transform: translateX(-170px);
        -o-transform: translateX(-170px);
        transform: translateX(-170px);
    }
    

    .desktop .steps-container.owl-carousel .owl-nav .owl-prev:hover {
        -webkit-transform: translateX(-175px);
        -moz-transform: translateX(-175px);
        -ms-transform: translateX(-175px);
        -o-transform: translateX(-175px);
        transform: translateX(-175px);
    }


    .desktop .steps-container.owl-carousel .owl-nav .owl-next:hover {
        -webkit-transform: translateX(125px);
        -moz-transform: translateX(125px);
        -ms-transform: translateX(125px);
        -o-transform: translateX(125px);
        transform: translateX(125px);
    }
    
    .steps-container.owl-carousel .owl-nav [class*=owl-] {
        margin-top: -7px;
    }

    .cost-table tr,
    .cost-table tr:not(.total) td:nth-child(1) {
        display: block;
        width: 100%;
    }

    .cost-table tr:not(.total) td:nth-child(1) {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 10px;
    }

    .cost-table tr:not(:last-child) td:first-child:after {
        display: none;
    }

    .cost-table tr:not(.total) td:nth-child(2) {
        padding-left: 15px;
    }

    .cost-table tr:not(.total) td:nth-child(2):after {
        width: calc(100% - 15px);
        left: 15px;
    }

    .cost-table .heading {
        font-size: 18px;
    }

    .cost-table tr:not(.total) td:nth-child(2) {
        font-size: 21px;
        text-align: left;
    }

    .cost-table tr:not(.total) td:nth-child(3) {
        font-size: 20px;
        padding-right: 15px;
    }

    .cost-table tr:not(:last-child) td:last-child:after {
        width: calc(100% - 15px);
    }

    .cost-table td {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cost-table .total td:first-child {
        width: 70%;
        float: left;
        padding-top: 25px;
    }

    .cost-table .total td:nth-child(2) {
        width: 30%;
        float: right;
    }

    .cost-table tr.total {
        float: left;
    }

    .fileupload .template-upload .btn {
        margin-bottom: 6px;
    }

    .table-fileupload td {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    /* eleni : start */
    #news-box article h3 {
        font-size: 20px;
    }
    #dates-box p {
        font-size: 17px;
    }
    .melos figcaption {
        width: 100%;
        margin-top: -30px;
        padding: 50px 0 30px 0;
    }
    .melos {
        margin-left: 0px;
        /*display: block;*/
    }
    .melos-col {
        margin-bottom: 50px;
    }
    .melos figure {
        width: 150px;
        height: 150px;
        float: none;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }
    .date {
        font-size: 40px;
    }
    .news-img {
        height: 220px;
    }
    .inner-section article h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .sponsors-grid figure img {
        padding: 32px 32px 65px 32px;
    }

    .image-section {
        padding-left: 24px;
    }
    .inner-img {
        height: 222px;
    }
    .baclink {
        margin-top: -20px;
    }
    .backsection {
        border-bottom: none;
    }

    .sponsors-desc {
        padding-top: 0;
    }
    .epitropi-section {
        margin-top: -20px;
    }
    .epitropi-section p {
        padding-top: 0;
        margin: 0;
    }
    /* eleni : end */

    .acc-header .lined-heading{
        font-size: 21px;
        padding: 20px 48px 20px 60px;
    }

    table.type1 td {
        font-size: 18px;
    }

    table.type1 td.value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero h1 br {
        display: none;
    }

    .main-footer h3 {
        font-size: 16px;
    }

    .main-footer .rcf ul:not(.social) li, .main-footer .rcf ul:not(.social) li a {
        font-size: 16px;
    }

    .cnt .buttons {
        text-align: inherit;
        -moz-text-align-last: inherit;
        text-align-last: inherit;
    }

    .cnt .buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .contact-form h2, .lined-heading {
        font-size: 20px;
    }

    .home-intro {
        padding-bottom: 80px;
    }

    p {
        font-size: 17px;
    }

    .view-more:link, .view-more:visited,
    .view-more:after {
        font-size: 18px;
    }

    .steps-row {
        padding-bottom: 10px;
    }

    .step-descr .title, .step-descr p.title {
        font-size: 24px;
    }

    .btn.printcost{
        margin-left: 0;
    }
    
    .home-steps .btn-row {
        padding-top: 15px;
        padding-bottom: 45px;
    }

    .main-footer .rcf .col {
        width: 100%;
    }

    .main-footer .rcf .col:first-child {
        margin-bottom: 10px;
    }

    .main-footer li .icon {
        width: 28px;
    }

    .main-footer .icon-address {
        font-size: 22px;
    }

    .main-footer .icon-phone {
        font-size: 17px;
    }

    .main-footer .icon-mail {
        font-size: 15px;
    }

    .main-footer li .txt {
        width: calc(100% - 36px);
    }

    .sidebar-menu > ul > li > a {
        padding-left: 5px;
    }

    .sidebar-menu > ul > li:not(.has-submenu) > a {
        padding-right: 5px;
    }

    .sidebar-menu .submenu > li > a:link, .sidebar-menu .submenu > li > a:visited {
        font-size: 15px;
    }

    .sidebar-menu .submenu >  li.has-submenu .arrow {
        height: 35px;
        line-height: 35px;
    }

    .content-section article h4 {
        font-size: 22px;
    }

    .content-section article h5 {
        font-size: 20px;
    }

    .contact-form h2, .lined-heading, .content-section article h3 {
        font-size: 22px;
    }

    .content-section article em {
        font-size: 18px;
    }

    .content-section article li,
    .content-section article table td,
    .content-section article table td b, .content-section article table td strong {
        font-size: 16px;
    }

    .collapse-trigger {
        font-size: 20px;
        padding-left: 10px;
    }

    .collapse-trigger .num {
        font-size: 21px;
    }

    .collapse-content .form {
        margin-left: 0;
    }

    .simmetoxes-collapse .field {
        max-width: calc(100% - 30px);
    }

    .simmetoxes-collapse .col6-right {
        padding-right: 30px;
    }

    .col6-left, .col6-right {
        width: 100%;
    }

    .simmetoxes-collapse .col6-left,
    .simmetoxes-collapse .col6-right {
        padding-right: 30px;
    }

    .simmetoxes-collapse .col6-left .btn,
    .simmetoxes-collapse .col6-right .btn {
        width: 100%;
        margin-top:10px;
    }

    .field .ttip {
        left: calc(100% + 10px);
    }

    .collapse-content {
        padding-top: 10px;
        padding-bottom: 25px;
    }

    .form .input input,
    .textarea textarea,
    .select-box .selected {
        padding-left: 10px;
        padding-right: 38px;
    }

    .form .input label, .form .input.textarea label, .form .select-box label,
    .select-box li {
        padding-left: 10px;
    }

    .form .input.error:after, .form .input.success:after {
        font-size: 24px;
        right: 5px;
    }

    .form .input.success input,
    .form .input.error input {
        padding-right: 38px;
    }

    .select-box .icon-down {
        right: 5px;
    }

    .select-box .icon-down:before {
        font-size: 12px;
    }

    .home-steps .intro-txt .btn {
        padding-left: 19px;
        padding-right: 19px;
    }

    .news-section.half .flex-container .col1 {
        width: 25%;
    }

    .news-section.half .flex-container .col11 {
        width: 75%;
    }

    .news-section.half #dates-box .date, .home-container #news-box .date {
        font-size: 34px;
    }

    .news-section.half #dates-box .monthyear, .home-container #news-box .monthyear {
        font-size: 13px;
    }

    .news-section.half #dates-box p {
        font-size: 16px;
    }

    .home-container .sm-wrapper > .row {
        margin-top: 0;
        margin-bottom: 0;
    }

    .desktop .steps-container.owl-carousel .owl-nav .owl-next.disabled:hover,
    .steps-container.owl-carousel .owl-nav .owl-next {
        -webkit-transform: translateX(110px);
        -moz-transform: translateX(110px);
        -ms-transform: translateX(110px);
        -o-transform: translateX(110px);
        transform: translateX(110px);
    }

    .desktop .steps-container.owl-carousel .owl-nav .owl-prev.disabled:hover,
    .steps-container.owl-carousel .owl-nav .owl-prev {
        -webkit-transform: translateX(-160px);
        -moz-transform: translateX(-160px);
        -ms-transform: translateX(-160px);
        -o-transform: translateX(-160px);
        transform: translateX(-160px);
    }
    

    .desktop .steps-container.owl-carousel .owl-nav .owl-prev:hover {
        -webkit-transform: translateX(-165px);
        -moz-transform: translateX(-165px);
        -ms-transform: translateX(-165px);
        -o-transform: translateX(-165px);
        transform: translateX(-165px);
    }


    .desktop .steps-container.owl-carousel .owl-nav .owl-next:hover {
        -webkit-transform: translateX(115px);
        -moz-transform: translateX(115px);
        -ms-transform: translateX(115px);
        -o-transform: translateX(115px);
        transform: translateX(115px);
    }

    .cost-table tr.total td:first-child {
        font-size: 15px;
        padding-top: 8px;
    }

    .cost-table tr.total td:first-child,
    .cost-table tr.total td:nth-child(2) {
        width: 50%;
    }

    .cost-table td {
        padding-left: 7px;
        padding-right: 7px;
    }

    .cost-table tr.total td {
        padding-top: 12px;
    }

    .sm-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .member-section .sm-wrapper {
        padding-left: 3px;
        padding-right: 3px;
    }

    .fileupload table,
    .fileupload tbody,
    .fileupload table tr,
    .fileupload .template-upload td,
    .fileupload .template-download td{
        display: block;
        width: 100%;
    }

    .fileupload table {
        margin-left: 0;
    }

    .table-fileupload td:not(:last-child) {
        border-bottom: 0;
    }

    .table-fileupload td:nth-child(2) {
        max-width: 100%;
    }

    .fileupload-buttonbar .btn {
        margin-bottom: 8px;
    }

    .fileupload .btn-row .progress {
        float: right;
    }

    .table-fileupload td:first-child {
        padding-left: 0;
    }

    .entry .entry-cell {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .cost-table {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .entry-total .total-row div {
        width: 45%;
    }

    .entries-count {
        float: right;
        margin-top: 6px;
    }

    .entry-total .total-row {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .entry-total .col:first-child {
        margin-bottom: 6px;
    }

    .home-intro figure {
        padding-bottom: 40px;
        margin-top: -75px;
    }

    .home-intro figure .graphic {
        top: 10%;
        left: 12%;
        -webkit-transform: rotate(-30deg) scale(.6);
        -moz-transform: rotate(-30deg) scale(.6);
        -ms-transform: rotate(-30deg) scale(.6);
        -o-transform: rotate(-30deg) scale(.6);
        transform: rotate(-30deg) scale(.6);
    }

    .home-intro ~ .home-intro figure .graphic {
        top: 0;
        left: -50px;
        -webkit-transform: rotate(-25deg) scale(.6);
        -moz-transform: rotate(-25deg) scale(.6);
        -ms-transform: rotate(-25deg) scale(.6);
        -o-transform: rotate(-25deg) scale(.6);
        transform: rotate(-25deg) scale(.6);
    }

    /* eleni : start */
    .sponsors-grid .card-box {
        width: 100%;
        margin-right: 15px;
    }
    .error-section {
        margin: 30px 0 60px 0;
    }
    .error-section a {
        font-size: 20px;
    }
    .error-section .icon-arrow_slider-left {
        font-size: 16px;
    }
    
    .top-right .dd-list.loginform {
        min-width: 250px;
        width: 95vw;
    }
    
    /* eleni : end */

    .acc-header .lined-heading:after {
        font-size: 10px;
        margin-top: -5px;
        right: 10px;
    }

    .acc-header .lined-heading {
        font-size: 18px;
        padding: 20px 35px 20px 50px;
    }

    .accordions {
        margin-bottom: 80px;
    }

    table.type1 th{
        padding-left: 5px;
        padding-right: 5px;
    }

    table.type1 td {
        font-size: 16px;
        padding: 20px 4px;
    }

    table.type1 td.value {
        font-size: 15px;
    }

    .acc-content {
        padding-bottom: 20px;
    }

    table.type1 td{
        border:none;
        display: inline-block;
    }

    table.type1 tr,
    table.type1 table,
    table.type1 th{
        display: block;
    }

    table.type1 th{
        width: 100%;
    }

    table.type1.cells4 td.title,
    table.type1.cells3 td.title{
        width: 100%;
    }

    table.type1.cells4 td{
        width: calc(50% - 40px);
    }

    table.type1.cells3 td{
        width: calc(100% - 80px);
    }

    table.type1 td.title{
        border-top:1px solid #e0e0e0;
        padding-bottom: 0;
    }

    table.type1 td:not(.title){
        padding-top: 15px;
    }

    .mediaModal .modal{
        padding: 40px 15px;
    }

    .modalCaption h3{
        font-size: 24px;
    }

    .modalCaption h4 {
        font-size: 17px;
        line-height: 1.2;
    }

    .modalCaption p {
        line-height: 1.2;
    }
}

/* Additions */

@media (max-width: 1024px) {
    .extra-spacing-top {
        margin-top: 40px;
    }

    #homepage_popup .modal {
        max-width: 90vw;
        margin-left: -45vw;
    }
}

@media (max-width: 639px) {
    .double_input_seperator {
        top: 74px;
    }
}

