#chatty {
    z-index: 20000000;
    position: fixed;
}
@import 'https://fonts.googleapis.com/css?family=Noto+Sans';
.floating-chat {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001424;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    transform: translateY(70px);
    transition: all 250ms ease-out;
    border-radius: 50%;
    opacity: 0;
    background: #fff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: left;
}
.floating-chat.enter:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    opacity: 1;
}
.floating-chat.enter {
    transform: translateY(0);
    opacity: 0.8;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
    margin: 20px 10px;
}
.floating-chat.expand {
    width: 400px;
    max-height: 700px;
    height: 700px;
    border-radius: 15px;
    cursor: auto;
    opacity: 1;
    transition: opacity,max-height .5s ease 0s;
    box-shadow: 0 5px 40px rgba(0,0,0,.26)!important;
}
.floating-chat :focus {
    outline: 0;
    box-shadow: 0 0 2pt 1pt rgba(149, 149, 149, 0.3);
}
.floating-chat .chat .messages :focus {
    box-shadow: 0;
}
.floating-chat button {
    background: transparent;
    border: 0;
    color: white;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}
.floating-chat .chat {
    display: flex;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    transition: all 250ms ease-out;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.floating-chat .chat.enter {
    opacity: 1;
    border-radius: 0;
    margin: 20px 30px;
    width: auto;
    height: auto;
}
.floating-chat .chat .header {
    flex-shrink: 0;
    padding-bottom: 10px;
    display: flex;
    background: transparent;
    font-size: 110%;
    font-weight: 700;
}
.floating-chat .chat .header .title {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0 5px;
}
.floating-chat .chat .header button {
    flex-shrink: 0;
}
.floating-chat .chat .messages {
    margin: 0;
    padding: 10px 15px 10px 10px;
    list-style: none;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-grow: 1;
    border-radius: 4px;
    background: transparent;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: inset 0 1px 0 rgba(221, 221, 221, 0.30);
}
/* scrollbar chat window */
.floating-chat .chat .messages::-webkit-scrollbar {
    width: 5px;
}
.floating-chat .chat .messages::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(147, 147, 147, 0.1);
}
.floating-chat .chat .messages::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}
.floating-chat .chat .messages li {
    position: relative;
    clear: both;
    display: inline-block;
    padding: 8px 10px;
    margin: 0;
    font: 14px/18px "Noto Sans", sans-serif;
    /*border-radius: 10px;*/
    word-wrap: break-word;
    width: 85%;
    box-shadow: 0 2px 7px rgba(0,0,0,0.16)!important;
}
.floating-chat .chat .messages li:before {
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    content: "";
    background-size: cover;
}
.floating-chat .chat .messages li:after {
    position: absolute;
    top: 0px;
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid #d1d1d1;
}
/*text message right*/
.floating-chat .chat .messages li.other {
    animation: show-chat-odd 0.15s 1 ease-in;
    -moz-animation: show-chat-odd 0.15s 1 ease-in;
    -webkit-animation: show-chat-odd 0.15s 1 ease-in;
    float: right;
    margin-right: 0px;
    margin-top:3px;
    margin-bottom:3px;
    color: #000;
    background-color: #fff;
    border-radius: 10px 0px 10px 10px;
    margin-top: 3px;
    margin-bottom: 3px;
}
/*.floating-chat .chat .messages li.other:before {
  right: -45px;
  background-image: url(https://github.com/Thatkookooguy.png);
}*/

.floating-chat .chat .messages li.other:after {
    border-right: 10px solid transparent;
    right: -10px;
}
.floating-chat .chat .messages li div {
    font-size: 10px;
    color: #777;
}
.floating-chat .chat .messages li div::after{
    content: "\a";
    white-space: pre;
}
.floating-chat .chat .messages li div span:first-child {
    float: left;
}
.floating-chat .chat .messages li div span:last-child {
    float: right;
}

/*text message left*/
.floating-chat .chat .messages li.self {
    animation: show-chat-even 0.15s 1 ease-in;
    -moz-animation: show-chat-even 0.15s 1 ease-in;
    -webkit-animation: show-chat-even 0.15s 1 ease-in;
    float: left;
    margin-left: 0px;
    margin-top:3px;
    margin-bottom:3px;
    color: #000;
    background-color: #fff;
    border-radius: 0px 10px 10px 10px;
}
/*.floating-chat .chat .messages li.self:before {
  left: -45px;
  background-image: url(https://github.com/ortichon.png);
}*/
.floating-chat .chat .messages li.self:after {
    border-left: 10px solid transparent;
    left: -10px;
}
.floating-chat .chat .chatfooter {
    flex-shrink: 0;
    display: flex;
    padding-top: 10px;
    max-height: 90px;
    background: transparent;
}

.name-box, #sendName, #appleBack {
    display: none;
}

.floating-chat .chat .header .name-box {
    border-radius: 3px;
    background: #fff;
    /*height: 14px;*/
    width: 95%;
    margin-right: 5px;
    color: #000;
    overflow-y: auto;
    padding: 2px 5px;
    /*font-size: 10px;*/
}
.floating-chat .chat .header .name-box::-webkit-scrollbar {
    width: 5px;
}
.floating-chat .chat .header .name-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}
.floating-chat .chat .header .name-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}

.floating-chat .chat .chatfooter .text-box {
    border-radius: 5px;
    background: #eee;
    min-height: 100%;
    width: 100%;
    margin-right: 5px;
    color: #000;
    overflow-y: auto;
    padding: 2px 5px;
    font-size: 90%;
}
.floating-chat .chat .chatfooter .text-box::-webkit-scrollbar {
    width: 5px;
}
.floating-chat .chat .chatfooter .text-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.1);
}
.floating-chat .chat .chatfooter .text-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(25, 147, 147, 0.2);
}
.text-box-backtoblack {
    transition: color 1.0s ease;
}
.text-box-tooltip {
    display: none;
    background-color: #c9c9c9;
    color: #250ecd;
    text-align: center;
    border-radius: 6px;
    padding: 5px 20px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 34px;
}
@keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }
    100% {
        margin-left: 0;
    }
}
@-moz-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }
    100% {
        margin-left: 0;
    }
}
@-webkit-keyframes show-chat-even {
    0% {
        margin-left: -480px;
    }
    100% {
        margin-left: 0;
    }
}
@keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }
    100% {
        margin-right: 0;
    }
}
@-moz-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }
    100% {
        margin-right: 0;
    }
}
@-webkit-keyframes show-chat-odd {
    0% {
        margin-right: -480px;
    }
    100% {
        margin-right: 0;
    }
}
#sendMessage img {
    height:26px;
}
#sendName img {
    height:16px;
}

[contenteditable=true]:empty:before, [contenteditable=plaintext-only]:empty:before{
    content: attr(placeholder);
    pointer-events: none;
    display: block; /* For Firefox */
}


button.action {
    background: #487dcf;
    border: 1px solid #0c0b89;
    color: #fff;
    text-transform: none;
    border-radius: 8px;
    cursor: pointer;
    font: 12px/16px "Noto Sans", sans-serif;
    width: 100%;
    margin: 3px 0px 3px 0px;
    padding: 10px;
}

img.typing {
    height: 10px;
    padding: 0px 130px;
}

#invite {
    display: none;
    position: fixed;
    width: 280px;
    margin: 0px 13px 84px 0px;
    inset: auto 0px 0px auto;
    z-index: 20000000;
    text-align: right;
}
#invite_icon {
    cursor: pointer;
    width: 30px;
    height: 20px;
    bottom: auto;
    right: 3px;
    top: 5px;
    position: absolute;
}
.invite_message {
    background: #fff;
    box-shadow: 0 5px 36px rgba(0,0,0,.18);
    margin: 0;
    padding: 5px;
    border-radius: 10px;
    min-height: 60px;
    text-align: left
}
#invite_text {
    cursor: pointer;
    padding: 20px 10px 10px 15px;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
    color: #000;
    font-size: 20px;
}
.fa-remove:hover:before, .fa-close:hover:before, .fa-times:hover:before {
    color: #ad0109;
    font-size: 20px;
}
i.fa.fa-comments {
    background: #d50307;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.fa-comments:before {
    font-size: 26px;
    color: #fff;
}
@media only screen and (max-width: 576px) {
    .floating-chat.expand {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        bottom: 0px;
        right: 0px;
    }
    .floating-chat.enter {
        margin: 0px;
    }
}
@media only screen and (min-width: 576px) and (max-height: 900px) {
    .floating-chat.expand {
        max-height: 90vh;
    }
}

/* mainpage chat.alternate.nl */

.chattyPage .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1080;
}
.chattyPage header {
    background-color: #ddd;
    height: 80px;
}
.chattyPage .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chattyPage .main_page {
    background: #fff;
    max-width: 1330px;
    margin: 2px auto;
}
.chattyPage .main_page picture.ItemAfbeelding img {
    width: 100%;
}
.chattyPage .welcome {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: #001424;
    font-family: Lato, Arial, Liberation Sans, sans-serif;
    padding: 40px 0 60px 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}

/*
  hack voor de menubar
}*/
@media (max-width: 575px) {
    header #subnav {
        font-size: .8rem;
    }

    header #all-categories {
        display: none;
    }

    li.nav-item {
        text-wrap: nowrap;
    }

    #subnav {
        border: 1px solid #c6c6c6;
        border-radius: 0;
        overflow: hidden;
        display: block !important;
    }
}

/* Laptop shortspecs */

.shortSpecsHero .row > div {
	padding: 8px 0;
	display: grid;
}

@media (min-width: 768px) and (max-width: 991px) {
	.shortSpecsHero .row > div:nth-child(2n+1) {
		padding-right: 8px;
	}
	.shortSpecsHero .row > div:nth-child(2n+2) {
		padding-left: 8px;
	}
}

@media (min-width: 992px) {
	.shortSpecsHero .row > div:nth-child(3n+1) {
		padding-right: 8px;
	}

	.shortSpecsHero .row > div:nth-child(3n+2) {
		padding-left: 8px;
		padding-right: 8px;
	}

	.shortSpecsHero .row > div:nth-child(3n+3) {
		padding-left: 8px;
	}
}

.shortSpecsHero .card {
	display: flex;
	flex-direction: row;
	align-self: stretch;
}

.shortSpecsHero .card .font-bigger {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.shortSpecsHero .displaySize {
	position: absolute;
	width: 40px;
	text-align: center;
	line-height: 2.2;
	font-weight: bold;
}

#chatty_plugin {
    background-color: red;
    color: yellow;
    padding-left: 10px;
    padding-right: 10px;
    font-weight:900;
}