@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,800,300);
@import url(https://fonts.googleapis.com/css?family=Muli);
@import url('https://fonts.googleapis.com/css?family=Baloo+Chettan+2:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Satisfy');

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background-color: #fff;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    line-height: 25px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

section {
    padding: 50px 0;
}

.navbar {
    padding: 0 1rem !important;
}

.nav-link {
    font-size: 12px;
    padding: .5rem .7rem !important;
}

.navbar-brand img {
    margin-bottom: 5px;
}

.navbar-dark .navbar-toggler {
    border: none;
}

.navbar-bg, .menubuttom {
    background-color: #c70827;
}

    .navbar-dark .navbar-nav .nav-link, .menubuttom a {
        color: #FFFFFF !important;
        font-weight: bold;
    }

        .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
            color: #00336d !important;
            background-color: #FFFFFF !important;
            font-weight: 700;
        }

.info-section {
    background-color: #f4f4f4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23191d34' fill-opacity='0.1' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    border-bottom: 1px solid #d0d0d0;
}

.footer-section {
    background-color: #c70827;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.08' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    /*background-image: url("../images/footer-bg.png");
	background-position: center;
	background-size: cover;*/
}

#goToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 26px;
    z-index: 99;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #12457f;
    color: white;
    cursor: pointer;
    padding: 9px;
    border-radius: 4px;
    box-shadow: rgb(0 0 0 / 35%) 0px 2px 2px;
    transition: 0.5s all;
}

    #goToTop:hover {
        box-shadow: 1px 1px 9px 1px rgb(0 0 0 / 25%), -2px -1px 9px 1px rgb(0 0 0 / 22%);
        opacity: 0.9;
    }

.ticker div {
    font-weight: bold;
}

.bg-acik {
    background-color: #ffffff;
    color: #482975;
}

    .bg-acik .baslik {
        color: #482975;
    }

.bg-koyu {
    background-color: #fff;
    border-radius: 30px;
    color: #4c4c4c;
}

.baslik {
    font-weight: bold;
    font-size: 2.2rem;
    border-bottom: 1px solid;
    text-align: center;
    padding: 0 0 10px 0;
    margin-bottom: 50px;
    color: #12457f;
}

.altbaslik {
    font-weight: bold;
    color: #482975;
}

.gradyan {
    background-image: -webkit-gradient(linear,left top,right top,from(#ff8a00),to(#da1b60));
    background-image: linear-gradient(to right,#ff8a00,#da1b60);
}

.disbuton {
    width: 100%;
    position: relative;
    background: rgb(34,34,34);
    background: linear-gradient(90deg, rgba(34,34,34,0.5) 0%, rgba(250,250,250,0.5) 50%, rgba(38,38,38,0.5) 100%);
}

.butonlar {
    height: 90px;
    margin-top: -90px;
}

.main-cnt {
    display: grid;
    width: 100%;
}

    .main-cnt .item {
        display: grid;
        grid-template-rows: 1fr min-content;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

        .main-cnt .item:not(.footer) {
            padding-top: 1rem;
        }

.button1 {
    background: #da0d15;
    min-width: 271px;
    color: white;
    border: 3px solid #da0d15;
    border-radius: 50px;
    padding: 0.4rem 2rem;
    font-family: 'Baloo Chettan 2', cursive;
    font-size: 18px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
}

.button2 {
    background: #12457f;
    min-width: 271px;
    color: white;
    border: 3px solid #12457f;
    border-radius: 50px;
    padding: 0.4rem 2rem;
    font-family: 'Baloo Chettan 2', cursive;
    font-size: 18px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
}

.button-jittery1 .button1:hover, .button-jittery2 .button1:hover, .button-jittery3 .button1:hover,
.button-jittery1 .button1:hover, .button-jittery2 .button2:hover, .button-jittery3 .button2:hover {
    animation: jittery 4s infinite;
}

@keyframes jittery {
    5%, 50% {
        transform: scale(1);
    }

    10% {
        transform: scale(0.9);
    }

    15% {
        transform: scale(1.15);
    }

    20% {
        transform: scale(1.15) rotate(-5deg);
    }

    25% {
        transform: scale(1.15) rotate(5deg);
    }

    30% {
        transform: scale(1.15) rotate(-3deg);
    }

    35% {
        transform: scale(1.15) rotate(2deg);
    }

    40% {
        transform: scale(1.15) rotate(0);
    }
}


@media screen and (max-width: 441px) {
    .flip-clock-wrapper {
        width: 70%
    }

    .flip-clock-divider.minutes .flip-clock-label {
        margin-top: 77px;
    }

    .flip-clock-divider.seconds .flip-clock-label {
        margin-top: 77px;
    }

    .minutes {
        margin-left: 16px;
    }
}

@media screen and (max-width: 375px) {
    .flip-clock-wrapper {
        width: 80%
    }
}

.link {
    width: 20%;
}

.uyduimage {
    border-radius: 15%;
    margin-left: 5px;
    float: right;
}

.uydu {
    text-align: left !important;
}


.blink {
    animation: blinker 1.5s linear infinite;
    color: red !important;
    font-weight: bold;
    font-family: sans-serif;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.button1 {
    background: #da0d15;
    min-width: 235px;
    color: white;
    border: 3px solid #da0d15;
    border-radius: 50px;
    padding: 0.4rem 2rem;
    font-family: 'Baloo Chettan 2', cursive;
    font-size: 16px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: bold;
    color: #FFF !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: #e42529 !important;
}

.nav-tabs .nav-link {
    background-color: #00336d;
    color: #ffffff !important;
    font-weight: bold;
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    color: #FFF;
}

.saatbaslik {
    background-color: #badcec;
}

.ara {
    background-color: #114d82 !important;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.uydu {
    background-color: #badcec;
}

.table th, .table td {
    vertical-align: middle;
    border-collapse: separate;
    border-spacing: 3px;
    border: 1px solid transparent;
}

.table, .table th, .table td {
    border: 2px solid #00336d;
}

.kayittablo tr:nth-child(1) {
    background-color: #00579e;
    color: #fff;
}

.konaklamatablo tr:nth-child(1) {
    background-color: #00336d;
    color: #fff;
}

.konaklamatablo tr:nth-child(2) {
    background-color: #00336d;
    color: #fff;
}

h6 {
    font-weight: bold;
    color: #00336d !important;
}

h5 {
    font-weight: bold;
    color: #da0d15 !important;
}

.kayittab tr td {
    padding: 0 10px;
    border: 1px solid #ddd !important;
}


    .kayittab tr td:nth-child(1) {
        font-weight: bold;
    }

.kayittab tr:nth-of-type(even) {
    background-color: #f3f3f3;
    color: #252525
}

.kayittab tr:nth-of-type(odd) {
    background-color: #e6e6e6;
    color: #252525;
}

.kayittab tr:nth-child(1) {
    text-align: center;
    background-color: #00336d;
    color: #fff;
    font-weight: bold;
    width: 26%;
}

.kayittab tr td:nth-child(2), .kayittab tr td:nth-child(3) {
    text-align: center;
    width: 37%;
    vertical-align: middle;
}

.konaklamatab tr td {
    padding: 0 10px;
    border: 1px solid #ddd !important;
}

.konaklamatab tr:nth-child(1), .konaklamatab tr:nth-child(2) {
    text-align: center;
    background-color: #00336d;
    color: #fff;
    font-weight: bold;
    width: 24%;
}

.konaklamatab tr:nth-child(3) {
    text-align: center;
    background-color: #f3f3f3;
    color: #252525;
    font-weight: bold;
    width: 24%;
}

.konaklamatab tr td:nth-child(2), .konaklamatab tr td:nth-child(3), .konaklamatab tr td:nth-child(4), .konaklamatab tr td:nth-child(5) {
    text-align: center;
    width: 19%;
    vertical-align: middle;
}

.hesaptab tr td {
    padding: 0 10px;
    border: 1px solid #ddd !important;
}

    .hesaptab tr td:nth-child(1) {
        text-align: center;
        background-color: #00336d;
        color: #fff;
        font-weight: bold;
        width: 24%;
    }

    .hesaptab tr td:nth-child(2) {
        width: 76%;
        background-color: #ffffff;
        color: #252525;
        font-weight: bold;
        vertical-align: middle;
    }

@media screen and (max-width:480px) {
    .button1 {
        min-width: 100% !important;
        border: 1px solid #da0d15;
        border-radius: 20px;
        padding: 0.5rem 1rem;
        font-size: 11px;
        outline: none;
        cursor: pointer;
        position: relative;
        transition: 0.2s ease-in-out;
    }

    .button2 {
        min-width: 100% !important;
        border: 1px solid #12457f;
        border-radius: 20px;
        padding: 0.5rem 1rem;
        font-size: 11px;
        outline: none;
        cursor: pointer;
        position: relative;
        transition: 0.2s ease-in-out;
    }

    .butonlar {
        height: 73px;
        margin-top: -31px !important;
    }

        .butonlar .col-4 {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
}

.girne {
    border-radius: 10px;
}


.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #265fab;
    border-color: #dee2e6 #dee2e6 #fff;
}

.btn-link {
    font-weight: bold;
    color: #a053d4;
}

    .btn-link:hover {
        font-weight: bold;
        color: #6b2997;
        text-decoration: none;
    }

    .btn-link.focus,
    .btn-link:focus,
    .btn-link.active,
    .btn-link:active {
        font-weight: bold;
        color: #6b2997;
        text-decoration: none;
    }

th {
    text-align: center !important;
}

.oturum {
    background-color: #badcec;
}

    .oturum td {
        vertical-align: middle;
    }

.uydu {
    background-color: #f3900575;
}

.bildiri {
    background-color: #ffba9f6e;
}

.yarisma {
    background-color: #d6eaff;
}

.konferans {
    background-color: #d0fbcf;
}

table tbody {
    width: 100%;
}

.table-responsive {
    display: inline-table !important;
}

    .table-responsive td {
        padding: 5px;
    }

.table-bordered td,
.table-bordered th {
    border: 1px solid #8bb9db;
}

.ara {
    background-color: #f3900582;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 992px) {
    .card .table-responsive {
        font-size: 10px !important;
    }
}

@media only screen and (max-width:425px) {
    iframe {
        display: none;
    }
}

.tablobosluk {
    margin: 0;
}

.tablobaslik {
    margin: 0;
}

.ara {
    background-color: #f3900582;
    text-align: center;
    font-weight: bold;
}

th {
    text-align: center !important;
}

table tbody {
    width: 100%;
}

.table-responsive {
    display: inline-table !important;
}

    .table-responsive td {
        padding: 5px;
    }

.table-bordered td,
.table-bordered th {
    border: 1px solid #8bb9db;
}

.kurs-tarih {
    color: red;
    padding-top: 12px;
    font-size: 16px;
}


/* Genel bilgiler tasarım başlar */

.col-md-2 col-3.d-block.icon {
    width: 10% !important;
}

.col-md-10 col-9.d-block.icon {
    width: 90% !important;
}

.icon {
    background-color: #00336d;
    color: #fff;
    text-align: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    font-size: 1.5rem;
}

.icon-text {
    font-size: 35px;
}

.genel-baslik {
    background-color: #e5e5e5;
    color: #00336d;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 15px;
    border-top-right-radius: 20px;
}

.genel-box {
    background-color: #e5e5e5;
    border-top: 1px solid #ededed;
    padding: 5px 15px;
    border-bottom-right-radius: 20px;
}

/* Genel bilgiler tasarım biter */


/*Program*/

#scientific_program tr:nth-child(1) > th {
    display: none !important;
}

#scientific_program th {
    vertical-align: middle !important;
    width: 15%;
    text-align: center;
}

#scientific_program td {
    width: 85%;
}

.session {
    border-top: 5px solid #fff;
}

tr.session.ARK-1392DDBD-DBFE-4EE0-AAC3-955E9EBCD270 {
    background-color: #c4e4ff;
}

tr.subsession.ARK-1392DDBD-DBFE-4EE0-AAC3-955E9EBCD270 {
    background-color: #e8f3fc;
}

tr.session.ARK-CB188527-A1E6-46CB-A25B-630BFB032FF4,
tr.session.ARK-72df501c-c96f-4857-89e4-94c28f29b4b5,
tr.session.ARK-01f2b3c6-c0df-479d-a04f-b3e7a1587bb9 {
    background-color: #ffc4c4;
}

.subsession th {
    color: transparent !important;
    user-select: none !important;
}

tr.session.ARK-c88a39d2-8990-4a36-8c7f-fc038d342c36 .officers strong {
    display: none;
}

tr.session.ARK-bf173672-3a7b-42b4-b247-d1d24146b0ca {
    background-color: #d7fad8;
}

tr.session.ARK-dbc6627b-6f23-47a3-a7dc-e837f739acdd {
    background-color: #c4d1ff;
}

tr.subsession.ARK-dbc6627b-6f23-47a3-a7dc-e837f739acdd {
    background-color: #e4eaff;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: #0379dd !important;
    border-color: #dee2e6 #dee2e6 #fff;
}

.subsession .officers strong,
tr.session.ARK-90dcfe86-b89f-493b-b4ba-42ccb4c01a92 .officers strong {
    display: none !important;
}

tr.session.ARK-90dcfe86-b89f-493b-b4ba-42ccb4c01a92 {
    background-color: #c4e4ff;
}

tr.session.ARK-56405baf-236f-4cd1-a07a-25d63cb5ed58 {
    background-color: beige;
    position: relative;
}

tr.session.ARK-c88a39d2-8990-4a36-8c7f-fc038d342c36 {
    background-color: antiquewhite;
}

tr.session.ARK-eefa13f7-f3a3-43c2-8333-62e6b09d21e4 {
    background-color: #e8f3fc;
    border-top: none !important;
}

#scientific_program .table td, #scientific_program .table th, #scientific_program .table {
    border: none !important;
}

@media (max-width: 991px) {

    #scientific_program th {
        width: 25%;
    }

    #scientific_program td {
        width: 75%;
    }

    #scientific_program {
        font-size: 14px;
    }

    .icerik {
        padding: 0 !important;
    }

    .uydu {
        position: relative !important;
        margin: 0 !important;
        width: 100px !important;
        transform: translateX(20px);
    }

    #scientific_program .table td, #scientific_program .table th {
        padding: 5px 0 !important;
    }
}

/*Program*/
